Commit 64c68248 authored by 潘永坪's avatar 潘永坪

组合下单开发

parent b60597a6
......@@ -117,7 +117,7 @@ export default {
//新增的时候
this.$parent.addChoose()
//显示联系人列表弹窗
this.$parent.showContacts()
this.$parent.$refs.contactList.showPop = true
//成功之后清空数据,防止下次新增的时候出现之前的数据
this.name = ''
this.credentialNumber = ''
......
......@@ -926,21 +926,24 @@ export default {
this.contactTotal.forEach(item => {
//用于判断是否被选中
item.ifChoose = false
})
if(this.chooseContact.length>0){
//编辑成功重新调该方法时,把之前选中的游客,设为选中状态
this.contactTotal.forEach(item => {
this.chooseContact.forEach(item2 => {
if (item.id == item2.id) {
item.ifChoose = true
item2.credentialNumber=item.credentialNumber
item2.name=item.name
item2.phone=item.phone
}
})
})
//删除联系人成功重新调该方法时,之前选中的联系人,数据库可能被删除,删除该联系人
this.chooseContact.forEach((item, index) => {
if (!this.contactTotal.find(item2 => item.id == item2.id)) {
this.chooseContact.splice(index, 1)
}
})
}
})
} else {
uni.showToast({
title: res.message,
......@@ -956,7 +959,7 @@ export default {
}
this.$request('wechatUser/contact/findContactList', data).then(res => {
if (res.code == '00') {
this.contactTotal = res.data
this.contactTotal = res.data||[]
for (let i = 0; i < this.contactNum; i++) {
let item = this.contactTotal[i] || null
if (item) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment