| | |
| | | <template> |
| | | <!-- 授权用户 --> |
| | | <el-dialog title="选择用户" v-model="visible" width="800px" top="5vh" append-to-body> |
| | | <el-form :model="queryParams" ref="queryRef" :inline="true"> |
| | | <el-form-item label="用户名称" prop="userName"> |
| | | <el-input |
| | | v-model="queryParams.userName" |
| | | placeholder="请输入用户名称" |
| | | clearable |
| | | style="width: 200px" |
| | | @keyup.enter="handleQuery" |
| | | /> |
| | | </el-form-item> |
| | | <el-form-item label="手机号码" prop="phonenumber"> |
| | | <el-input |
| | | v-model="queryParams.phonenumber" |
| | | placeholder="请输入手机号码" |
| | | clearable |
| | | style="width: 200px" |
| | | @keyup.enter="handleQuery" |
| | | /> |
| | | </el-form-item> |
| | | <el-form-item> |
| | | <el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button> |
| | | <el-button icon="Refresh" @click="resetQuery">重置</el-button> |
| | | </el-form-item> |
| | | </el-form> |
| | | <el-row> |
| | | <el-table @row-click="clickRow" ref="refTable" :data="userList" @selection-change="handleSelectionChange" height="260px"> |
| | | <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 #default="scope"> |
| | | <dict-tag :options="sys_normal_disable" :value="scope.row.status" /> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="创建时间" align="center" prop="createTime" width="180"> |
| | | <template #default="scope"> |
| | | <span>{{ parseTime(scope.row.createTime) }}</span> |
| | | </template> |
| | | </el-table-column> |
| | | </el-table> |
| | | <pagination |
| | | v-show="total > 0" |
| | | :total="total" |
| | | v-model:page="queryParams.pageNum" |
| | | v-model:limit="queryParams.pageSize" |
| | | @pagination="getList" |
| | | /> |
| | | </el-row> |
| | | <template #footer> |
| | | <div class="dialog-footer"> |
| | | <el-button type="primary" @click="handleSelectUser">确 定</el-button> |
| | | <el-button @click="visible = false">取 消</el-button> |
| | | </div> |
| | | </template> |
| | | </el-dialog> |
| | | </template> |
| | | |
| | | <script setup name="SelectUser"> |
| | | <script setup name="SelectUser" lang="ts"> |
| | | import { authUserSelectAll, unallocatedUserList } from "@/api/system/role"; |
| | | import { UserVO } from '@/api/system/user/types'; |
| | | import { UserQuery } from '@/api/system/user/types'; |
| | | import { ComponentInternalInstance } from 'vue'; |
| | | import { ElForm, ElTable } from 'element-plus'; |
| | | |
| | | |
| | | const props = defineProps({ |
| | | roleId: { |
| | | type: [Number, String] |
| | | } |
| | | }); |
| | | }) |
| | | |
| | | const { proxy } = getCurrentInstance(); |
| | | const { sys_normal_disable } = proxy.useDict("sys_normal_disable"); |
| | | const { proxy } = getCurrentInstance() as ComponentInternalInstance; |
| | | const { sys_normal_disable } = toRefs<any>(proxy?.useDict('sys_normal_disable')); |
| | | |
| | | const userList = ref([]); |
| | | const userList = ref<UserVO[]>([]); |
| | | const visible = ref(false); |
| | | const total = ref(0); |
| | | const userIds = ref([]); |
| | | const userIds = ref<Array<string | number>>([]); |
| | | |
| | | const queryParams = reactive({ |
| | | const queryParams = reactive<UserQuery>({ |
| | | pageNum: 1, |
| | | pageSize: 10, |
| | | roleId: undefined, |
| | | userName: undefined, |
| | | phonenumber: undefined |
| | | }); |
| | | }) |
| | | |
| | | // 显示弹框 |
| | | function show() { |
| | | const tableRef = ref(ElTable); |
| | | const queryFormRef = ref(ElForm); |
| | | |
| | | const show = () => { |
| | | queryParams.roleId = props.roleId; |
| | | getList(); |
| | | visible.value = true; |
| | | } |
| | | /**选择行 */ |
| | | function clickRow(row) { |
| | | proxy.$refs["refTable"].toggleRowSelection(row); |
| | | |
| | | /** |
| | | * 选择行 |
| | | */ |
| | | const clickRow = (row: any) => { |
| | | tableRef.value.toggleRowSelection(row); |
| | | } |
| | | // 多选框选中数据 |
| | | function handleSelectionChange(selection) { |
| | | userIds.value = selection.map(item => item.userId); |
| | | /** 多选框选中数据 */ |
| | | const handleSelectionChange = (selection: UserVO[]) => { |
| | | userIds.value = selection.map((item: UserVO) => item.userId); |
| | | } |
| | | // 查询表数据 |
| | | function getList() { |
| | | unallocatedUserList(queryParams).then(res => { |
| | | userList.value = res.rows; |
| | | total.value = res.total; |
| | | }); |
| | | |
| | | /** 查询数据 */ |
| | | const getList = async () => { |
| | | const res = await unallocatedUserList(queryParams); |
| | | userList.value = res.rows; |
| | | total.value = res.total; |
| | | } |
| | | /** 搜索按钮操作 */ |
| | | function handleQuery() { |
| | | const handleQuery = () => { |
| | | queryParams.pageNum = 1; |
| | | getList(); |
| | | } |
| | | /** 重置按钮操作 */ |
| | | function resetQuery() { |
| | | proxy.resetForm("queryRef"); |
| | | handleQuery(); |
| | | } |
| | | const emit = defineEmits(["ok"]); |
| | | /** 选择授权用户操作 */ |
| | | function handleSelectUser() { |
| | | const roleId = queryParams.roleId; |
| | | const uIds = userIds.value.join(","); |
| | | if (uIds == "") { |
| | | proxy.$modal.msgError("请选择要分配的用户"); |
| | | return; |
| | | } |
| | | authUserSelectAll({ roleId: roleId, userIds: uIds }).then(res => { |
| | | proxy.$modal.msgSuccess(res.msg); |
| | | if (res.code === 200) { |
| | | visible.value = false; |
| | | emit("ok"); |
| | | } |
| | | }); |
| | | const resetQuery = () => { |
| | | queryFormRef.value.resetFields(); |
| | | getList(); |
| | | } |
| | | |
| | | const emit = defineEmits(["ok"]); |
| | | /**选择授权用户操作 */ |
| | | const handleSelectUser = async () => { |
| | | const roleId = queryParams.roleId; |
| | | const ids = userIds.value.join(','); |
| | | if (ids == "") { |
| | | proxy?.$modal.msgError('请选择要分配的用户'); |
| | | return; |
| | | } |
| | | await authUserSelectAll({ roleId, userIds: ids }); |
| | | proxy?.$modal.msgSuccess('分配成功'); |
| | | emit('ok'); |
| | | visible.value = false; |
| | | } |
| | | // 暴露 |
| | | defineExpose({ |
| | | show, |
| | | }); |
| | | </script> |
| | | |
| | | <template> |
| | | <el-row> |
| | | <el-dialog title="选择用户" v-model="visible" width="800px" top="5vh" append-to-body> |
| | | <el-form :model="queryParams" ref="queryFormRef" :inline="true"> |
| | | <el-form-item label="用户名称" prop="userName"> |
| | | <el-input v-model="queryParams.userName" placeholder="请输入用户名称" clearable @keyup.enter="handleQuery" /> |
| | | </el-form-item> |
| | | <el-form-item label="手机号码" prop="phonenumber"> |
| | | <el-input v-model="queryParams.phonenumber" placeholder="请输入手机号码" clearable @keyup.enter="handleQuery" /> |
| | | </el-form-item> |
| | | <el-form-item> |
| | | <el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button> |
| | | <el-button icon="Refresh" @click="resetQuery">重置</el-button> |
| | | </el-form-item> |
| | | </el-form> |
| | | <el-row> |
| | | <el-table @row-click="clickRow" ref="tableRef" :data="userList" @selection-change="handleSelectionChange" height="260px"> |
| | | <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 #default="scope"> |
| | | <dict-tag :options="sys_normal_disable" :value="scope.row.status" /> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="创建时间" align="center" prop="createTime" width="180"> |
| | | <template #default="scope"> |
| | | <span>{{ parseTime(scope.row.createTime) }}</span> |
| | | </template> |
| | | </el-table-column> |
| | | </el-table> |
| | | <pagination v-if="total > 0" :total="total" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize" @pagination="getList" /> |
| | | </el-row> |
| | | <template #footer> |
| | | <div class="dialog-footer"> |
| | | <el-button type="primary" @click="handleSelectUser">确 定</el-button> |
| | | <el-button @click="visible = false">取 消</el-button> |
| | | </div> |
| | | </template> |
| | | </el-dialog> |
| | | </el-row> |
| | | </template> |
| | | |
| | | <style scoped></style> |