326 lines
8.0 KiB
Vue
326 lines
8.0 KiB
Vue
<script setup lang="ts">
|
|
import { reactive, toRaw, watch } from 'vue';
|
|
import { message } from 'ant-design-vue/lib';
|
|
import { SizeType } from 'ant-design-vue/lib/config-provider';
|
|
import { ColumnsType } from 'ant-design-vue/lib/table';
|
|
import { authUserAllocatedList } from '@/api/system/role';
|
|
import { parseDateToStr } from '@/utils/date-utils';
|
|
import useDictStore from '@/store/modules/dict';
|
|
import { RESULT_CODE_SUCCESS } from '@/constants/result-constants';
|
|
import useI18n from '@/hooks/useI18n';
|
|
const { t } = useI18n();
|
|
const { getDict } = useDictStore();
|
|
const emit = defineEmits(['ok', 'cancel', 'update:visible']);
|
|
const props = defineProps({
|
|
title: {
|
|
type: String,
|
|
default: '标题',
|
|
},
|
|
visible: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
roleId: {
|
|
type: [Number, String],
|
|
required: true,
|
|
},
|
|
});
|
|
|
|
/**字典数据 */
|
|
let dict: {
|
|
/**状态 */
|
|
sysNormalDisable: DictType[];
|
|
} = reactive({
|
|
sysNormalDisable: [],
|
|
});
|
|
|
|
/**查询参数 */
|
|
let queryParams = reactive({
|
|
/**登录账号 */
|
|
userName: '',
|
|
/**手机号码 */
|
|
phonenumber: '',
|
|
/**用户状态 */
|
|
status: undefined,
|
|
/**角色ID */
|
|
roleId: props.roleId,
|
|
/**是否已分配 */
|
|
allocated: false,
|
|
/**当前页数 */
|
|
pageNum: 1,
|
|
/**每页条数 */
|
|
pageSize: 20,
|
|
});
|
|
|
|
/**查询参数重置 */
|
|
function fnQueryReset() {
|
|
queryParams = Object.assign(queryParams, {
|
|
userName: '',
|
|
phonenumber: '',
|
|
status: undefined,
|
|
pageNum: 1,
|
|
pageSize: 20,
|
|
});
|
|
tablePagination.current = 1;
|
|
tablePagination.pageSize = 20;
|
|
fnGetList();
|
|
}
|
|
|
|
/**表格状态类型 */
|
|
type TabeStateType = {
|
|
/**加载等待 */
|
|
loading: boolean;
|
|
/**紧凑型 */
|
|
size: SizeType;
|
|
/**记录数据 */
|
|
data: object[];
|
|
/**勾选记录 */
|
|
selectedRowKeys: (string | number)[];
|
|
};
|
|
|
|
/**表格状态 */
|
|
let tableState: TabeStateType = reactive({
|
|
loading: false,
|
|
size: 'small',
|
|
data: [],
|
|
selectedRowKeys: [],
|
|
});
|
|
|
|
/**表格字段列 */
|
|
let tableColumns: ColumnsType = [
|
|
{
|
|
title: t('views.system.role.userId'),
|
|
dataIndex: 'userId',
|
|
align: 'center',
|
|
},
|
|
{
|
|
title: t('views.system.role.account'),
|
|
dataIndex: 'userName',
|
|
align: 'left',
|
|
},
|
|
{
|
|
title: t('views.system.role.userName'),
|
|
dataIndex: 'nickName',
|
|
align: 'left',
|
|
},
|
|
{
|
|
title: t('views.system.role.phone'),
|
|
dataIndex: 'phonenumber',
|
|
align: 'left',
|
|
},
|
|
{
|
|
title: t('views.system.role.email'),
|
|
dataIndex: 'email',
|
|
align: 'left',
|
|
},
|
|
{
|
|
title: t('views.system.role.userStaus'),
|
|
dataIndex: 'status',
|
|
key: 'status',
|
|
align: 'center',
|
|
},
|
|
{
|
|
title: t('views.system.role.createTime'),
|
|
dataIndex: 'createTime',
|
|
align: 'center',
|
|
customRender(opt) {
|
|
if (+opt.value <= 0) return '';
|
|
return parseDateToStr(+opt.value);
|
|
},
|
|
},
|
|
{
|
|
title: t('common.operate'),
|
|
key: 'userId',
|
|
align: 'center',
|
|
},
|
|
];
|
|
|
|
/**表格分页器参数 */
|
|
let tablePagination = reactive({
|
|
/**当前页数 */
|
|
current: 1,
|
|
/**每页条数 */
|
|
pageSize: 20,
|
|
/**默认的每页条数 */
|
|
defaultPageSize: 20,
|
|
/**指定每页可以显示多少条 */
|
|
pageSizeOptions: ['10', '20', '50', '100'],
|
|
/**只有一页时是否隐藏分页器 */
|
|
hideOnSinglePage: false,
|
|
/**是否可以快速跳转至某页 */
|
|
showQuickJumper: true,
|
|
/**是否可以改变 pageSize */
|
|
showSizeChanger: true,
|
|
/**数据总数 */
|
|
total: 0,
|
|
showTotal: (total: number) => t('common.tablePaginationTotal', { total }),
|
|
onChange: (page: number, pageSize: number) => {
|
|
tablePagination.current = page;
|
|
tablePagination.pageSize = pageSize;
|
|
queryParams.pageNum = page;
|
|
queryParams.pageSize = pageSize;
|
|
fnGetList();
|
|
},
|
|
});
|
|
|
|
/**表格多选 */
|
|
function fnTableSelectedRowKeys(keys: (string | number)[]) {
|
|
tableState.selectedRowKeys = keys;
|
|
}
|
|
|
|
/**查询角色未授权用户列表, pageNum初始页数 */
|
|
function fnGetList(pageNum?: number) {
|
|
if (tableState.loading) return;
|
|
tableState.loading = true;
|
|
if (pageNum) {
|
|
queryParams.pageNum = pageNum;
|
|
}
|
|
authUserAllocatedList(toRaw(queryParams)).then(res => {
|
|
if (res.code === RESULT_CODE_SUCCESS && Array.isArray(res.rows)) {
|
|
// 取消勾选
|
|
if (tableState.selectedRowKeys.length > 0) {
|
|
tableState.selectedRowKeys = [];
|
|
}
|
|
tablePagination.total = res.total;
|
|
tableState.data = res.rows;
|
|
if (
|
|
tablePagination.total <=
|
|
(queryParams.pageNum - 1) * tablePagination.pageSize &&
|
|
queryParams.pageNum !== 1
|
|
) {
|
|
tableState.loading = false;
|
|
fnGetList(queryParams.pageNum - 1);
|
|
}
|
|
}
|
|
tableState.loading = false;
|
|
});
|
|
}
|
|
|
|
/**弹框确认按钮事件 */
|
|
function fnModalOk() {
|
|
const userIds = tableState.selectedRowKeys;
|
|
if (userIds.length <= 0) {
|
|
message.error(t('views.system.role.selectPls'), 2);
|
|
return;
|
|
}
|
|
emit('update:visible', false);
|
|
emit('ok', userIds);
|
|
}
|
|
|
|
/**弹框取消按钮事件 */
|
|
function fnModalCancel() {
|
|
emit('update:visible', false);
|
|
emit('cancel');
|
|
}
|
|
|
|
/**显示弹框时初始数据 */
|
|
function init() {
|
|
// 初始字典数据
|
|
Promise.allSettled([getDict('sys_normal_disable')]).then(resArr => {
|
|
if (resArr[0].status === 'fulfilled') {
|
|
dict.sysNormalDisable = resArr[0].value;
|
|
}
|
|
});
|
|
// 获取列表数据
|
|
fnGetList();
|
|
}
|
|
|
|
/**监听是否显示,初始数据 */
|
|
watch(
|
|
() => props.visible,
|
|
val => {
|
|
if (val) init();
|
|
}
|
|
);
|
|
</script>
|
|
|
|
<template>
|
|
<ProModal
|
|
:drag="true"
|
|
:destroyOnClose="true"
|
|
:forceFullscreen="true"
|
|
:title="props.title"
|
|
:visible="props.visible"
|
|
:keyboard="false"
|
|
:mask-closable="false"
|
|
@ok="fnModalOk"
|
|
@cancel="fnModalCancel"
|
|
>
|
|
<!-- 表格搜索栏 -->
|
|
<a-form :model="queryParams" name="queryParams" layout="horizontal">
|
|
<a-row :gutter="16">
|
|
<a-col :lg="8" :md="12" :xs="24">
|
|
<a-form-item :label="t('views.system.role.account')" name="userName">
|
|
<a-input
|
|
v-model:value="queryParams.userName"
|
|
allow-clear
|
|
:maxlength="30"
|
|
></a-input>
|
|
</a-form-item>
|
|
</a-col>
|
|
<a-col :lg="8" :md="12" :xs="24">
|
|
<a-form-item :label="t('views.system.role.phone')" name="phonenumber">
|
|
<a-input
|
|
v-model:value="queryParams.phonenumber"
|
|
allow-clear
|
|
:maxlength="11"
|
|
></a-input>
|
|
</a-form-item>
|
|
</a-col>
|
|
<a-col :lg="8" :md="12" :xs="24">
|
|
<a-form-item :label="t('views.system.role.userStaus')" name="status">
|
|
<a-select
|
|
v-model:value="queryParams.status"
|
|
allow-clear
|
|
:options="dict.sysNormalDisable"
|
|
>
|
|
</a-select>
|
|
</a-form-item>
|
|
</a-col>
|
|
<a-col :lg="12" :md="12" :xs="24">
|
|
<a-form-item>
|
|
<a-space :size="8">
|
|
<a-button type="primary" @click.prevent="fnGetList(1)">
|
|
<template #icon><SearchOutlined /></template>
|
|
{{ t('common.search') }}</a-button
|
|
>
|
|
<a-button type="default" @click.prevent="fnQueryReset">
|
|
<template #icon><ClearOutlined /></template>
|
|
{{ t('common.reset') }}</a-button
|
|
>
|
|
</a-space>
|
|
</a-form-item>
|
|
</a-col>
|
|
</a-row>
|
|
</a-form>
|
|
|
|
<a-table
|
|
class="table"
|
|
row-key="userId"
|
|
:columns="tableColumns"
|
|
:loading="tableState.loading"
|
|
:data-source="tableState.data"
|
|
:size="tableState.size"
|
|
:scroll="{ scrollToFirstRowOnChange: true }"
|
|
:pagination="tablePagination"
|
|
:row-selection="{
|
|
type: 'checkbox',
|
|
selectedRowKeys: tableState.selectedRowKeys,
|
|
onChange: fnTableSelectedRowKeys,
|
|
}"
|
|
>
|
|
<template #bodyCell="{ column, record }">
|
|
<template v-if="column.key === 'status'">
|
|
<DictTag :options="dict.sysNormalDisable" :value="record.status" />
|
|
</template>
|
|
</template>
|
|
</a-table>
|
|
</ProModal>
|
|
</template>
|
|
|
|
<style lang="less" scoped>
|
|
.table :deep(.ant-pagination) {
|
|
padding: 0 24px;
|
|
}
|
|
</style>
|