2025-06-30 14:52:34 +08:00
|
|
|
<template>
|
|
|
|
<!-- 授权用户 -->
|
|
|
|
<el-dialog title="选择用户" :visible.sync="visible" width="800px" top="5vh" append-to-body>
|
|
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true">
|
|
|
|
<el-form-item label="用户名称" prop="userName">
|
|
|
|
<el-input
|
|
|
|
v-model="queryParams.userName"
|
|
|
|
placeholder="请输入用户名称"
|
|
|
|
clearable
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
/>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="手机号码" prop="phonenumber">
|
|
|
|
<el-input
|
|
|
|
v-model="queryParams.phonenumber"
|
|
|
|
placeholder="请输入手机号码"
|
|
|
|
clearable
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
/>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="部门" prop="deptId">
|
|
|
|
<treeselect style="width: 200px" v-model="queryParams.deptId" :options="deptOptions" :normalizer="normalizer" placeholder="选择部门" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item>
|
|
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
<el-row>
|
2025-08-11 15:36:00 +08:00
|
|
|
<el-table v-if="multiple" @row-click="clickRow" ref="table" :data="userList" @selection-change="handleSelectionChange" height="360px">
|
2025-06-30 14:52:34 +08:00
|
|
|
<el-table-column type="selection" width="55"></el-table-column>
|
|
|
|
<el-table-column label="用户名称" prop="userName" :show-overflow-tooltip="true" />
|
|
|
|
<el-table-column label="用户昵称" prop="nickName" :show-overflow-tooltip="true" />
|
|
|
|
<el-table-column label="邮箱" prop="email" :show-overflow-tooltip="true" />
|
|
|
|
<el-table-column label="手机" prop="phonenumber" :show-overflow-tooltip="true" />
|
|
|
|
<el-table-column label="状态" align="center" prop="status">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<dict-tag :options="dict.type.sys_normal_disable" :value="scope.row.status"/>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="创建时间" align="center" prop="createTime" width="180">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<span>{{ parseTime(scope.row.createTime) }}</span>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
2025-08-11 15:36:00 +08:00
|
|
|
<el-table v-else ref="table" :data="userList" height="360px" highlight-current-row @current-change="handleCurrentChange">
|
|
|
|
<el-table-column label="用户名称" prop="userName" :show-overflow-tooltip="true" />
|
|
|
|
<el-table-column label="用户昵称" prop="nickName" :show-overflow-tooltip="true" />
|
|
|
|
<el-table-column label="邮箱" prop="email" :show-overflow-tooltip="true" />
|
|
|
|
<el-table-column label="手机" prop="phonenumber" :show-overflow-tooltip="true" />
|
|
|
|
<el-table-column label="状态" align="center" prop="status">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<dict-tag :options="dict.type.sys_normal_disable" :value="scope.row.status"/>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="创建时间" align="center" prop="createTime" width="180">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<span>{{ parseTime(scope.row.createTime) }}</span>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
2025-06-30 14:52:34 +08:00
|
|
|
<pagination
|
|
|
|
v-show="total>0"
|
|
|
|
:total="total"
|
|
|
|
:page.sync="queryParams.pageNum"
|
|
|
|
:limit.sync="queryParams.pageSize"
|
|
|
|
@pagination="getList"
|
|
|
|
/>
|
|
|
|
</el-row>
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
<el-button type="primary" @click="handleSelectUser">确 定</el-button>
|
|
|
|
<el-button @click="visible = false">取 消</el-button>
|
|
|
|
</div>
|
|
|
|
</el-dialog>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { listDept } from "@/api/system/dept";
|
|
|
|
import { listUser } from "@/api/system/user";
|
|
|
|
import Treeselect from "@riophae/vue-treeselect";
|
|
|
|
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
dicts: ['sys_normal_disable'],
|
|
|
|
components: { Treeselect },
|
|
|
|
props: {
|
2025-08-11 15:36:00 +08:00
|
|
|
//当前产品的随机产品数组
|
|
|
|
multiple: {
|
|
|
|
type: Boolean,
|
|
|
|
default: true,
|
|
|
|
},
|
2025-06-30 14:52:34 +08:00
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
// 部门树选项
|
|
|
|
deptOptions: [],
|
|
|
|
// 遮罩层
|
|
|
|
visible: false,
|
|
|
|
// 选中数组值
|
|
|
|
userIds: [],
|
|
|
|
// 总条数
|
|
|
|
total: 0,
|
|
|
|
// 未授权用户数据
|
|
|
|
userList: [],
|
|
|
|
//默认选中的数据
|
|
|
|
leaderIds:[],
|
|
|
|
// 查询参数
|
|
|
|
queryParams: {
|
|
|
|
pageNum: 1,
|
|
|
|
pageSize: 10,
|
|
|
|
deptId:null,
|
|
|
|
userName: undefined,
|
|
|
|
phonenumber: undefined
|
|
|
|
}
|
|
|
|
};
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
this.initData()
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
initData(){
|
|
|
|
listDept().then(response => {
|
|
|
|
this.deptOptions = this.handleTree(response.data, "deptId");
|
2025-06-30 15:59:45 +08:00
|
|
|
console.log(this.deptOptions,"de")
|
2025-06-30 14:52:34 +08:00
|
|
|
});
|
|
|
|
},
|
|
|
|
/** 转换部门数据结构 */
|
|
|
|
normalizer(node) {
|
|
|
|
if (node.children && !node.children.length) {
|
|
|
|
delete node.children;
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
id: node.deptId,
|
|
|
|
label: node.deptName,
|
|
|
|
children: node.children
|
|
|
|
};
|
|
|
|
},
|
|
|
|
// 显示弹框
|
|
|
|
show(leaderId) {
|
2025-08-11 15:36:00 +08:00
|
|
|
this.userIds = []
|
2025-06-30 14:52:34 +08:00
|
|
|
if(leaderId){
|
|
|
|
this.leaderIds = leaderId.split(",")
|
|
|
|
}
|
|
|
|
this.getList();
|
|
|
|
this.visible = true;
|
|
|
|
},
|
|
|
|
clickRow(row) {
|
|
|
|
this.$refs.table.toggleRowSelection(row);
|
|
|
|
},
|
|
|
|
// 多选框选中数据
|
|
|
|
handleSelectionChange(selection) {
|
|
|
|
this.userIds = selection.map(item => item.userId);
|
|
|
|
},
|
|
|
|
// 查询表数据
|
|
|
|
getList() {
|
|
|
|
listUser(this.queryParams).then(res => {
|
|
|
|
this.userList = res.rows;
|
|
|
|
// this.$nextTick(() => {
|
|
|
|
// if (this.$refs.table) {
|
|
|
|
// this.userList.forEach(item => {
|
|
|
|
// if (this.leaderIds.indexOf(item.userId+'')!=-1) {
|
|
|
|
// this.$refs.table.toggleRowSelection(item, true);
|
|
|
|
// }
|
|
|
|
// });
|
|
|
|
// }
|
|
|
|
// });
|
|
|
|
this.total = res.total;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
handleQuery() {
|
|
|
|
this.queryParams.pageNum = 1;
|
|
|
|
this.getList();
|
|
|
|
},
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
resetQuery() {
|
|
|
|
this.resetForm("queryForm");
|
|
|
|
this.handleQuery();
|
|
|
|
},
|
2025-08-11 15:36:00 +08:00
|
|
|
/** 选中某行 */
|
|
|
|
handleCurrentChange(val){
|
|
|
|
this.userIds = []
|
|
|
|
this.userIds.push(val.userId)
|
|
|
|
},
|
2025-06-30 14:52:34 +08:00
|
|
|
/** 选择授权用户操作 */
|
|
|
|
handleSelectUser() {
|
|
|
|
const userIds = this.userIds.join(",");
|
|
|
|
if (userIds == "") {
|
|
|
|
this.$modal.msgError("请选择要分配的用户");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.$refs.table.clearSelection();
|
|
|
|
this.visible = false;
|
|
|
|
this.$emit("ok",userIds)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|