From b46cf401da847d7cca6269c6b2ffb04f6f72691a Mon Sep 17 00:00:00 2001 From: ludc Date: 星期日, 14 五月 2023 03:57:37 +0800 Subject: [PATCH] 新增应用码段下的参照配置界面,以及代码整合 --- Source/UBCS-WEB/src/views/system/dept.vue | 49 +++++++++++++++++++++++++++++-------------------- 1 files changed, 29 insertions(+), 20 deletions(-) diff --git a/Source/UBCS-WEB/src/views/system/dept.vue b/Source/UBCS-WEB/src/views/system/dept.vue index c62272e..02063bd 100644 --- a/Source/UBCS-WEB/src/views/system/dept.vue +++ b/Source/UBCS-WEB/src/views/system/dept.vue @@ -1,24 +1,25 @@ <template> <basic-container> <avue-crud :option="option" - :table-loading="loading" - :data="data" - ref="crud" - v-model="form" - :permission="permissionList" - :before-open="beforeOpen" - :before-close="beforeClose" - @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" - @tree-load="treeLoad"> + :table-loading="loading" + :data="data" + ref="crud" + v-model="form" + :permission="permissionList" + :before-open="beforeOpen" + :before-close="beforeClose" + @row-del="rowDel" + @row-update="rowUpdate" + @row-save="rowSave" + @search-change="searchChange" + @search-reset="searchReset" + @selection-change="selectionChange" + @row-click="clickRowChange" + @current-change="currentChange" + @size-change="sizeChange" + @refresh-change="refreshChange" + @on-load="onLoad" + @tree-load="treeLoad"> <template slot="menuLeft"> <el-button type="danger" size="small" @@ -84,6 +85,7 @@ viewBtn: true, menuWidth: 300, dialogClickModal: false, + highlightCurrentRow: true, //琛岄�変腑鏃堕珮浜� column: [ { label: "鏈烘瀯鍚嶇О", @@ -99,7 +101,7 @@ label: "鎵�灞炵鎴�", prop: "tenantId", type: "tree", - dicUrl: "/api/blade-system/tenant/select", + dicUrl: "/api/ubcs-system/tenant/select", addDisplay: false, editDisplay: false, viewDisplay: website.tenantMode, @@ -145,7 +147,7 @@ { label: "鏈烘瀯绫诲瀷", type: "select", - dicUrl: "/api/blade-system/dict/dictionary?code=org_category", + dicUrl: "/api/ubcs-system/dict/dictionary?code=org_category", props: { label: "dictValue", value: "dictKey" @@ -307,8 +309,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 = []; -- Gitblit v1.9.3