From 4c777f073d1059e87a7750f561386a3cb68d1383 Mon Sep 17 00:00:00 2001 From: yunuo970428 <405378304@qq.com> Date: Fri, 14 Feb 2025 17:43:12 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84=E7=BB=B4=E4=BF=AE=E6=8A=80?= =?UTF-8?q?=E5=B8=88=E8=81=8C=E7=A7=B0=E5=A4=87=E6=A1=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../workFlow/jishizhichengFlow/technicalTitleFilingDaiBan.vue | 2 +- .../workFlow/jishizhichengFlow/technicalTitleFilingYiBan.vue | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/yxt-as-ui/src/views/workFlow/jishizhichengFlow/technicalTitleFilingDaiBan.vue b/yxt-as-ui/src/views/workFlow/jishizhichengFlow/technicalTitleFilingDaiBan.vue index a0838cc28c..9d7f4e6e58 100644 --- a/yxt-as-ui/src/views/workFlow/jishizhichengFlow/technicalTitleFilingDaiBan.vue +++ b/yxt-as-ui/src/views/workFlow/jishizhichengFlow/technicalTitleFilingDaiBan.vue @@ -199,7 +199,7 @@ export default { this.formobj = res.data this.formobj.asTechTitleDetailDetailsList.forEach((e) => { if (e.techNames.length > 0) { - e.techNames = e.techNames.split(',') + e.techNames = e.techNames.join(',') } }) if (this.formobj.asTechTitleApplyFileList.length > 0) { diff --git a/yxt-as-ui/src/views/workFlow/jishizhichengFlow/technicalTitleFilingYiBan.vue b/yxt-as-ui/src/views/workFlow/jishizhichengFlow/technicalTitleFilingYiBan.vue index 22c026f450..f4a9c54665 100644 --- a/yxt-as-ui/src/views/workFlow/jishizhichengFlow/technicalTitleFilingYiBan.vue +++ b/yxt-as-ui/src/views/workFlow/jishizhichengFlow/technicalTitleFilingYiBan.vue @@ -128,7 +128,7 @@ export default { this.formobj = res.data this.formobj.asTechTitleDetailDetailsList.forEach((e) => { if (e.techNames.length > 0) { - e.techNames = e.techNames.split(',') + e.techNames = e.techNames.join(',') } }) if (this.formobj.asTechTitleApplyFileList.length > 0) { @@ -137,6 +137,7 @@ export default { aa.push(e.url) }) this.formobj.asTechTitleApplyFileList = aa + console.log(99, this.formobj.asTechTitleApplyFileList) } } })