mirror of
https://gitee.com/ssssssss-team/magic-boot.git
synced 2025-04-06 13:13:06 +08:00
用户管理 左侧加机构树
This commit is contained in:
parent
975b27616a
commit
e275ae841c
@ -5,7 +5,7 @@
|
|||||||
"groupId" : "4f0230049d7e4f39b1e0897cc0f46f9a",
|
"groupId" : "4f0230049d7e4f39b1e0897cc0f46f9a",
|
||||||
"name" : "保存",
|
"name" : "保存",
|
||||||
"createTime" : null,
|
"createTime" : null,
|
||||||
"updateTime" : 1641261914841,
|
"updateTime" : 1642085497821,
|
||||||
"lock" : "0",
|
"lock" : "0",
|
||||||
"method" : "POST",
|
"method" : "POST",
|
||||||
"path" : "/save",
|
"path" : "/save",
|
||||||
@ -31,7 +31,8 @@ var user = {
|
|||||||
username,
|
username,
|
||||||
password: password,
|
password: password,
|
||||||
phone,
|
phone,
|
||||||
isLogin
|
isLogin,
|
||||||
|
officeId
|
||||||
}
|
}
|
||||||
if(id){
|
if(id){
|
||||||
SqlCache.delete(`permissions:${id}`)
|
SqlCache.delete(`permissions:${id}`)
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
"groupId" : "4f0230049d7e4f39b1e0897cc0f46f9a",
|
"groupId" : "4f0230049d7e4f39b1e0897cc0f46f9a",
|
||||||
"name" : "列表",
|
"name" : "列表",
|
||||||
"createTime" : null,
|
"createTime" : null,
|
||||||
"updateTime" : 1634738477796,
|
"updateTime" : 1642086792944,
|
||||||
"lock" : "0",
|
"lock" : "0",
|
||||||
"method" : "GET",
|
"method" : "GET",
|
||||||
"path" : "/list",
|
"path" : "/list",
|
||||||
@ -28,9 +28,11 @@ return db.page("""
|
|||||||
su.name,
|
su.name,
|
||||||
su.is_login,
|
su.is_login,
|
||||||
su.phone,
|
su.phone,
|
||||||
su.create_date
|
su.create_date,
|
||||||
|
su.office_id
|
||||||
from sys_user su
|
from sys_user su
|
||||||
where su.is_del = 0
|
where su.is_del = 0
|
||||||
|
?{officeId, and su.office_id = #{officeId}}
|
||||||
?{username, and su.username like concat('%',#{username},'%')}
|
?{username, and su.username like concat('%',#{username},'%')}
|
||||||
?{name, and su.name like concat('%',#{name},'%')}
|
?{name, and su.name like concat('%',#{name},'%')}
|
||||||
?{isLogin, and su.is_login = #{isLogin}}
|
?{isLogin, and su.is_login = #{isLogin}}
|
||||||
|
@ -50,6 +50,17 @@ treeTable.genTree = (children) => {
|
|||||||
return treeData
|
return treeData
|
||||||
}
|
}
|
||||||
|
|
||||||
|
treeTable.deleteEmptyChildren = (children) => {
|
||||||
|
for(var i in children){
|
||||||
|
var chi = children[i]
|
||||||
|
if(chi.children && chi.children.length == 0){
|
||||||
|
delete chi.children
|
||||||
|
}else{
|
||||||
|
treeTable.deleteEmptyChildren(chi.children)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
treeTable.recursionSearch = (fields, data, text) => {
|
treeTable.recursionSearch = (fields, data, text) => {
|
||||||
var searchData = []
|
var searchData = []
|
||||||
for(var i in data){
|
for(var i in data){
|
||||||
|
@ -12,6 +12,9 @@
|
|||||||
<el-form-item label="手机号" prop="phone">
|
<el-form-item label="手机号" prop="phone">
|
||||||
<el-input v-model="temp.phone" />
|
<el-input v-model="temp.phone" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<el-form-item label="选择机构" prop="officeId">
|
||||||
|
<treeselect v-model="temp.officeId" :options="officeTree" :disable-branch-nodes="true" :show-count="true" placeholder="请选择组织机构" />
|
||||||
|
</el-form-item>
|
||||||
<el-form-item label="禁止登录" prop="isLogin">
|
<el-form-item label="禁止登录" prop="isLogin">
|
||||||
<template>
|
<template>
|
||||||
<el-switch
|
<el-switch
|
||||||
@ -30,9 +33,12 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import Treeselect from '@riophae/vue-treeselect'
|
||||||
|
import '@riophae/vue-treeselect/dist/vue-treeselect.css'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'UserForm',
|
name: 'UserForm',
|
||||||
|
components: { Treeselect },
|
||||||
props: {
|
props: {
|
||||||
dialogStatus: {
|
dialogStatus: {
|
||||||
type: String,
|
type: String,
|
||||||
@ -46,10 +52,15 @@ export default {
|
|||||||
},
|
},
|
||||||
roles: [],
|
roles: [],
|
||||||
selectRoles: [],
|
selectRoles: [],
|
||||||
temp: this.getTemp()
|
temp: this.getTemp(),
|
||||||
|
officeTree: []
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
|
this.$get('user/offices').then(res => {
|
||||||
|
this.officeTree = res.data.list
|
||||||
|
this.$treeTable.deleteEmptyChildren(this.officeTree)
|
||||||
|
})
|
||||||
this.$get('role/list?size=999999').then(response => {
|
this.$get('role/list?size=999999').then(response => {
|
||||||
const { data } = response
|
const { data } = response
|
||||||
this.roles = data.list
|
this.roles = data.list
|
||||||
@ -64,7 +75,8 @@ export default {
|
|||||||
password: '',
|
password: '',
|
||||||
phone: '',
|
phone: '',
|
||||||
isLogin: 0,
|
isLogin: 0,
|
||||||
roles: []
|
roles: [],
|
||||||
|
officeId: null
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
resetTemp() {
|
resetTemp() {
|
||||||
|
@ -1,7 +1,28 @@
|
|||||||
|
<style scoped>
|
||||||
|
.left{
|
||||||
|
width: 20%;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
.right{
|
||||||
|
width: 80%;
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
|
<div class="left">
|
||||||
|
<pd-tree url="office/tree" :el="{ 'expand-on-click-node': false }" :checked="false" @node-click="nodeClick(arguments)" />
|
||||||
|
</div>
|
||||||
|
<div class="right">
|
||||||
<div class="filter-container">
|
<div class="filter-container">
|
||||||
<el-form :inline="true">
|
<el-form :inline="true">
|
||||||
|
<el-form-item label="组织机构">
|
||||||
|
<el-input v-model="officeName" placeholder="组织机构" style="width: 200px;" class="filter-item" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-button class="filter-item" icon="el-icon-delete" @click="resetOffice">
|
||||||
|
清除
|
||||||
|
</el-button>
|
||||||
<el-form-item label="登录名称">
|
<el-form-item label="登录名称">
|
||||||
<el-input v-model="tableOptions.where.username" placeholder="登录名称" style="width: 200px;" class="filter-item" />
|
<el-input v-model="tableOptions.where.username" placeholder="登录名称" style="width: 200px;" class="filter-item" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
@ -11,7 +32,7 @@
|
|||||||
<el-button class="filter-item" type="primary" icon="el-icon-search" @click="reloadTable">
|
<el-button class="filter-item" type="primary" icon="el-icon-search" @click="reloadTable">
|
||||||
搜索
|
搜索
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button :loading="downloadLoading" class="filter-item" icon="el-icon-delete" @click="tableOptions.where = {}">
|
<el-button :loading="downloadLoading" class="filter-item" icon="el-icon-delete" @click="reset">
|
||||||
清空
|
清空
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button :loading="downloadLoading" class="filter-item" icon="el-icon-download" @click="handleDownload">
|
<el-button :loading="downloadLoading" class="filter-item" icon="el-icon-download" @click="handleDownload">
|
||||||
@ -34,16 +55,18 @@
|
|||||||
<user-form ref="userForm" :dialog-status="dialogStatus" @reload-table="reloadTable" />
|
<user-form ref="userForm" :dialog-status="dialogStatus" @reload-table="reloadTable" />
|
||||||
</template>
|
</template>
|
||||||
</pd-dialog>
|
</pd-dialog>
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import UserForm from './user-form.vue'
|
import UserForm from './user-form.vue'
|
||||||
|
import PdTree from "@/components/Psyduck/pd-tree";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'UserList',
|
name: 'UserList',
|
||||||
components: { UserForm },
|
components: {PdTree, UserForm },
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
tableOptions: {
|
tableOptions: {
|
||||||
@ -119,10 +142,27 @@ export default {
|
|||||||
},
|
},
|
||||||
dialogStatus: '',
|
dialogStatus: '',
|
||||||
downloadLoading: false,
|
downloadLoading: false,
|
||||||
ids: []
|
ids: [],
|
||||||
|
officeName: ''
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
reset() {
|
||||||
|
this.tableOptions.where = {}
|
||||||
|
this.officeName = ''
|
||||||
|
this.$nextTick(() => this.reloadTable())
|
||||||
|
},
|
||||||
|
resetOffice() {
|
||||||
|
this.officeName = ''
|
||||||
|
this.tableOptions.where.officeId = ''
|
||||||
|
this.reloadTable()
|
||||||
|
},
|
||||||
|
nodeClick(nodes) {
|
||||||
|
var node = nodes[0]
|
||||||
|
this.officeName = node.name
|
||||||
|
this.tableOptions.where.officeId = node.id
|
||||||
|
this.reloadTable()
|
||||||
|
},
|
||||||
selectionChange(columns) {
|
selectionChange(columns) {
|
||||||
this.ids = columns.map(it => it['id']).join(',')
|
this.ids = columns.map(it => it['id']).join(',')
|
||||||
},
|
},
|
||||||
@ -139,7 +179,7 @@ export default {
|
|||||||
this.dialogStatus = 'update'
|
this.dialogStatus = 'update'
|
||||||
this.$refs.userFormDialog.show()
|
this.$refs.userFormDialog.show()
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs['userForm'].getInfo(row)
|
this.$refs.userForm.getInfo(row)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
handleDownload() {
|
handleDownload() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user