From d88379444c5790417b1b7495e0e3ad5e041b799e Mon Sep 17 00:00:00 2001
From: yuxc <653031404@qq.com>
Date: 星期二, 04 七月 2023 18:06:21 +0800
Subject: [PATCH] 1、对redis取值方式进行修改。 2、对模板属性批量保存的DTO进行了大写的改动。

---
 Source/UBCS-WEB/src/views/work/process/leave/handle.vue |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/Source/UBCS-WEB/src/views/work/process/leave/handle.vue b/Source/UBCS-WEB/src/views/work/process/leave/handle.vue
index 665405d..50f4ae3 100644
--- a/Source/UBCS-WEB/src/views/work/process/leave/handle.vue
+++ b/Source/UBCS-WEB/src/views/work/process/leave/handle.vue
@@ -5,7 +5,7 @@
         <el-card class="dialogwarp_tab_card">
           <el-tabs v-model="activeName" @tab-click="handleClick">
             <el-tab-pane label="涓氬姟鏁版嵁淇℃伅" name="first">
-
+              <businesswork ref="businesswork":ids="ids" :templateId="templateId"></businesswork>
             </el-tab-pane>
             <el-tab-pane label="娴佺▼璺熻釜" name="second">
               <avue-crud :data="flowList" :option="option" ref="crud">
@@ -75,6 +75,8 @@
 export default {
   data() {
     return {
+      ids:[],
+      templateId:'',
       taskId: '',
       businessId: '',
       processInstanceId: '',
@@ -138,6 +140,8 @@
     async apiGetBtnTask(id) {
       const response = await getBtnTask({ processInstanceId: id })
       const res = response.data
+      this.ids=res.data.variables.ids;
+      this.templateId=res.data.variables.templateId;
       if (res.success) {
         console.log(res)
         this.btnList = res.data.toTasks

--
Gitblit v1.9.3