244 lines
7.2 KiB
Vue
244 lines
7.2 KiB
Vue
<script setup lang="tsx">
|
|
import { NButton, NPopconfirm } from 'naive-ui';
|
|
import { ref } from 'vue';
|
|
import { useBoolean } from '@sa/hooks';
|
|
import { fetchDeleteDictionary, fetchGetDictionaryConfigList, fetchUpdateDictionaryStatus } from '@/service/api';
|
|
import { $t } from '@/locales';
|
|
import { useAppStore } from '@/store/modules/app';
|
|
import { useTable, useTableOperate } from '@/hooks/common/table';
|
|
import { useAuth } from '@/hooks/business/auth';
|
|
import { downloadFetch } from '@/utils/download';
|
|
import DictionaryOperateDrawer from './modules/dictionary-operate-drawer.vue';
|
|
import DictionaryDetailDrawer from './modules/dictionary-detail-drawer.vue';
|
|
import DictionarySearch from './modules/dictionary-search.vue';
|
|
const { hasAuth } = useAuth();
|
|
const appStore = useAppStore();
|
|
|
|
/** 详情页属性数据 */
|
|
const detailData = ref<Api.DictionaryConfig.DictionaryConfig | null>();
|
|
/** 详情页可见状态 */
|
|
const { bool: detailVisible, setTrue: openDetail } = useBoolean(false);
|
|
|
|
const { columns, columnChecks, data, getData, loading, mobilePagination, searchParams, resetSearchParams } = useTable({
|
|
apiFn: fetchGetDictionaryConfigList,
|
|
apiParams: {
|
|
page: 1,
|
|
size: 10,
|
|
dictName: '',
|
|
dictStatus: '',
|
|
dictType: '',
|
|
createTime: ''
|
|
},
|
|
columns: () => [
|
|
{
|
|
key: 'dictId',
|
|
title: $t('page.dictionary.dictionId'),
|
|
align: 'center',
|
|
width: 64
|
|
},
|
|
{
|
|
key: 'dictName',
|
|
title: $t('page.dictionary.dictionaryName'),
|
|
align: 'left',
|
|
width: 200,
|
|
render: row => {
|
|
function showDetailDrawer() {
|
|
detailData.value = row || null;
|
|
openDetail();
|
|
}
|
|
|
|
return (
|
|
<n-button text tag="a" type="primary" onClick={showDetailDrawer} class="ws-normal">
|
|
{row.groupName}
|
|
</n-button>
|
|
);
|
|
}
|
|
},
|
|
{
|
|
key: 'dictType',
|
|
title: $t('page.dictionary.dictionaryType'),
|
|
align: 'left',
|
|
width: 200,
|
|
render: row => {
|
|
if (row.type === null) {
|
|
return null;
|
|
}
|
|
// const label = $t(groupConfigTypeRecord[row.type!]);
|
|
return <p>政府部门/美国军方/美国海军</p>;
|
|
}
|
|
},
|
|
{
|
|
key: 'groupStatus',
|
|
title: $t('page.groupConfig.groupStatus'),
|
|
align: 'center',
|
|
width: 200,
|
|
render: row => {
|
|
const fetchFn = async (groupStatus: Api.Common.EnableStatusNumber, callback: (flag: boolean) => void) => {
|
|
const status = row.groupStatus === 1 ? 0 : 1;
|
|
const { error } = await fetchUpdateDictionaryStatus({ groupName: row.groupName, groupStatus: status });
|
|
if (!error) {
|
|
row.groupStatus = groupStatus;
|
|
window.$message?.success($t('common.updateSuccess'));
|
|
}
|
|
callback(!error);
|
|
};
|
|
return (
|
|
<StatusSwitch v-model:value={row.groupStatus} onSubmitted={fetchFn} disabled={hasAuth('R_USER') as boolean} />
|
|
);
|
|
}
|
|
},
|
|
{
|
|
key: 'idGeneratorMode',
|
|
title: $t('page.dictionary.remark'),
|
|
align: 'center',
|
|
width: 200,
|
|
render: row => {
|
|
if (row.idGeneratorMode === null) {
|
|
return null;
|
|
}
|
|
|
|
const label = $t(groupConfigIdModeRecord[row.idGeneratorMode!]);
|
|
|
|
// return <NTag type="primary">{label}</NTag>;
|
|
return '用户性别列表';
|
|
}
|
|
},
|
|
{
|
|
key: 'groupPartition',
|
|
title: $t('page.dictionary.createTime'),
|
|
align: 'center',
|
|
minWidth: 60
|
|
},
|
|
{
|
|
key: 'operate',
|
|
title: $t('common.operate'),
|
|
align: 'center',
|
|
width: 300,
|
|
render: row => {
|
|
if (hasAuth('R_USER')) {
|
|
return <></>;
|
|
}
|
|
return (
|
|
<div class="flex-center gap-8px">
|
|
<NButton type="primary" text ghost size="small" onClick={() => edit(row.id!)}>
|
|
{$t('common.edit')}
|
|
</NButton>
|
|
<n-divider vertical />
|
|
<NPopconfirm onPositiveClick={() => handleDelete(row.groupName!)}>
|
|
{{
|
|
default: () => $t('common.confirmDelete'),
|
|
trigger: () => (
|
|
<NButton type="error" text ghost size="small">
|
|
{$t('common.delete')}
|
|
</NButton>
|
|
)
|
|
}}
|
|
</NPopconfirm>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
]
|
|
});
|
|
|
|
const {
|
|
drawerVisible,
|
|
operateType,
|
|
editingData,
|
|
handleAdd,
|
|
handleEdit,
|
|
checkedRowKeys,
|
|
onDeleted
|
|
// closeDrawer
|
|
} = useTableOperate(data, getData);
|
|
|
|
function edit(id: string) {
|
|
handleEdit(id);
|
|
}
|
|
|
|
async function handleDelete(groupName: string) {
|
|
const { error } = await fetchDeleteDictionary(groupName);
|
|
if (error) return;
|
|
onDeleted();
|
|
}
|
|
|
|
function body(): Api.DictionaryConfig.ExportDictionaryConfig {
|
|
return {
|
|
groupName: searchParams.groupName,
|
|
groupStatus: searchParams.groupStatus,
|
|
groupIds: checkedRowKeys.value
|
|
};
|
|
}
|
|
|
|
function handleExport() {
|
|
downloadFetch('/group/export', body(), $t('page.groupConfig.title'));
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div class="min-h-500px flex-col-stretch gap-16px overflow-hidden lt-sm:overflow-auto">
|
|
<DictionarySearch v-model:model="searchParams" @reset="resetSearchParams" @search="getData" />
|
|
<DeleteAlert />
|
|
<NCard
|
|
:title="$t('page.groupConfig.title')"
|
|
:bordered="false"
|
|
size="small"
|
|
header-class="view-card-header"
|
|
class="sm:flex-1-hidden card-wrapper"
|
|
>
|
|
<template #header-extra>
|
|
<TableHeaderOperation
|
|
v-model:columns="columnChecks"
|
|
:loading="loading"
|
|
:show-add="hasAuth('R_ADMIN')"
|
|
:show-delete="false"
|
|
@add="handleAdd"
|
|
@refresh="getData"
|
|
>
|
|
<template #addAfter>
|
|
<FileUpload v-if="hasAuth('R_ADMIN')" action="/group/import" accept="application/json" @refresh="getData" />
|
|
<NPopconfirm @positive-click="handleExport">
|
|
<template #trigger>
|
|
<NButton size="small" ghost type="primary" :disabled="checkedRowKeys.length === 0 && hasAuth('R_USER')">
|
|
<template #icon>
|
|
<IconPajamasExport class="text-icon" />
|
|
</template>
|
|
{{ $t('common.export') }}
|
|
</NButton>
|
|
</template>
|
|
<template #default>
|
|
{{
|
|
checkedRowKeys.length === 0
|
|
? $t('common.exportAll')
|
|
: $t('common.exportPar', { num: checkedRowKeys.length })
|
|
}}
|
|
</template>
|
|
</NPopconfirm>
|
|
</template>
|
|
</TableHeaderOperation>
|
|
</template>
|
|
<NDataTable
|
|
v-model:checked-row-keys="checkedRowKeys"
|
|
:columns="columns"
|
|
:data="data"
|
|
:flex-height="!appStore.isMobile"
|
|
:scroll-x="962"
|
|
:loading="loading"
|
|
remote
|
|
:row-key="row => row.id"
|
|
:pagination="mobilePagination"
|
|
class="sm:h-full"
|
|
/>
|
|
<DictionaryOperateDrawer
|
|
v-model:visible="drawerVisible"
|
|
:operate-type="operateType"
|
|
:row-data="editingData"
|
|
@submitted="getData"
|
|
/>
|
|
<DictionaryDetailDrawer v-model:visible="detailVisible" :row-data="detailData" />
|
|
</NCard>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|