From 17efddc6a667670dca682bf36b51a43e99615e6d Mon Sep 17 00:00:00 2001
From: k94314517 <8417338+k94314517@user.noreply.gitee.com>
Date: 星期三, 16 十月 2024 15:59:38 +0800
Subject: [PATCH] 代码初始化

---
 admin/src/components/business/OperaPlatformApproveTemplWindow.vue |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/admin/src/components/business/OperaPlatformApproveTemplWindow.vue b/admin/src/components/business/OperaPlatformApproveTemplWindow.vue
index 5f559b7..b9c8038 100644
--- a/admin/src/components/business/OperaPlatformApproveTemplWindow.vue
+++ b/admin/src/components/business/OperaPlatformApproveTemplWindow.vue
@@ -82,10 +82,10 @@
               <!-- 鎶勯�佷汉 -->
               <template v-if="apprList[activeIndex].type == '1'">
                 <div class="config_data_item_reviewed_content">
-                  <div v-for="mem in apprList[activeIndex].objIds" :key="mem.id"
+                  <div v-for="(mem,memIndex) in apprList[activeIndex].objIds" :key="mem.id"
                     class="config_data_item_reviewed_content_item">
                     <span>{{ mem.name }}</span>
-                    <i class="el-icon-close"></i>
+                    <i @click="memDel(memIndex)" class="el-icon-close"></i>
                   </div>
                   <span class="add" @click="selStaff">+娣诲姞</span>
                 </div>
@@ -207,7 +207,7 @@
       activeType: '6',
       subLoading: false,
       apprList: [
-        { remark: '瀹℃壒浜�', active: false, memberType: 1, type: '1', objIds: [] },
+        { remark: '瀹℃壒浜�', active: false,approveType: 0, memberType: 1, type: '1', objIds: [] },
         { remark: '鎶勯�佷汉', active: false, type: '1', objIds: [] }
       ],
       activeIndex: 0,
@@ -230,7 +230,7 @@
       this.getfindCompanyTreePage()
       this.apprList = [
         { remark: '瀹℃壒浜�', active: false, type: '0', memberType: 1, objIds: [] },
-        { remark: '鎶勯�佷汉', active: false, type: '1', objIds: [] }
+        { remark: '鎶勯�佷汉', active: false,approveType: 0, type: '1', objIds: [] }
       ]
       this.param = {}
       this.searchForm = {}
@@ -313,7 +313,7 @@
       this.activeIndex = 0
     },
     handleAddAppr() {
-      this.apprList.splice(this.apprList.length - 1, 0, { remark: '瀹℃壒浜�', active: false, memberType: 1, type: 0, objIds: [] })
+      this.apprList.splice(this.apprList.length - 1, 0, { remark: '瀹℃壒浜�',approveType: 0, active: false, memberType: 1, type: 0, objIds: [] })
       // this.apprList.push({ remark: '瀹℃壒浜�', active: false, type: '0' })
     },
     // 鑾峰彇缁勭粐鏍�

--
Gitblit v1.9.3