From de967d5d54a6eee38221ea14b2472401974608db Mon Sep 17 00:00:00 2001
From: 田源 <lastanimals@163.com>
Date: 星期三, 10 七月 2024 18:25:04 +0800
Subject: [PATCH] 晚上上传组件导入提示、调整默认对话框边距、密码策略查询以及新增修改 密码长度、必填种类、锁定时间等正则校验 完善启动流程默认传参

---
 Source/plt-web/plt-web-ui/src/components/actions/base/startWorkFlow.vue |   12 +++++++-----
 1 files changed, 7 insertions(+), 5 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..11a7e3b 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
@@ -162,16 +162,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 +181,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 +193,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