[update] 收入合同普通项目工作组项目新增带出合同号

This commit is contained in:
zhaoxiao
2021-09-09 09:28:41 +08:00
parent fb8f109405
commit edaa60ca9c
6 changed files with 87 additions and 6 deletions
+13
View File
@@ -54,6 +54,12 @@ export default {
type: String,
required: false,
default: undefined
},
// 取消时将isCancel设为true,用于重置是否为第一次展开下拉
isCancel: {
type: Boolean,
required: false,
default: false
}
},
data() {
@@ -85,6 +91,13 @@ export default {
this.isFirstOpen = true
},
deep: true
},
isCancel(val) {
if (val) {
this.isFirstOpen = true
// 取消时重新获取联系人列表,将临时联系人信息加入列表中
this.getContactsList()
}
}
},
methods: {