diff --git a/src/pages/processCenter/pages/creatProcess/bzqdfb/step1.vue b/src/pages/processCenter/pages/creatProcess/bzqdfb/step1.vue index f29da4ab8..61f2e77f2 100644 --- a/src/pages/processCenter/pages/creatProcess/bzqdfb/step1.vue +++ b/src/pages/processCenter/pages/creatProcess/bzqdfb/step1.vue @@ -1057,7 +1057,7 @@ export default { this.listForm.commentText = this.commentText this.listForm.fileName = this.fileInfoList this.listForm.dataList = this.dataList - var json = Object.assign(this.listForm, this.roleForm); + let json = Object.assign(this.listForm, this.roleForm); this.$refs["qdfbForm"].validate((valid) => { if (valid) { this.$refs["Form"].validate((valid) => { @@ -1237,7 +1237,7 @@ export default { this.standList.map(item => { let newStand = false; for (let itemKey of this.dataList) { - if (item.id == itemKey.id) { + if (item.id === itemKey.id) { newStand = true; break; } @@ -1246,6 +1246,14 @@ export default { this.$message.warning("请勿重复添加数据"); } else { this.dataList.push(item); + this.dataList.forEach(item => { + if(item.XCXSSRQ === null){ + item.XCXSSRQ = '' + } + if(item.ZCCSSRQ === null){ + item.ZCCSSRQ = '' + } + }) exits.push(item.id); } }); diff --git a/src/pages/processCenter/pages/creatProcess/bzqdfb/step3.vue b/src/pages/processCenter/pages/creatProcess/bzqdfb/step3.vue index 6e7bdb10f..9fd6c6eb4 100644 --- a/src/pages/processCenter/pages/creatProcess/bzqdfb/step3.vue +++ b/src/pages/processCenter/pages/creatProcess/bzqdfb/step3.vue @@ -616,6 +616,14 @@ export default { _this.$message.warning("请勿重复添加数据"); } else { _this.dataList.push(item); + _this.dataList.forEach(item => { + if(item.XCXSSRQ === null){ + item.XCXSSRQ = '' + } + if(item.ZCCSSRQ === null){ + item.ZCCSSRQ = '' + } + }) } }); this.standardData = [] diff --git a/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/addEdit.vue b/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/addEdit.vue index 68685d1fc..195afb22c 100644 --- a/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/addEdit.vue +++ b/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/addEdit.vue @@ -445,6 +445,7 @@ -