2023-11-16 17:11:49 +08:00
|
|
|
<template>
|
|
|
|
<div class="container">
|
|
|
|
<Breadcrumb :items="['menu.system', 'menu.system.user']" />
|
|
|
|
<a-card class="general-card" :title="$t('menu.list.searchTable')">
|
|
|
|
<a-row>
|
|
|
|
<a-col :flex="1">
|
|
|
|
<a-form
|
|
|
|
:model="formModel"
|
|
|
|
:label-col-props="{ span: 6 }"
|
|
|
|
:wrapper-col-props="{ span: 18 }"
|
|
|
|
label-align="right"
|
|
|
|
>
|
|
|
|
<a-row :gutter="16">
|
|
|
|
<a-col :span="8">
|
|
|
|
<a-form-item field="name" label="用户名称">
|
|
|
|
<a-input
|
|
|
|
v-model="formModel.name"
|
|
|
|
placeholder="请输入用户名称"
|
|
|
|
/>
|
|
|
|
</a-form-item>
|
|
|
|
</a-col>
|
|
|
|
|
|
|
|
<a-col :span="8">
|
|
|
|
<a-form-item field="name" label="手机号码">
|
|
|
|
<a-input
|
|
|
|
v-model="formModel.phone"
|
|
|
|
placeholder="请输入手机号码"
|
|
|
|
/>
|
|
|
|
</a-form-item>
|
|
|
|
</a-col>
|
|
|
|
<a-col :span="8">
|
|
|
|
<a-form-item field="name" label="邮箱">
|
|
|
|
<a-input v-model="formModel.email" placeholder="请输入邮箱" />
|
|
|
|
</a-form-item>
|
|
|
|
</a-col>
|
|
|
|
<a-col :span="8">
|
|
|
|
<a-form-item field="enableState" label="状态">
|
|
|
|
<a-select
|
|
|
|
v-model="formModel.enableState"
|
|
|
|
:options="statusOptions"
|
|
|
|
placeholder="请选择用户状态"
|
|
|
|
/>
|
|
|
|
</a-form-item>
|
|
|
|
</a-col>
|
|
|
|
</a-row>
|
|
|
|
</a-form>
|
|
|
|
</a-col>
|
|
|
|
<a-divider style="height: 84px" direction="vertical" />
|
|
|
|
<a-col :flex="'86px'" style="text-align: right">
|
|
|
|
<a-space direction="vertical" :size="18">
|
|
|
|
<a-button type="primary" @click="search">
|
|
|
|
<template #icon>
|
|
|
|
<icon-search />
|
|
|
|
</template>
|
|
|
|
{{ $t('searchTable.form.search') }}
|
|
|
|
</a-button>
|
|
|
|
<a-button @click="reset">
|
|
|
|
<template #icon>
|
|
|
|
<icon-refresh />
|
|
|
|
</template>
|
|
|
|
{{ $t('searchTable.form.reset') }}
|
|
|
|
</a-button>
|
|
|
|
</a-space>
|
|
|
|
</a-col>
|
|
|
|
</a-row>
|
|
|
|
<a-divider style="margin-top: 0" />
|
|
|
|
<a-row style="margin-bottom: 16px">
|
|
|
|
<a-col :span="12">
|
|
|
|
<a-space>
|
|
|
|
<UserCreate ref="createUserRef" @refresh="search" />
|
|
|
|
<a-upload action="/">
|
|
|
|
<template #upload-button>
|
|
|
|
<a-button>
|
|
|
|
{{ $t('searchTable.operation.import') }}
|
|
|
|
</a-button>
|
|
|
|
</template>
|
|
|
|
</a-upload>
|
|
|
|
</a-space>
|
|
|
|
</a-col>
|
|
|
|
<a-col
|
|
|
|
:span="12"
|
|
|
|
style="display: flex; align-items: center; justify-content: end"
|
|
|
|
>
|
|
|
|
<a-button>
|
|
|
|
<template #icon>
|
|
|
|
<icon-download />
|
|
|
|
</template>
|
|
|
|
{{ $t('searchTable.operation.download') }}
|
|
|
|
</a-button>
|
|
|
|
<a-tooltip :content="$t('searchTable.actions.refresh')">
|
|
|
|
<div class="action-icon" @click="search">
|
|
|
|
<icon-refresh size="18" />
|
|
|
|
</div>
|
|
|
|
</a-tooltip>
|
|
|
|
<a-dropdown @select="handleSelectDensity">
|
|
|
|
<a-tooltip :content="$t('searchTable.actions.density')">
|
|
|
|
<div class="action-icon"><icon-line-height size="18" /></div>
|
|
|
|
</a-tooltip>
|
|
|
|
<template #content>
|
|
|
|
<a-doption
|
|
|
|
v-for="item in densityList"
|
|
|
|
:key="item.value"
|
|
|
|
:value="item.value"
|
|
|
|
:class="{ active: item.value === size }"
|
|
|
|
>
|
|
|
|
<span>{{ item.name }}</span>
|
|
|
|
</a-doption>
|
|
|
|
</template>
|
|
|
|
</a-dropdown>
|
|
|
|
<a-tooltip :content="$t('searchTable.actions.columnSetting')">
|
|
|
|
<a-popover
|
|
|
|
trigger="click"
|
|
|
|
position="bl"
|
|
|
|
@popup-visible-change="popupVisibleChange"
|
|
|
|
>
|
|
|
|
<div class="action-icon"><icon-settings size="18" /></div>
|
|
|
|
<template #content>
|
|
|
|
<div id="tableSetting">
|
|
|
|
<div
|
|
|
|
v-for="(item, index) in showColumns"
|
|
|
|
:key="item.dataIndex"
|
|
|
|
class="setting"
|
|
|
|
>
|
|
|
|
<div style="margin-right: 4px; cursor: move">
|
|
|
|
<icon-drag-arrow />
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<a-checkbox
|
|
|
|
v-model="item.checked"
|
|
|
|
@change="
|
|
|
|
handleChange($event, item as TableColumnData, index)
|
|
|
|
"
|
|
|
|
>
|
|
|
|
</a-checkbox>
|
|
|
|
</div>
|
|
|
|
<div class="title">
|
|
|
|
{{ item.title === '#' ? '序列号' : item.title }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</a-popover>
|
|
|
|
</a-tooltip>
|
|
|
|
</a-col>
|
|
|
|
</a-row>
|
|
|
|
<a-table
|
|
|
|
row-key="id"
|
|
|
|
:loading="loading"
|
|
|
|
:pagination="pagination"
|
|
|
|
:columns="(cloneColumns as TableColumnData[])"
|
|
|
|
:data="renderData"
|
|
|
|
:bordered="false"
|
|
|
|
:size="size"
|
|
|
|
@page-change="onPageChange"
|
|
|
|
>
|
|
|
|
<template #enableState="{ record }">
|
|
|
|
<span v-if="record.enableState === '启用'" class="circle pass"></span>
|
|
|
|
<span v-else class="circle"></span>
|
|
|
|
{{ record.enableState }}
|
|
|
|
</template>
|
|
|
|
<template #operations="{ record }">
|
|
|
|
<UserEdit ref="editUserRef" :user="record" @refresh="search" />
|
|
|
|
<a-popconfirm
|
|
|
|
content="确认删除此用户?"
|
|
|
|
type="error"
|
|
|
|
@ok="handleDelete(record)"
|
|
|
|
>
|
|
|
|
<a-button type="outline" size="small" status="danger">
|
|
|
|
删除
|
|
|
|
</a-button>
|
|
|
|
</a-popconfirm>
|
|
|
|
</template>
|
|
|
|
</a-table>
|
|
|
|
</a-card>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import { computed, ref, reactive, watch, nextTick } from 'vue';
|
|
|
|
import { useI18n } from 'vue-i18n';
|
|
|
|
import useLoading from '@/hooks/loading';
|
|
|
|
import { queryUserList, remove, UserRecord, UserParams } from '@/api/user';
|
|
|
|
import { Pagination } from '@/types/global';
|
|
|
|
import type { SelectOptionData } from '@arco-design/web-vue/es/select/interface';
|
|
|
|
import type { TableColumnData } from '@arco-design/web-vue/es/table/interface';
|
|
|
|
import cloneDeep from 'lodash/cloneDeep';
|
|
|
|
import Sortable from 'sortablejs';
|
|
|
|
import { Message } from '@arco-design/web-vue';
|
|
|
|
import UserEdit from './components/user-edit.vue';
|
|
|
|
import UserCreate from './components/user-create.vue';
|
|
|
|
|
|
|
|
type SizeProps = 'mini' | 'small' | 'medium' | 'large';
|
|
|
|
type Column = TableColumnData & { checked?: true };
|
|
|
|
|
|
|
|
const generateFormModel = () => {
|
|
|
|
return {
|
|
|
|
id: '',
|
|
|
|
name: '',
|
|
|
|
phone: '',
|
|
|
|
email: '',
|
|
|
|
createdTime: [],
|
|
|
|
enableState: '',
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
const { loading, setLoading } = useLoading(true);
|
|
|
|
const { t } = useI18n();
|
|
|
|
const renderData = ref<UserRecord[]>([]);
|
|
|
|
const formModel = ref(generateFormModel());
|
|
|
|
const cloneColumns = ref<Column[]>([]);
|
|
|
|
const showColumns = ref<Column[]>([]);
|
|
|
|
const size = ref<SizeProps>('medium');
|
|
|
|
|
|
|
|
const basePagination: Pagination = {
|
|
|
|
current: 1,
|
|
|
|
pageSize: 10,
|
|
|
|
};
|
|
|
|
const pagination = reactive({
|
|
|
|
...basePagination,
|
|
|
|
});
|
|
|
|
const densityList = computed(() => [
|
|
|
|
{
|
|
|
|
name: t('searchTable.size.mini'),
|
|
|
|
value: 'mini',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: t('searchTable.size.small'),
|
|
|
|
value: 'small',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: t('searchTable.size.medium'),
|
|
|
|
value: 'medium',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: t('searchTable.size.large'),
|
|
|
|
value: 'large',
|
|
|
|
},
|
|
|
|
]);
|
|
|
|
const columns = computed<TableColumnData[]>(() => [
|
|
|
|
{
|
|
|
|
title: t('searchTable.columns.index'),
|
|
|
|
dataIndex: 'id',
|
|
|
|
slotName: 'index',
|
|
|
|
width: 80,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: t('searchTable.columns.name'),
|
|
|
|
dataIndex: 'username',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: '用户昵称',
|
|
|
|
dataIndex: 'name',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: t('searchTable.columns.phone'),
|
|
|
|
dataIndex: 'phone',
|
|
|
|
slotName: 'phone',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: t('searchTable.columns.email'),
|
|
|
|
dataIndex: 'email',
|
|
|
|
slotName: 'email',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: t('searchTable.columns.enableState'),
|
|
|
|
dataIndex: 'enableState',
|
|
|
|
slotName: 'enableState',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: t('searchTable.columns.operations'),
|
|
|
|
dataIndex: 'operations',
|
|
|
|
slotName: 'operations',
|
|
|
|
},
|
|
|
|
]);
|
|
|
|
const statusOptions = computed<SelectOptionData[]>(() => [
|
|
|
|
{
|
|
|
|
label: '启用',
|
|
|
|
value: '启用',
|
|
|
|
},
|
|
|
|
{
|
2023-11-24 17:10:28 +08:00
|
|
|
label: '停用',
|
|
|
|
value: '停用',
|
2023-11-16 17:11:49 +08:00
|
|
|
},
|
|
|
|
]);
|
|
|
|
const fetchData = async (
|
|
|
|
params: UserParams = { current: 1, pageSize: 10 }
|
|
|
|
) => {
|
|
|
|
setLoading(true);
|
|
|
|
try {
|
|
|
|
const res = await queryUserList(params);
|
|
|
|
const { data } = res;
|
|
|
|
renderData.value = data.content;
|
|
|
|
pagination.current = data.pageable.pageNumber + 1;
|
|
|
|
pagination.total = data.totalElements;
|
|
|
|
pagination.pageSize = data.size;
|
|
|
|
} catch (err) {
|
|
|
|
// you can report use errorHandler or other
|
|
|
|
} finally {
|
|
|
|
setLoading(false);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const search = () => {
|
|
|
|
fetchData({
|
|
|
|
...basePagination,
|
|
|
|
...formModel.value,
|
|
|
|
} as unknown as UserParams);
|
|
|
|
};
|
|
|
|
const onPageChange = (current: number) => {
|
|
|
|
fetchData({ ...basePagination, current });
|
|
|
|
};
|
|
|
|
|
|
|
|
fetchData();
|
|
|
|
const reset = () => {
|
|
|
|
formModel.value = generateFormModel();
|
|
|
|
};
|
|
|
|
|
|
|
|
const handleSelectDensity = (
|
|
|
|
val: string | number | Record<string, any> | undefined,
|
|
|
|
e: Event
|
|
|
|
) => {
|
|
|
|
size.value = val as SizeProps;
|
|
|
|
};
|
|
|
|
|
|
|
|
const handleChange = (
|
|
|
|
checked: boolean | (string | boolean | number)[],
|
|
|
|
column: Column,
|
|
|
|
index: number
|
|
|
|
) => {
|
|
|
|
if (!checked) {
|
|
|
|
cloneColumns.value = showColumns.value.filter(
|
|
|
|
(item) => item.dataIndex !== column.dataIndex
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
cloneColumns.value.splice(index, 0, column);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const exchangeArray = <T extends Array<any>>(
|
|
|
|
array: T,
|
|
|
|
beforeIdx: number,
|
|
|
|
newIdx: number,
|
|
|
|
isDeep = false
|
|
|
|
): T => {
|
|
|
|
const newArray = isDeep ? cloneDeep(array) : array;
|
|
|
|
if (beforeIdx > -1 && newIdx > -1) {
|
|
|
|
// 先替换后面的,然后拿到替换的结果替换前面的
|
|
|
|
newArray.splice(
|
|
|
|
beforeIdx,
|
|
|
|
1,
|
|
|
|
newArray.splice(newIdx, 1, newArray[beforeIdx]).pop()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return newArray;
|
|
|
|
};
|
|
|
|
|
|
|
|
const popupVisibleChange = (val: boolean) => {
|
|
|
|
if (val) {
|
|
|
|
nextTick(() => {
|
|
|
|
const el = document.getElementById('tableSetting') as HTMLElement;
|
|
|
|
const sortable = new Sortable(el, {
|
|
|
|
onEnd(e: any) {
|
|
|
|
const { oldIndex, newIndex } = e;
|
|
|
|
exchangeArray(cloneColumns.value, oldIndex, newIndex);
|
|
|
|
exchangeArray(showColumns.value, oldIndex, newIndex);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
const handleDelete = async (record: UserRecord) => {
|
|
|
|
const res = await remove(record.id);
|
|
|
|
if (res.status === 200) {
|
|
|
|
Message.success({
|
|
|
|
content: '删除成功',
|
|
|
|
duration: 5 * 1000,
|
|
|
|
});
|
|
|
|
search();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
watch(
|
|
|
|
() => columns.value,
|
|
|
|
(val) => {
|
|
|
|
cloneColumns.value = cloneDeep(val);
|
|
|
|
cloneColumns.value.forEach((item, index) => {
|
|
|
|
item.checked = true;
|
|
|
|
});
|
|
|
|
showColumns.value = cloneDeep(cloneColumns.value);
|
|
|
|
},
|
|
|
|
{ deep: true, immediate: true }
|
|
|
|
);
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
export default {
|
|
|
|
name: 'User',
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped lang="less">
|
|
|
|
.container {
|
|
|
|
padding: 0 20px 20px 20px;
|
|
|
|
}
|
|
|
|
:deep(.arco-table-th) {
|
|
|
|
&:last-child {
|
|
|
|
.arco-table-th-item-title {
|
|
|
|
margin-left: 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.action-icon {
|
|
|
|
margin-left: 12px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.active {
|
|
|
|
color: #0960bd;
|
|
|
|
background-color: #e3f4fc;
|
|
|
|
}
|
|
|
|
.setting {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
width: 200px;
|
|
|
|
.title {
|
|
|
|
margin-left: 12px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|