diff --git a/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue b/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue index df1744eb1..014adfead 100644 --- a/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue +++ b/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue @@ -99,7 +99,6 @@ > - @@ -2230,6 +2229,11 @@ export default { }, res => { if (res && res.data) { const bringData = res.data + if (res.data.country) { + res.data.country = res.data.country.split(','); + } else { + res.data.country = [] + } bringData.txlb = '' bringData.signFlag = this.form.signFlag && this.form.signFlag != '' ? this.form.signFlag : '0' bringData.standInData = this.form.standInData && this.form.standInData != '' ? this.form.standInData : '0' @@ -2271,7 +2275,6 @@ export default { } } }) - } else if (this.standardCheckedList.length > 1) { this.$message.warning('最多可以带入一条标准信息') } else { @@ -3388,6 +3391,7 @@ export default { }) this.busVsFunc() this.modelFunc() + } }