| ¶Ô±ÈÐÂÎļþ |
| | |
| | | <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: 180px"
|
| | | @keyup.enter="handleQuery"
|
| | | />
|
| | | </el-form-item>
|
| | | <el-form-item label="ææºå·ç " prop="phonenumber">
|
| | | <el-input
|
| | | v-model="queryParams.phonenumber"
|
| | | placeholder="请è¾å
¥ææºå·ç "
|
| | | clearable
|
| | | style="width: 180px"
|
| | | @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">
|
| | | import { authUserSelectAll, unallocatedUserList } from "@/api/system/role"
|
| | |
|
| | | const props = defineProps({
|
| | | roleId: {
|
| | | type: [Number, String]
|
| | | }
|
| | | })
|
| | |
|
| | | const { proxy } = getCurrentInstance()
|
| | | const { sys_normal_disable } = proxy.useDict("sys_normal_disable")
|
| | |
|
| | | const userList = ref([])
|
| | | const visible = ref(false)
|
| | | const total = ref(0)
|
| | | const userIds = ref([])
|
| | |
|
| | | const queryParams = reactive({
|
| | | pageNum: 1,
|
| | | pageSize: 10,
|
| | | roleId: undefined,
|
| | | userName: undefined,
|
| | | phonenumber: undefined
|
| | | })
|
| | |
|
| | | // æ¾ç¤ºå¼¹æ¡
|
| | | function show() {
|
| | | queryParams.roleId = props.roleId
|
| | | getList()
|
| | | visible.value = true
|
| | | }
|
| | |
|
| | | /**éæ©è¡ */
|
| | | function clickRow(row) {
|
| | | proxy.$refs["refTable"].toggleRowSelection(row)
|
| | | }
|
| | |
|
| | | // å¤éæ¡é䏿°æ®
|
| | | function handleSelectionChange(selection) {
|
| | | userIds.value = selection.map(item => item.userId)
|
| | | }
|
| | |
|
| | | // æ¥è¯¢è¡¨æ°æ®
|
| | | function getList() {
|
| | | unallocatedUserList(queryParams).then(res => {
|
| | | userList.value = res.rows
|
| | | total.value = res.total
|
| | | })
|
| | | }
|
| | |
|
| | | /** æç´¢æé®æä½ */
|
| | | function 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)
|
| | | visible.value = false
|
| | | emit("ok")
|
| | | })
|
| | | }
|
| | |
|
| | | defineExpose({
|
| | | show,
|
| | | })
|
| | | </script>
|