From 0fa59e97c2e87bd7391be3089e46bd80a943e48d Mon Sep 17 00:00:00 2001 From: weidy <lastanimals@163.com> Date: 星期四, 06 七月 2023 20:04:09 +0800 Subject: [PATCH] 生命周期的换字段 --- Source/UBCS-WEB/src/views/system/user.vue | 89 +++++++++++++++++++++++--------------------- 1 files changed, 47 insertions(+), 42 deletions(-) diff --git a/Source/UBCS-WEB/src/views/system/user.vue b/Source/UBCS-WEB/src/views/system/user.vue index 671d40a..9794084 100644 --- a/Source/UBCS-WEB/src/views/system/user.vue +++ b/Source/UBCS-WEB/src/views/system/user.vue @@ -5,7 +5,7 @@ <el-scrollbar style="height: auto;border-bottom-right-radius:8px "> <basic-container> <div class="abox"> - <avue-tree :data="treeData" :option="treeOption" @node-click="nodeClick"/> + <avue-tree ref="tree" :data="treeData" :option="treeOption" @node-click="nodeClick"/> </div> </basic-container> </el-scrollbar> @@ -15,24 +15,25 @@ <basic-container> <div class="bbox"> <avue-crud ref="crud" - v-model="form" - :before-open="beforeOpen" - :data="data" - :option="option" - :page.sync="page" - :permission="permissionList" - :search.sync="search" - :table-loading="loading" - @row-del="rowDel" - @row-update="rowUpdate" - @row-save="rowSave" - @search-change="searchChange" - @search-reset="searchReset" - @selection-change="selectionChange" - @current-change="currentChange" - @size-change="sizeChange" - @refresh-change="refreshChange" - @on-load="onLoad"> + v-model="form" + :before-open="beforeOpen" + :data="data" + :option="option" + :page.sync="page" + :permission="permissionList" + :search.sync="search" + :table-loading="loading" + @row-del="rowDel" + @row-update="rowUpdate" + @row-save="rowSave" + @search-change="searchChange" + @search-reset="searchReset" + @row-click="clickRowChange" + @selection-change="selectionChange" + @current-change="currentChange" + @size-change="sizeChange" + @refresh-change="refreshChange" + @on-load="onLoad"> <template slot="menuLeft"> <el-button v-if="permission.user_delete" icon="el-icon-delete" @@ -103,18 +104,17 @@ </avue-crud> </div> <el-dialog :visible.sync="roleBox" - append-to-body - title="鐢ㄦ埛瑙掕壊閰嶇疆" - width="345px"> - + append-to-body + title="鐢ㄦ埛瑙掕壊閰嶇疆" + width="345px"> <el-tree ref="treeRole" - :data="roleGrantList" - :default-checked-keys="roleTreeObj" - :props="props" - check-strictly - default-expand-all - node-key="id" - show-checkbox> + :data="roleGrantList" + :default-checked-keys="roleTreeObj" + :props="props" + check-strictly + default-expand-all + node-key="id" + show-checkbox> </el-tree> <span slot="footer" class="dialog-footer"> @@ -152,7 +152,6 @@ :value="item.id" class="seloption" > - </el-option> </el-select> <span slot="footer" class="dialog-footer"> @@ -285,6 +284,7 @@ viewBtn: true, dialogType: 'drawer', dialogClickModal: false, + highlightCurrentRow: true, //琛岄�変腑鏃堕珮浜� column: [ { label: "鐧诲綍璐﹀彿", @@ -766,8 +766,8 @@ }else { this.passVisible=true; } - console.log("selectionList",this.selectionList) - console.log(this.UserPwdstrategyVO) + //console.log("selectionList",this.selectionList) + //console.log(this.UserPwdstrategyVO) }, // 璁剧疆瀵嗙爜绛栫暐锛屼紶閫掍笅鎷夋鐨刬d鍜屽閫夋鐨刬d passhandle(){ @@ -778,8 +778,7 @@ //瑕佷紶閫掔殑id锛屼竴涓槸鏁扮粍鍙︿竴涓槸瀛楃涓� this.UserPwdstrategyVO.userIds=this.selid; this.UserPwdstrategyVO.pwdstrategyId=this.id - console.log("1",this.UserPwdstrategyVO) - console.log("2",this.UserPwdstrategyVO.userIds) + //璇锋眰 insert(this.UserPwdstrategyVO.userIds).then(()=>{ this.passVisible=false @@ -802,10 +801,10 @@ selChange(row){ this.id=row }, - selecload(page, params = {}) { - getPage(this.page.currentPage, this.page.pageSize, Object.assign(params, this.query)).then(res => { - console.log(res) - this.seoptions=res.data.data.content + selecload() { + getPage(1, -1).then(res => { + // console.log(res) + this.seoptions=res.data.data.records }); }, nodeClick(data) { @@ -902,8 +901,15 @@ this.onLoad(this.page, params); done(); }, + clickRowChange(row){ + this.$refs.crud.toggleSelection(); + this.selectionList = row; + this.$refs.crud.setCurrentRow(row); + this.$refs.crud.toggleRowSelection(row); //閫変腑褰撳墠琛� + }, selectionChange(list) { this.selectionList = list; + this.$refs.crud.setCurrentRow(this.selectionList[list.length-1]); }, selectionClear() { this.selectionList = []; @@ -961,7 +967,7 @@ if (this.selectionList.length === 1) { this.roleTreeObj = this.selectionList[0].roleId.split(","); } - getRoleTree().then(res => { + getRoleTree(this.selectionList[0].tenantId).then(res => { this.roleGrantList = res.data.data; this.roleBox = true; @@ -1130,8 +1136,7 @@ overflow: scroll; } .selects{ - width: 400px; - margin-left: 92px; + width: 100%; } .seloption{ margin-left: 10px; -- Gitblit v1.9.3