From 926b13cbc24570347a0000a8cf2371b5141ed2bd Mon Sep 17 00:00:00 2001 From: super_liu <396572590@qq.com> Date: Thu, 9 Jun 2022 14:43:31 +0800 Subject: [PATCH 1/4] =?UTF-8?q?feat:=20There=20is=20no=20way=20the,=20qcdw?= =?UTF-8?q?=20=EF=BC=8C=EF=BC=8C=EF=BC=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/EnterpriseStandardDatabase.vue | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue b/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue index 6fc0858e5..ffec1ba39 100644 --- a/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue +++ b/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue @@ -3647,6 +3647,7 @@ export default { this.$set(this.sarBussionessStandEO, key, item.attrInfoMap[key]) } }) + this.filterData(this.sarBussionessStandEO["QCDW"]); this.sarBussionessStandEO['id'] = item.id if (state === 'show') { this.formdisableflag = true @@ -5167,13 +5168,7 @@ export default { }, watch: { 'sarBussionessStandEO.QCDW'(val) { - let arr = val.split(',') - arr.forEach((item, index) => { - if (item === undefined || item === 'undefined' || item === '') { - arr.splice(index, 1) - } - }) - return arr.toString() + this.filterData(val); }, filterText(val) { this.$refs.tree.filter(val); From b2cc99137a546bd804cd96f7b2dd698a4ceaf06c Mon Sep 17 00:00:00 2001 From: super_liu <396572590@qq.com> Date: Thu, 9 Jun 2022 15:51:10 +0800 Subject: [PATCH 2/4] =?UTF-8?q?feat:=20There=20is=20no=20way=20the,=20bug?= =?UTF-8?q?=20#52875=20=E5=85=B3=E8=81=94=E6=96=87=E4=BB=B6=E4=B8=8A?= =?UTF-8?q?=E4=BC=A0=E7=BC=BA=E5=B0=91=E5=B0=8F=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/processCenter/pages/creatProcess/bzrk/step4.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/pages/processCenter/pages/creatProcess/bzrk/step4.vue b/src/pages/processCenter/pages/creatProcess/bzrk/step4.vue index 0cca86c24..691f2ac70 100644 --- a/src/pages/processCenter/pages/creatProcess/bzrk/step4.vue +++ b/src/pages/processCenter/pages/creatProcess/bzrk/step4.vue @@ -2381,8 +2381,10 @@ export default { case 'ca': this.caFileList = fileList; break; + case 'glwj': + this.glwjFileList = fileList + break; default : - ; } // console.log("caNmae",this.form.caName); this.$message({ From 2e4ee36e7d52b847282d229d32dff6321ba5dcb6 Mon Sep 17 00:00:00 2001 From: super_liu <396572590@qq.com> Date: Thu, 9 Jun 2022 16:33:37 +0800 Subject: [PATCH 3/4] =?UTF-8?q?feat:=20There=20is=20no=20way=20the,=20bug?= =?UTF-8?q?=20#52872=20=E8=B5=B7=E8=8D=89=E8=8A=82=E7=82=B9=20=E4=BF=9D?= =?UTF-8?q?=E5=AD=98=E5=90=8E=20=E6=96=87=E4=BB=B6=E5=9B=9E=E6=98=BE?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pages/creatProcess/bzrk/step1.vue | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue b/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue index e9e454b42..2005f5b69 100644 --- a/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue +++ b/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue @@ -2119,6 +2119,17 @@ export default { this.getFormFieldList(mes.form) }) }, + assemble(ids,names){ + let list= new Array(); + if(ids && ids !== '' && names && names !== ''){ + let idArray=ids.split(','); + let nameArray=names.split(','); + for(let i=0; i Date: Thu, 9 Jun 2022 17:04:01 +0800 Subject: [PATCH 4/4] =?UTF-8?q?52912=20=E3=80=90=E6=A0=87=E5=87=86?= =?UTF-8?q?=E9=97=AE=E7=AD=94=E5=8A=9F=E8=83=BD=E3=80=91=E9=99=88=E6=98=A5?= =?UTF-8?q?=E6=A2=85=E5=8F=91=E8=B5=B7=E6=8F=90=E9=97=AE=EF=BC=8C=E9=82=80?= =?UTF-8?q?=E8=AF=B7=E9=9F=A9=E5=AE=97=E8=89=AF=E5=9B=9E=E7=AD=94=EF=BC=8C?= =?UTF-8?q?=E6=8F=90=E9=97=AE=E9=97=AE=E9=A2=98=E7=9A=84=E5=8F=98=E6=88=90?= =?UTF-8?q?=E9=9F=A9=E5=AE=97=E8=89=AF=E4=BA=86=EF=BC=8C=E5=BA=94=E8=AF=A5?= =?UTF-8?q?=E6=98=AF=E9=99=88=E6=98=A5=E6=A2=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pages/my-questions/components/questionItemInfo.vue | 1 + .../personal/pages/my-questions/components/questions-item.vue | 3 ++- .../regulatoryRepository/standQA/components/questions-item.vue | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/pages/personal/pages/my-questions/components/questionItemInfo.vue b/src/pages/personal/pages/my-questions/components/questionItemInfo.vue index 09c9b87c8..7ec276963 100644 --- a/src/pages/personal/pages/my-questions/components/questionItemInfo.vue +++ b/src/pages/personal/pages/my-questions/components/questionItemInfo.vue @@ -48,6 +48,7 @@ export default { const attId = this.answer.appendixId this.$preview(attId) }, + answerChang(){} }, watch:{ answer: { diff --git a/src/pages/personal/pages/my-questions/components/questions-item.vue b/src/pages/personal/pages/my-questions/components/questions-item.vue index 660898090..b7c409f56 100644 --- a/src/pages/personal/pages/my-questions/components/questions-item.vue +++ b/src/pages/personal/pages/my-questions/components/questions-item.vue @@ -11,7 +11,7 @@
-
{{userName}} +
{{question.questioner}} {{question.questionTime}}
@@ -36,6 +36,7 @@ export default { immediate: true, deep: true, handler(val){ + console.log(val); } } } diff --git a/src/pages/regulatoryRepository/standQA/components/questions-item.vue b/src/pages/regulatoryRepository/standQA/components/questions-item.vue index 33fe89e2d..82d5f6d9e 100644 --- a/src/pages/regulatoryRepository/standQA/components/questions-item.vue +++ b/src/pages/regulatoryRepository/standQA/components/questions-item.vue @@ -14,7 +14,7 @@
-
{{userName}} +
{{answer.answerer}} {{question.questionTime}}