diff --git a/src/views/mine/personList.vue b/src/views/mine/personList.vue
index 48dd0280..2b61eb39 100644
--- a/src/views/mine/personList.vue
+++ b/src/views/mine/personList.vue
@@ -70,7 +70,7 @@
立即修改
确认信息无误
-
@@ -212,6 +212,11 @@ export default {
this.type=2
},
async confirmHandle(){//确认信息无误
+ let flag=this.personList.every(item => item.name && item.phone1 && item.wechatId && item.wechatName)
+ if(!flag){
+ this.$toast('数据缺失,请去修改将信息补充完整')
+ return
+ }
Dialog.confirm({
message:'请务必仔细确认信息是否无误。',
confirmButtonText:'确认无误',