[update] 企标更改流程增加在线编辑获取数据的方法

This commit is contained in:
lideqin
2024-01-23 14:02:41 +08:00
parent 698bb180f7
commit 7e8ad32014
@@ -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 // 标准英文名称
}
}
}
}