From 7e8ad32014d57c63dc610d65e82d2982c5c6cf36 Mon Sep 17 00:00:00 2001 From: lideqin <694785430@qq.com> Date: Tue, 23 Jan 2024 14:02:41 +0800 Subject: [PATCH] =?UTF-8?q?[update]=20=E4=BC=81=E6=A0=87=E6=9B=B4=E6=94=B9?= =?UTF-8?q?=E6=B5=81=E7=A8=8B=E5=A2=9E=E5=8A=A0=E5=9C=A8=E7=BA=BF=E7=BC=96?= =?UTF-8?q?=E8=BE=91=E8=8E=B7=E5=8F=96=E6=95=B0=E6=8D=AE=E7=9A=84=E6=96=B9?= =?UTF-8?q?=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../enterpriseStandardChange/modules/BaseInfoForm.vue | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/views/workCenter/enterpriseStandardChange/modules/BaseInfoForm.vue b/src/views/workCenter/enterpriseStandardChange/modules/BaseInfoForm.vue index b59c39d7..b2a45a52 100644 --- a/src/views/workCenter/enterpriseStandardChange/modules/BaseInfoForm.vue +++ b/src/views/workCenter/enterpriseStandardChange/modules/BaseInfoForm.vue @@ -706,6 +706,17 @@ export default { /** 赋值给当前对应的表单文件 */ this.formInline[this.uploadName] = attIdList.join(',') this.formInline = { ...this.formInline } + }, + // 在线编辑需要的参数 + getOnlineEditorParams () { + return { + standard_number: this.formInline.standardNumber, //标准编号, + substitute_standard_number: this.formInline.substituteStandardNumber, // 代替标准号 + implementation_date: this.formInline.implementationDate, // 实施日期 + release_date: this.formInline.releaseDate, // 发布日期 + standard_name: this.formInline.standardName, // 标准名称 + standard_english_name: this.formInline.standardEnglishName // 标准英文名称 + } } } }