From 34c25ddf37a3eb8da9efb04efedad089f13efe83 Mon Sep 17 00:00:00 2001 From: ludc Date: 星期三, 24 七月 2024 18:20:27 +0800 Subject: [PATCH] 部门导入调整,按照部门名称/实现层级关系。枚举导入功能接口上传,属性池添加新增、查询、修改、导出、查看应用范围等接口。业务类型、链接类型、枚举类型增加等接口属性是否产生数据检查、根据属性名修改业务类型和连接类型中对应属性方法,以及属性池中需要的一些下拉查询接口。 --- Source/plt-web/plt-web-ui/src/components/actions/base/startWorkFlow.vue | 13 +++++++------ 1 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Source/plt-web/plt-web-ui/src/components/actions/base/startWorkFlow.vue b/Source/plt-web/plt-web-ui/src/components/actions/base/startWorkFlow.vue index b374b46..f6fe790 100644 --- a/Source/plt-web/plt-web-ui/src/components/actions/base/startWorkFlow.vue +++ b/Source/plt-web/plt-web-ui/src/components/actions/base/startWorkFlow.vue @@ -1,7 +1,6 @@ <template> <el-dialog v-dialogDrag :close-on-click-modal="false" - :destroy-on-close="true" :visible.sync="visible" :width="width" append-to-body="true" @@ -162,16 +161,18 @@ }, created() { // this.modelNameChange(); - this.getWorkByType(); + }, mounted() { + this.getWorkByType(); }, methods: { // 鑾峰彇娴佺▼妯℃澘淇℃伅 getWorkByType() { + console.log('this.paramVOS',this.paramVOS) let params = { - type: '鏂囨。瀹$娴佺▼', - filterTemplate: "鏂囨。瀹$娴佺▼" + type: this.paramVOS.templatetype, + filterTemplate: this.paramVOS.filterTemplate || "" } getTemplateByType(params).then(res => { const data = res.data.data; @@ -179,7 +180,7 @@ this.processTemplateList = data; this.saveParam.processTemplate = data[0].value; - this.saveParam.processName = this.paramVOS.processName || userInfo.content.userName + '-' + data[0].value; // 瀵规祦绋嬫ā鏉� 娴佺▼鍚嶇О璧嬮粯璁ゅ�� + this.saveParam.processName = this.paramVOS.processname || userInfo.content.userName + '-' + data[0].value; // 瀵规祦绋嬫ā鏉� 娴佺▼鍚嶇О璧嬮粯璁ゅ�� this.getProcessNode(data[0].attributes.oid); // 棣栨杩涘叆璋冪敤绗竴涓ā鏉跨殑鎵�鏈夎妭鐐� }).catch(err => { @@ -191,7 +192,7 @@ getProcessNode(oid) { let params = { processOid: oid, - maxSecret: -1 + maxSecret: this.paramVOS.maxSecret || -1 } getAllProcessNode(params).then(res => { const nodes = res.data.data; -- Gitblit v1.9.3