From c5a0ff2661fe362dddbe88c6a28d19c48c24c39b Mon Sep 17 00:00:00 2001 From: jiangping <jp@doumee.com> Date: 星期一, 21 十月 2024 20:39:32 +0800 Subject: [PATCH] 最新版本541200007 --- admin/src/components/business/OperaPlatformApproveTemplWindow.vue | 24 +++++++++++++----------- 1 files changed, 13 insertions(+), 11 deletions(-) diff --git a/admin/src/components/business/OperaPlatformApproveTemplWindow.vue b/admin/src/components/business/OperaPlatformApproveTemplWindow.vue index 3b093f9..47520d4 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> @@ -150,7 +150,7 @@ </div> </template> <!-- --> - <el-dialog title="閫夋嫨鍛樺伐" :visible.sync="isShowTransfer" width="900px" style="z-index: 99999" append-to-body> + <el-dialog title="閫夋嫨鍛樺伐" :visible.sync="isShowTransfer" width="1000px" style="z-index: 99999" append-to-body> <div class="staff_modal"> <div class="left"> <div style=" @@ -163,7 +163,7 @@ "> 浼佷笟缁勭粐鏋舵瀯 </div> - <div style="width: 100%; height: 100%; overflow-y: scroll"> + <div style="width: 100%; max-height: 560px; overflow-y: scroll"> <Tree :list="companyTree" :defaultProps="{ name: 'name', status: 'fsStatus', @@ -172,7 +172,7 @@ }" @callback="callback" /> </div> </div> - <el-transfer filterable :titles="['鏈��', '宸查��']" openAll :props="{ label: 'name', key: 'keyTemp' }" + <el-transfer filterable :titles="['鏈��', '宸查��']" openAll :props="{ label: 'name', key: 'keyTemp' }" filter-placeholder="鎼滅储鍛樺伐" v-model="searchForm.objIds" :data="memberList" class="transfer"> </el-transfer> </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' }) }, // 鑾峰彇缁勭粐鏍� @@ -338,11 +338,11 @@ erpOrgId: '', hasFace: '', hkStatus: '', - includeChild: false, + includeChild: true, type: 2 }, page: 1, - capacity: 30 + capacity: 300 }).then(res => { this.memberList = res.records || [] this.memberList.forEach(item => { @@ -658,10 +658,12 @@ display: flex; justify-content: center; align-items: center; - ::v-deep .el-transfer-panel{ + + ::v-deep .el-transfer-panel { flex: 1; height: 100%; } + ::v-deep .el-transfer-panel__body { height: 500px; } -- Gitblit v1.9.3