|
@@ -1,6 +1,12 @@
|
|
<template>
|
|
<template>
|
|
<!-- 授权用户 -->
|
|
<!-- 授权用户 -->
|
|
- <el-dialog title="选择用户" :visible.sync="visible" width="800px" top="5vh" append-to-body>
|
|
|
|
|
|
+ <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 :model="queryParams" ref="queryForm" size="small" :inline="true">
|
|
<el-form-item label="用户名称" prop="userName">
|
|
<el-form-item label="用户名称" prop="userName">
|
|
<el-input
|
|
<el-input
|
|
@@ -19,30 +25,68 @@
|
|
/>
|
|
/>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
<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-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-item>
|
|
</el-form>
|
|
</el-form>
|
|
<el-row>
|
|
<el-row>
|
|
- <el-table @row-click="clickRow" ref="table" :data="userList" @selection-change="handleSelectionChange" height="260px">
|
|
|
|
|
|
+ <el-table
|
|
|
|
+ @row-click="clickRow"
|
|
|
|
+ ref="table"
|
|
|
|
+ :data="userList"
|
|
|
|
+ @selection-change="handleSelectionChange"
|
|
|
|
+ height="260px"
|
|
|
|
+ >
|
|
<el-table-column type="selection" width="55"></el-table-column>
|
|
<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="用户名称"
|
|
|
|
+ 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">
|
|
<el-table-column label="状态" align="center" prop="status">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <dict-tag :options="dict.type.sys_normal_disable" :value="scope.row.status"/>
|
|
|
|
|
|
+ <dict-tag
|
|
|
|
+ :options="dict.type.sys_normal_disable"
|
|
|
|
+ :value="scope.row.status"
|
|
|
|
+ />
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column label="创建时间" align="center" prop="createTime" width="180">
|
|
|
|
|
|
+ <el-table-column
|
|
|
|
+ label="创建时间"
|
|
|
|
+ align="center"
|
|
|
|
+ prop="createTime"
|
|
|
|
+ width="180"
|
|
|
|
+ >
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<span>{{ parseTime(scope.row.createTime) }}</span>
|
|
<span>{{ parseTime(scope.row.createTime) }}</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
<pagination
|
|
<pagination
|
|
- v-show="total>0"
|
|
|
|
|
|
+ v-show="total > 0"
|
|
:total="total"
|
|
:total="total"
|
|
:page.sync="queryParams.pageNum"
|
|
:page.sync="queryParams.pageNum"
|
|
:limit.sync="queryParams.pageSize"
|
|
:limit.sync="queryParams.pageSize"
|
|
@@ -59,12 +103,12 @@
|
|
<script>
|
|
<script>
|
|
import { unallocatedUserList, authUserSelectAll } from "@/api/system/role";
|
|
import { unallocatedUserList, authUserSelectAll } from "@/api/system/role";
|
|
export default {
|
|
export default {
|
|
- dicts: ['sys_normal_disable'],
|
|
|
|
|
|
+ dicts: ["sys_normal_disable"],
|
|
props: {
|
|
props: {
|
|
// 角色编号
|
|
// 角色编号
|
|
roleId: {
|
|
roleId: {
|
|
- type: [Number, String]
|
|
|
|
- }
|
|
|
|
|
|
+ type: [Number, String],
|
|
|
|
+ },
|
|
},
|
|
},
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
@@ -82,14 +126,20 @@ export default {
|
|
pageSize: 10,
|
|
pageSize: 10,
|
|
roleId: undefined,
|
|
roleId: undefined,
|
|
userName: undefined,
|
|
userName: undefined,
|
|
- phonenumber: undefined
|
|
|
|
- }
|
|
|
|
|
|
+ phonenumber: undefined,
|
|
|
|
+ tenantId: undefined,
|
|
|
|
+ },
|
|
};
|
|
};
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
// 显示弹框
|
|
// 显示弹框
|
|
show() {
|
|
show() {
|
|
this.queryParams.roleId = this.roleId;
|
|
this.queryParams.roleId = this.roleId;
|
|
|
|
+ this.queryParams.tenantId = this.$store.state.user.tenant.tenantId;
|
|
|
|
+ if (!this.queryParams.tenantId) {
|
|
|
|
+ this.$message.error("当前账号没有tenantId,请更换登陆账号");
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
this.getList();
|
|
this.getList();
|
|
this.visible = true;
|
|
this.visible = true;
|
|
},
|
|
},
|
|
@@ -98,11 +148,11 @@ export default {
|
|
},
|
|
},
|
|
// 多选框选中数据
|
|
// 多选框选中数据
|
|
handleSelectionChange(selection) {
|
|
handleSelectionChange(selection) {
|
|
- this.userIds = selection.map(item => item.userId);
|
|
|
|
|
|
+ this.userIds = selection.map((item) => item.userId);
|
|
},
|
|
},
|
|
// 查询表数据
|
|
// 查询表数据
|
|
getList() {
|
|
getList() {
|
|
- unallocatedUserList(this.queryParams).then(res => {
|
|
|
|
|
|
+ unallocatedUserList(this.queryParams).then((res) => {
|
|
this.userList = res.rows;
|
|
this.userList = res.rows;
|
|
this.total = res.total;
|
|
this.total = res.total;
|
|
});
|
|
});
|
|
@@ -125,14 +175,14 @@ export default {
|
|
this.$modal.msgError("请选择要分配的用户");
|
|
this.$modal.msgError("请选择要分配的用户");
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
- authUserSelectAll({ roleId: roleId, userIds: userIds }).then(res => {
|
|
|
|
|
|
+ authUserSelectAll({ roleId: roleId, userIds: userIds }).then((res) => {
|
|
this.$modal.msgSuccess(res.msg);
|
|
this.$modal.msgSuccess(res.msg);
|
|
if (res.code === 200) {
|
|
if (res.code === 200) {
|
|
this.visible = false;
|
|
this.visible = false;
|
|
this.$emit("ok");
|
|
this.$emit("ok");
|
|
}
|
|
}
|
|
});
|
|
});
|
|
- }
|
|
|
|
- }
|
|
|
|
|
|
+ },
|
|
|
|
+ },
|
|
};
|
|
};
|
|
</script>
|
|
</script>
|