From 76fc8024bc84f9bac788809624ef77263f822d9f Mon Sep 17 00:00:00 2001 From: lideqin <694785430@qq.com> Date: Fri, 30 Aug 2024 14:31:04 +0800 Subject: [PATCH] =?UTF-8?q?[update]=20=E5=B8=82=E5=9C=BA=E6=B8=85=E5=8D=95?= =?UTF-8?q?=E5=8F=91=E5=B8=83=E6=B5=81=E7=A8=8B=E5=A2=9E=E5=8A=A0=E6=B8=85?= =?UTF-8?q?=E5=8D=95=E8=AF=B4=E6=98=8E=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../MarketListReleaseProcess.vue | 22 +++++++++++++++-- .../modules/BaseInfoForm.vue | 24 +++++++++++++++++++ 2 files changed, 44 insertions(+), 2 deletions(-) diff --git a/src/views/workCenter/marketListReleaseProcess/MarketListReleaseProcess.vue b/src/views/workCenter/marketListReleaseProcess/MarketListReleaseProcess.vue index 258bc64..96fbb9c 100644 --- a/src/views/workCenter/marketListReleaseProcess/MarketListReleaseProcess.vue +++ b/src/views/workCenter/marketListReleaseProcess/MarketListReleaseProcess.vue @@ -99,6 +99,20 @@ placeholder="" /> + + + + + + @@ -378,11 +392,13 @@ export default { processInfo.manifestNo = this.model.businessInfoDTO.manifestNo // 清单名称 processInfo.manifestName = this.model.businessInfoDTO.manifestName + // 清单说明 + processInfo.manifestDesc = this.model.businessInfoDTO.manifestDesc // 国家/地区 processInfo.country = this.model.businessInfoDTO.country.split(',').map(item => { return { value: item } }) - this.processInfoForm.setFieldsValue(pick(processInfo, 'processName', 'processDueDate', 'processDescription', 'manifestNo', 'manifestName', 'country')) + this.processInfoForm.setFieldsValue(pick(processInfo, 'processName', 'processDueDate', 'processDescription', 'manifestNo', 'manifestName', 'country', 'manifestDesc')) } } // 有草稿json按草稿进来的回显 @@ -397,11 +413,13 @@ export default { processInfo.manifestNo = this.draftModel.businessInfoDTO.manifestNo // 清单名称 processInfo.manifestName = this.draftModel.businessInfoDTO.manifestName + // 清单说明 + processInfo.manifestDesc = this.draftModel.businessInfoDTO.manifestDesc // 国家/地区 processInfo.country = this.draftModel.businessInfoDTO.country.split(',').map(item => { return { value: item } }) - this.processInfoForm.setFieldsValue(pick(processInfo, 'processName', 'processDueDate', 'processDescription', 'manifestNo', 'manifestName', 'country')) + this.processInfoForm.setFieldsValue(pick(processInfo, 'processName', 'processDueDate', 'processDescription', 'manifestNo', 'manifestName', 'country', 'manifestDesc')) } // 初始化流程审批信息 this.approvalInfoForm.setFieldsValue(pick(this.draftModel.basicTaskInfoDTO, 'handleText', 'handleFile')) diff --git a/src/views/workCenter/marketListReleaseProcess/modules/BaseInfoForm.vue b/src/views/workCenter/marketListReleaseProcess/modules/BaseInfoForm.vue index a6c1c5d..94ddbb7 100644 --- a/src/views/workCenter/marketListReleaseProcess/modules/BaseInfoForm.vue +++ b/src/views/workCenter/marketListReleaseProcess/modules/BaseInfoForm.vue @@ -55,6 +55,22 @@ :placeholder="disabled ? '' : $t('autoTakeout')" /> + +
+
+ + {{ $t('standardRegulationLibrary.marketRegulationsList.listDeclaration') }} + +
+ + + +
@@ -329,6 +345,8 @@ export default { formInline.manifestNo = result.manifestNo // 清单名称 formInline.manifestName = result.manifestName + // 清单说明 + formInline.manifestDesc = result.manifestDesc // 版本号 formInline.manifestVersion = result.manifestVersion // 国家/地区 @@ -438,6 +456,8 @@ export default { formInline.manifestNo = result.manifestNo // 清单名称 formInline.manifestName = result.manifestName + // 清单说明 + formInline.manifestDesc = result.manifestDesc // 版本号 formInline.manifestVersion = result.manifestVersion // 国家/地区 @@ -492,6 +512,10 @@ export default { width: 100%; } +.form-flex-item-all { + width: 100%; +} + .form-user { margin-top: 20px; }