186 lines
5.5 KiB
Vue
186 lines
5.5 KiB
Vue
<template>
|
|
<div>
|
|
<el-dialog title="选择用户" v-model="visible" width="60%" top="5vh" append-to-body :close-on-click-modal="false">
|
|
<div class="system-user-container">
|
|
<el-row :gutter="10" style="width: 100%;">
|
|
<el-col :span="6">
|
|
<el-card shadow="hover">
|
|
<el-aside>
|
|
<el-scrollbar>
|
|
<el-input :prefix-icon="search" v-model="filterText" placeholder="请输入部门名称" clearable style="width: 80%;"/>
|
|
<el-tree
|
|
ref="treeRef"
|
|
class="filter-tree"
|
|
:data="deptData"
|
|
:props="deptProps"
|
|
default-expand-all
|
|
:filter-node-method="deptFilterNode"
|
|
@node-click="handleNodeClick"
|
|
/>
|
|
</el-scrollbar>
|
|
</el-aside>
|
|
</el-card>
|
|
</el-col>
|
|
<el-col :span="18">
|
|
<el-card shadow="hover">
|
|
<div class="system-user-search mb15">
|
|
<el-form :model="param" ref="queryRef" :inline="true" label-width="68px">
|
|
<el-form-item label="关键字" prop="keyWords">
|
|
<el-input
|
|
v-model="param.keyWords"
|
|
placeholder="请输入姓名"
|
|
clearable
|
|
style="width: 240px"
|
|
@keyup.enter.native="getUserList"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="创建时间" prop="dateRange">
|
|
<el-date-picker
|
|
v-model="param.dateRange"
|
|
style="width: 240px"
|
|
value-format="YYYY-MM-DD"
|
|
type="daterange"
|
|
range-separator="-"
|
|
start-placeholder="开始日期"
|
|
end-placeholder="结束日期"
|
|
></el-date-picker>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button size="default" type="primary" class="ml10" @click="getUserList">
|
|
<el-icon>
|
|
<ele-Search />
|
|
</el-icon>
|
|
查询
|
|
</el-button>
|
|
<el-button size="default" @click="resetQuery(queryRef)">
|
|
<el-icon>
|
|
<ele-Refresh />
|
|
</el-icon>
|
|
重置
|
|
</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
</div>
|
|
<UserList ref="userListRef" :dept-data="deptData" :gender-data="sys_user_sex" :param="param" :multiple="multiple" @ok="handleSelectUserOk"/>
|
|
</el-card>
|
|
</el-col>
|
|
</el-row>
|
|
</div>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import {toRefs, reactive, ref, defineComponent, watch, getCurrentInstance, nextTick} from 'vue';
|
|
import {ElTree,FormInstance} from 'element-plus';
|
|
import { Search } from '@element-plus/icons-vue'
|
|
import UserList from './component/userList.vue';
|
|
import {getDeptTree} from '/@/api/system/user/index';
|
|
|
|
interface QueryParam {
|
|
ids:number[];
|
|
deptProps:{};
|
|
deptData:any[];
|
|
param: {
|
|
deptId:string;
|
|
mobile:string;
|
|
status:string;
|
|
keyWords:string;
|
|
dateRange: string[];
|
|
};
|
|
}
|
|
|
|
export default defineComponent({
|
|
name: 'systemUser',
|
|
components: { UserList },
|
|
props:{
|
|
multiple:{
|
|
type:Boolean,
|
|
default:false
|
|
}
|
|
},
|
|
emits:['selectUser'],
|
|
setup(prop,{emit}) {
|
|
const visible = ref(false)
|
|
const {proxy} = <any>getCurrentInstance();
|
|
const {sys_user_sex} = proxy.useDict('sys_user_sex')
|
|
const userListRef = ref();
|
|
const queryRef = ref();
|
|
const filterText = ref('');
|
|
const treeRef = ref<InstanceType<typeof ElTree>>();
|
|
const search = Search
|
|
const state = reactive<QueryParam>({
|
|
ids:[],
|
|
deptProps:{
|
|
id:"deptId",
|
|
children: "children",
|
|
label: "deptName"
|
|
},
|
|
deptData:[],
|
|
param: {
|
|
deptId:'',
|
|
mobile:'',
|
|
status:'',
|
|
keyWords:'',
|
|
dateRange:[]
|
|
},
|
|
});
|
|
const getUserList = ()=>{
|
|
userListRef.value.setUserList();
|
|
};
|
|
// 初始化表格数据
|
|
const initTableData = () => {
|
|
getDeptTree().then((res:any)=>{
|
|
state.deptData = res.data.deps
|
|
})
|
|
getUserList()
|
|
};
|
|
|
|
watch(filterText, (val) => {
|
|
treeRef.value!.filter(val)
|
|
});
|
|
const deptFilterNode = (value: string, data:any) => {
|
|
if (!value) return true;
|
|
return data.deptName.includes(value)
|
|
};
|
|
// 节点单击事件
|
|
const handleNodeClick = (data:any) => {
|
|
state.param.deptId = data.deptId;
|
|
getUserList();
|
|
};
|
|
/** 重置按钮操作 */
|
|
const resetQuery = (formEl: FormInstance | undefined) => {
|
|
if (!formEl) return
|
|
formEl.resetFields()
|
|
getUserList()
|
|
};
|
|
const openDialog = ()=>{
|
|
visible.value = true
|
|
nextTick(()=>{
|
|
initTableData();
|
|
})
|
|
}
|
|
const handleSelectUserOk = (row:any)=>{
|
|
visible.value = false;
|
|
emit("selectUser",row);
|
|
}
|
|
return {
|
|
visible,
|
|
queryRef,
|
|
userListRef,
|
|
deptFilterNode,
|
|
filterText,
|
|
treeRef,
|
|
search,
|
|
sys_user_sex,
|
|
openDialog,
|
|
getUserList,
|
|
handleSelectUserOk,
|
|
handleNodeClick,
|
|
resetQuery,
|
|
...toRefs(state),
|
|
};
|
|
},
|
|
});
|
|
</script>
|