| | |
| | | <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="statusOptions" :value="scope.row.status"/>
|
| | | <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">
|
| | |
| | | <script>
|
| | | import { unallocatedUserList, authUserSelectAll } from "@/api/system/role";
|
| | | export default {
|
| | | dicts: ['sys_normal_disable'],
|
| | | props: {
|
| | | // 角色编号
|
| | | roleId: {
|
| | | type: String
|
| | | type: [Number, String]
|
| | | }
|
| | | },
|
| | | data() {
|
| | |
| | | total: 0,
|
| | | // 未授权用户数据
|
| | | userList: [],
|
| | | // 状态数据字典
|
| | | statusOptions: [],
|
| | | // 查询参数
|
| | | queryParams: {
|
| | | pageNum: 1,
|
| | |
| | | phonenumber: undefined
|
| | | }
|
| | | };
|
| | | },
|
| | | created() {
|
| | | this.getDicts("sys_normal_disable").then(response => {
|
| | | this.statusOptions = response.data;
|
| | | });
|
| | | },
|
| | | methods: {
|
| | | // 显示弹框
|
| | |
| | | handleSelectUser() {
|
| | | const roleId = this.queryParams.roleId;
|
| | | const userIds = this.userIds.join(",");
|
| | | if (userIds == "") {
|
| | | this.$modal.msgError("请选择要分配的用户");
|
| | | return;
|
| | | }
|
| | | authUserSelectAll({ roleId: roleId, userIds: userIds }).then(res => {
|
| | | this.msgSuccess(res.msg);
|
| | | this.$modal.msgSuccess(res.msg);
|
| | | if (res.code === 200) {
|
| | | this.visible = false;
|
| | | this.$emit("ok");
|