1011 lines
30 KiB
Vue
1011 lines
30 KiB
Vue
<script setup lang="ts">
|
||
import { useRoute, useRouter } from 'vue-router';
|
||
import { getLocalColor, changePrimaryColor } from '@/hooks/useTheme';
|
||
import { reactive, ref, onMounted, toRaw } from 'vue';
|
||
import { PageContainer } from 'antdv-pro-layout';
|
||
import { Form, message, Modal } from 'ant-design-vue/lib';
|
||
import { SizeType } from 'ant-design-vue/lib/config-provider';
|
||
import { MenuInfo } from 'ant-design-vue/lib/menu/src/interface';
|
||
import { ColumnsType } from 'ant-design-vue/lib/table';
|
||
import {
|
||
exportData,
|
||
listData,
|
||
getData,
|
||
delData,
|
||
addData,
|
||
updateData,
|
||
} from '@/api/system/dict/data';
|
||
import { getDictOptionselect, getType } from '@/api/system/dict/type';
|
||
import { saveAs } from 'file-saver';
|
||
import { parseDateToStr } from '@/utils/date-utils';
|
||
import useTabsStore from '@/store/modules/tabs';
|
||
import useDictStore from '@/store/modules/dict';
|
||
import { RESULT_CODE_SUCCESS } from '@/constants/result-constants';
|
||
import useI18n from '@/hooks/useI18n';
|
||
const { t, currentLocale } = useI18n();
|
||
const tabsStore = useTabsStore();
|
||
const { parseDataDict, getDict } = useDictStore();
|
||
const route = useRoute();
|
||
const router = useRouter();
|
||
|
||
// 获取地址栏参数
|
||
const dictId = route.params && (route.params.dictId as string);
|
||
|
||
const zh = currentLocale.value === 'zh_CN';
|
||
|
||
let color = ref<string>(getLocalColor());
|
||
/**改变主题色 */
|
||
function fnColorChange(e: Event) {
|
||
const target = e.target as HTMLInputElement;
|
||
if (target.nodeName === 'INPUT') {
|
||
changePrimaryColor(target.value ?? '#1890ff');
|
||
} else {
|
||
changePrimaryColor();
|
||
}
|
||
color.value = getLocalColor();
|
||
}
|
||
|
||
/**标签类型数据固定项 */
|
||
const tagTypeOptions = ref([
|
||
{ value: '', label: zh ? '普通文本' : 'Plain text' },
|
||
{ value: 'default', label: zh ? '默认(default)' : 'Default' },
|
||
{ value: 'blue ', label: zh ? '蓝色(blue)' : 'Blue' },
|
||
{ value: 'cyan', label: zh ? '青色(cyan)' : 'Cyan' },
|
||
{ value: 'gold', label: zh ? '金色(gold)' : 'Gold' },
|
||
{ value: 'green', label: zh ? '绿色(green)' : 'Green' },
|
||
{ value: 'lime', label: zh ? '亮绿(lime)' : 'Lime' },
|
||
{ value: 'magenta', label: zh ? '紫红(magenta)' : 'Magenta' },
|
||
{ value: 'orange', label: zh ? '橘黄(orange)' : 'Orange' },
|
||
{ value: 'pink', label: zh ? '粉色(pink)' : 'Pink' },
|
||
{ value: 'purple', label: zh ? '紫色(purple)' : 'Purple' },
|
||
{ value: 'red', label: zh ? '红色(red)' : 'Red' },
|
||
{ value: 'yellow', label: zh ? '黄色(yellow)' : 'Yellow' },
|
||
{ value: 'geekblue', label: zh ? '深蓝(geekblue)' : 'Geekblue' },
|
||
{ value: 'volcano', label: zh ? '棕色(volcano)' : 'Volcano' },
|
||
{ value: 'processing', label: zh ? '进行(processing)' : 'Processing' },
|
||
{ value: 'warning', label: zh ? '警告(warning)' : 'Warning' },
|
||
{ value: 'error', label: zh ? '错误(error)' : 'Error' },
|
||
{ value: 'success', label: zh ? '成功(success)' : 'Success' },
|
||
]);
|
||
|
||
/**字典数据 */
|
||
let dict: {
|
||
/**数据状态 */
|
||
sysNormalDisable: DictType[];
|
||
/**字典名称 */
|
||
sysDictType: DictType[];
|
||
} = reactive({
|
||
sysNormalDisable: [],
|
||
sysDictType: [],
|
||
});
|
||
|
||
/**查询参数 */
|
||
let queryParams = reactive({
|
||
/**字典名称 */
|
||
dictType: '',
|
||
/**数据标签 */
|
||
dictLabel: '',
|
||
/**数据状态 */
|
||
status: undefined,
|
||
/**当前页数 */
|
||
pageNum: 1,
|
||
/**每页条数 */
|
||
pageSize: 20,
|
||
});
|
||
|
||
/**查询参数重置 */
|
||
function fnQueryReset() {
|
||
if (dictId && dictId !== '0') {
|
||
queryParams = Object.assign(queryParams, {
|
||
dictLabel: '',
|
||
status: undefined,
|
||
pageNum: 1,
|
||
pageSize: 20,
|
||
});
|
||
} else {
|
||
queryParams = Object.assign(queryParams, {
|
||
dictType: '',
|
||
dictLabel: '',
|
||
status: undefined,
|
||
pageNum: 1,
|
||
pageSize: 20,
|
||
});
|
||
}
|
||
tablePagination.current = 1;
|
||
tablePagination.pageSize = 20;
|
||
fnGetList();
|
||
}
|
||
|
||
/**表格状态类型 */
|
||
type TabeStateType = {
|
||
/**加载等待 */
|
||
loading: boolean;
|
||
/**紧凑型 */
|
||
size: SizeType;
|
||
/**搜索栏 */
|
||
seached: boolean;
|
||
/**记录数据 */
|
||
data: object[];
|
||
/**勾选记录 */
|
||
selectedRowKeys: (string | number)[];
|
||
};
|
||
|
||
/**表格状态 */
|
||
let tableState: TabeStateType = reactive({
|
||
loading: false,
|
||
size: 'middle',
|
||
seached: true,
|
||
data: [],
|
||
selectedRowKeys: [],
|
||
});
|
||
|
||
/**表格字段列 */
|
||
let tableColumns: ColumnsType = [
|
||
{
|
||
title: t('views.system.dictData.dictCode'),
|
||
dataIndex: 'dictCode',
|
||
align: 'left',
|
||
width: 100,
|
||
},
|
||
{
|
||
title: t('views.system.dictData.dictLabel'),
|
||
dataIndex: 'dictLabel',
|
||
align: 'left',
|
||
width: 200,
|
||
},
|
||
{
|
||
title: t('views.system.dictData.dictValue'),
|
||
dataIndex: 'dictValue',
|
||
align: 'left',
|
||
width: 200,
|
||
},
|
||
{
|
||
title: t('views.system.dictData.dictSort'),
|
||
dataIndex: 'dictSort',
|
||
align: 'left',
|
||
width: 100,
|
||
},
|
||
{
|
||
title: t('views.system.dictData.status'),
|
||
dataIndex: 'status',
|
||
key: 'status',
|
||
align: 'left',
|
||
width: 100,
|
||
},
|
||
{
|
||
title: t('views.system.dictData.createTime'),
|
||
dataIndex: 'createTime',
|
||
align: 'left',
|
||
width: 150,
|
||
customRender(opt) {
|
||
if (+opt.value <= 0) return '';
|
||
return parseDateToStr(+opt.value);
|
||
},
|
||
},
|
||
{
|
||
title: t('common.operate'),
|
||
key: 'dictCode',
|
||
align: 'left',
|
||
},
|
||
];
|
||
|
||
/**表格分页器参数 */
|
||
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: total }),
|
||
onChange: (page: number, pageSize: number) => {
|
||
tablePagination.current = page;
|
||
tablePagination.pageSize = pageSize;
|
||
queryParams.pageNum = page;
|
||
queryParams.pageSize = pageSize;
|
||
fnGetList();
|
||
},
|
||
});
|
||
|
||
/**表格紧凑型变更操作 */
|
||
function fnTableSize({ key }: MenuInfo) {
|
||
tableState.size = key as SizeType;
|
||
}
|
||
|
||
/**表格多选 */
|
||
function fnTableSelectedRowKeys(keys: (string | number)[]) {
|
||
tableState.selectedRowKeys = keys;
|
||
}
|
||
|
||
/**对话框对象信息状态类型 */
|
||
type ModalStateType = {
|
||
/**详情框是否显示 */
|
||
visibleByView: boolean;
|
||
/**新增框或修改框是否显示 */
|
||
visibleByEdit: boolean;
|
||
/**标题 */
|
||
title: string;
|
||
/**表单数据 */
|
||
from: Record<string, any>;
|
||
/**确定按钮 loading */
|
||
confirmLoading: boolean;
|
||
};
|
||
|
||
/**对话框对象信息状态 */
|
||
let modalState: ModalStateType = reactive({
|
||
visibleByView: false,
|
||
visibleByEdit: false,
|
||
title: '字典数据',
|
||
from: {
|
||
dictCode: undefined,
|
||
dictLabel: '',
|
||
dictSort: 0,
|
||
dictType: 'sys_oper_type',
|
||
dictValue: '',
|
||
tagClass: '',
|
||
tagType: '',
|
||
remark: '',
|
||
status: '0',
|
||
createTime: 0,
|
||
createBy: undefined,
|
||
},
|
||
confirmLoading: false,
|
||
});
|
||
|
||
/**对话框内表单属性和校验规则 */
|
||
const modalStateFrom = Form.useForm(
|
||
modalState.from,
|
||
reactive({
|
||
dictLabel: [
|
||
{
|
||
required: true,
|
||
min: 1,
|
||
max: 50,
|
||
message: t('views.system.dictData.dictLabelPleac'),
|
||
},
|
||
],
|
||
dictValue: [
|
||
{
|
||
required: true,
|
||
min: 1,
|
||
max: 50,
|
||
message: t('views.system.dictData.dictValuePleac'),
|
||
},
|
||
],
|
||
})
|
||
);
|
||
|
||
/**
|
||
* 对话框弹出显示为 查看
|
||
* @param row 调度日志信息对象
|
||
*/
|
||
function fnModalVisibleByVive(row: Record<string, string>) {
|
||
modalState.from = Object.assign(modalState.from, row);
|
||
modalState.title = t('views.system.dictData.viewInfo');
|
||
modalState.visibleByView = true;
|
||
}
|
||
|
||
/**
|
||
* 对话框弹出显示为 新增或者修改
|
||
* @param dictCode 数据编号id, 不传为新增
|
||
*/
|
||
function fnModalVisibleByEdit(dictCode?: string | number, record?: any) {
|
||
console.log(record);
|
||
if (!dictCode) {
|
||
modalStateFrom.resetFields();
|
||
modalState.from.dictType = queryParams.dictType;
|
||
modalState.title = t('views.system.dictData.addInfo');
|
||
modalState.visibleByEdit = true;
|
||
} else {
|
||
if (modalState.confirmLoading) return;
|
||
const hide = message.loading(t('common.loading'), 0);
|
||
modalState.confirmLoading = true;
|
||
getData(dictCode).then(res => {
|
||
modalState.confirmLoading = false;
|
||
hide();
|
||
if (res.code === RESULT_CODE_SUCCESS) {
|
||
modalState.from = Object.assign(modalState.from, res.data);
|
||
modalState.title = t('views.system.dictData.editInfo');
|
||
modalState.visibleByEdit = true;
|
||
} else {
|
||
message.error(t('views.system.dictData.viewInfoErr'), 2);
|
||
}
|
||
});
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 对话框弹出确认执行函数
|
||
* 进行表达规则校验
|
||
*/
|
||
function fnModalOk() {
|
||
modalStateFrom
|
||
.validate()
|
||
.then(() => {
|
||
modalState.confirmLoading = true;
|
||
const from = toRaw(modalState.from);
|
||
const dictData = from.dictCode ? updateData(from) : addData(from);
|
||
const key = 'dictData';
|
||
message.loading({ content: t('common.loading'), key });
|
||
dictData
|
||
.then(res => {
|
||
if (res.code === RESULT_CODE_SUCCESS) {
|
||
message.success({
|
||
content: t('common.msgSuccess', { msg: modalState.title }),
|
||
key,
|
||
duration: 2,
|
||
});
|
||
modalState.visibleByEdit = false;
|
||
modalStateFrom.resetFields();
|
||
fnGetList();
|
||
} else {
|
||
message.error({
|
||
content: `${res.msg}`,
|
||
key,
|
||
duration: 2,
|
||
});
|
||
}
|
||
})
|
||
.finally(() => {
|
||
modalState.confirmLoading = false;
|
||
});
|
||
})
|
||
.catch(e => {
|
||
message.error(t('common.errorFields', { num: e.errorFields.length }), 2);
|
||
});
|
||
}
|
||
|
||
/**
|
||
* 对话框弹出关闭执行函数
|
||
* 进行表达规则校验
|
||
*/
|
||
function fnModalCancel() {
|
||
modalState.visibleByEdit = false;
|
||
modalState.visibleByView = false;
|
||
modalStateFrom.resetFields();
|
||
}
|
||
|
||
/**
|
||
* 字典删除
|
||
* @param dictCode 字典代码
|
||
*/
|
||
function fnRecordDelete(dictCode: string = '0') {
|
||
if (dictCode === '0') {
|
||
dictCode = tableState.selectedRowKeys.join(',');
|
||
}
|
||
Modal.confirm({
|
||
title: t('common.tipTitle'),
|
||
content: t('views.system.dictData.delTip', { txt: dictCode }),
|
||
onOk() {
|
||
const key = 'delData';
|
||
message.loading({ content: t('common.loading'), key });
|
||
delData(dictCode).then(res => {
|
||
if (res.code === RESULT_CODE_SUCCESS) {
|
||
message.success({
|
||
content: t('views.system.dictData.delOk'),
|
||
key,
|
||
duration: 2,
|
||
});
|
||
fnGetList();
|
||
} else {
|
||
message.error({
|
||
content: `${res.msg}`,
|
||
key: key,
|
||
duration: 2,
|
||
});
|
||
}
|
||
});
|
||
},
|
||
});
|
||
}
|
||
|
||
/**列表导出 */
|
||
function fnExportList() {
|
||
Modal.confirm({
|
||
title: t('common.tipTitle'),
|
||
content: t('views.system.dictData.exportTip'),
|
||
onOk() {
|
||
const key = 'exportData';
|
||
message.loading({ content: t('common.loading'), key });
|
||
exportData(toRaw(queryParams)).then(res => {
|
||
if (res.code === RESULT_CODE_SUCCESS) {
|
||
message.success({
|
||
content: t('views.system.dictData.exportOk'),
|
||
key,
|
||
duration: 2,
|
||
});
|
||
saveAs(res.data, `dict_data_${Date.now()}.xlsx`);
|
||
} else {
|
||
message.error({
|
||
content: `${res.msg}`,
|
||
key,
|
||
duration: 2,
|
||
});
|
||
}
|
||
});
|
||
},
|
||
});
|
||
}
|
||
|
||
/**关闭跳转 */
|
||
function fnClose() {
|
||
const to = tabsStore.tabClose(route.path);
|
||
if (to) {
|
||
router.push(to);
|
||
} else {
|
||
router.back();
|
||
}
|
||
}
|
||
|
||
/**查询字典数据列表, pageNum初始页数 */
|
||
function fnGetList(pageNum?: number) {
|
||
if (tableState.loading) return;
|
||
tableState.loading = true;
|
||
if (pageNum) {
|
||
queryParams.pageNum = pageNum;
|
||
}
|
||
listData(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;
|
||
});
|
||
}
|
||
|
||
onMounted(() => {
|
||
// 初始字典数据
|
||
Promise.allSettled([
|
||
getDict('sys_normal_disable'),
|
||
getDictOptionselect(),
|
||
]).then(resArr => {
|
||
if (resArr[0].status === 'fulfilled') {
|
||
dict.sysNormalDisable = resArr[0].value;
|
||
}
|
||
if (resArr[1].status === 'fulfilled') {
|
||
const dicts = resArr[1].value;
|
||
if (dicts.code === RESULT_CODE_SUCCESS) {
|
||
dict.sysDictType = dicts.data;
|
||
}
|
||
}
|
||
});
|
||
// 指定字典id列表数据
|
||
if (dictId && dictId !== '0') {
|
||
getType(dictId).then(res => {
|
||
if (res.code === RESULT_CODE_SUCCESS && res.data) {
|
||
queryParams.dictType = res.data.dictType;
|
||
fnGetList();
|
||
} else {
|
||
message.error(t('views.system.dictData.typeDataErr'), 3);
|
||
}
|
||
});
|
||
} else {
|
||
// 获取列表数据
|
||
fnGetList();
|
||
}
|
||
});
|
||
</script>
|
||
|
||
<template>
|
||
<PageContainer>
|
||
<a-card
|
||
v-show="tableState.seached"
|
||
:bordered="false"
|
||
:body-style="{ marginBottom: '24px', paddingBottom: 0 }"
|
||
>
|
||
<!-- 表格搜索栏 -->
|
||
<a-form :model="queryParams" name="queryParams" layout="horizontal">
|
||
<a-row :gutter="16">
|
||
<a-col :lg="6" :md="12" :xs="24" v-if="dictId !== '0'">
|
||
<a-form-item
|
||
:label="t('views.system.dictData.dictType')"
|
||
name="dictType"
|
||
>
|
||
<a-select
|
||
v-model:value="queryParams.dictType"
|
||
:disabled="dictId !== '0'"
|
||
:placeholder="t('common.selectPlease')"
|
||
:options="dict.sysDictType"
|
||
>
|
||
</a-select>
|
||
</a-form-item>
|
||
</a-col>
|
||
<a-col :lg="6" :md="12" :xs="24">
|
||
<a-form-item
|
||
:label="t('views.system.dictData.dictLabel')"
|
||
name="dictLabel"
|
||
>
|
||
<a-input
|
||
v-model:value="queryParams.dictLabel"
|
||
allow-clear
|
||
:placeholder="t('common.inputPlease')"
|
||
></a-input>
|
||
</a-form-item>
|
||
</a-col>
|
||
<a-col :lg="6" :md="12" :xs="24">
|
||
<a-form-item
|
||
:label="t('views.system.dictData.status')"
|
||
name="status"
|
||
>
|
||
<a-select
|
||
v-model:value="queryParams.status"
|
||
allow-clear
|
||
:placeholder="t('common.selectPlease')"
|
||
:options="dict.sysNormalDisable"
|
||
>
|
||
</a-select>
|
||
</a-form-item>
|
||
</a-col>
|
||
<a-col :lg="6" :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-card>
|
||
|
||
<a-card :bordered="false" :body-style="{ padding: '0px' }">
|
||
<!-- 插槽-卡片左侧侧 -->
|
||
<template #title>
|
||
<div class="button-container">
|
||
<a-button type="default" @click.prevent="fnClose()">
|
||
<template #icon><CloseOutlined /></template>
|
||
{{ t('common.close') }}
|
||
</a-button>
|
||
<a-button
|
||
type="primary"
|
||
@click.prevent="fnModalVisibleByEdit()"
|
||
v-perms:has="['system:dict:add']"
|
||
>
|
||
<template #icon><PlusOutlined /></template>
|
||
{{ t('common.addText') }}
|
||
</a-button>
|
||
<a-button
|
||
type="default"
|
||
danger
|
||
:disabled="tableState.selectedRowKeys.length <= 0"
|
||
@click.prevent="fnRecordDelete()"
|
||
v-perms:has="['system:dict:remove']"
|
||
>
|
||
<template #icon><DeleteOutlined /></template>
|
||
{{ t('common.deleteText') }}
|
||
</a-button>
|
||
<a-button
|
||
type="dashed"
|
||
@click.prevent="fnExportList()"
|
||
v-perms:has="['system:dict:export']"
|
||
>
|
||
<template #icon><ExportOutlined /></template>
|
||
{{ t('common.export') }}
|
||
</a-button>
|
||
</div>
|
||
</template>
|
||
|
||
<!-- 插槽-卡片右侧 -->
|
||
<template #extra>
|
||
<div class="button-container">
|
||
<a-tooltip>
|
||
<template #title>{{ t('common.searchBarText') }}</template>
|
||
<a-switch
|
||
v-model:checked="tableState.seached"
|
||
:checked-children="t('common.switch.show')"
|
||
:un-checked-children="t('common.switch.hide')"
|
||
size="small"
|
||
/>
|
||
</a-tooltip>
|
||
<a-tooltip>
|
||
<template #title>{{ t('common.reloadText') }}</template>
|
||
<a-button type="text" @click.prevent="fnGetList()">
|
||
<template #icon><ReloadOutlined /></template>
|
||
</a-button>
|
||
</a-tooltip>
|
||
<a-tooltip placement="topRight">
|
||
<template #title>{{ t('common.sizeText') }}</template>
|
||
<a-dropdown placement="bottomRight" trigger="click">
|
||
<a-button type="text">
|
||
<template #icon><ColumnHeightOutlined /></template>
|
||
</a-button>
|
||
<template #overlay>
|
||
<a-menu
|
||
:selected-keys="[tableState.size as string]"
|
||
@click="fnTableSize"
|
||
>
|
||
<a-menu-item key="default">
|
||
{{ t('common.size.default') }}
|
||
</a-menu-item>
|
||
<a-menu-item key="middle">
|
||
{{ t('common.size.middle') }}
|
||
</a-menu-item>
|
||
<a-menu-item key="small">
|
||
{{ t('common.size.small') }}
|
||
</a-menu-item>
|
||
</a-menu>
|
||
</template>
|
||
</a-dropdown>
|
||
</a-tooltip>
|
||
</div>
|
||
</template>
|
||
|
||
<!-- 表格列表 -->
|
||
<a-table
|
||
class="table"
|
||
row-key="dictCode"
|
||
:columns="tableColumns"
|
||
:loading="tableState.loading"
|
||
:data-source="tableState.data"
|
||
:size="tableState.size"
|
||
:scroll="{ x: tableColumns.length * 120 }"
|
||
: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 v-if="column.key === 'dictCode'">
|
||
<a-space :size="8" align="center">
|
||
<a-tooltip>
|
||
<template #title>{{ t('common.viewText') }}</template>
|
||
<a-button
|
||
type="link"
|
||
@click.prevent="fnModalVisibleByVive(record)"
|
||
v-perms:has="['system:dict:query']"
|
||
>
|
||
<template #icon><ProfileOutlined /></template>
|
||
</a-button>
|
||
</a-tooltip>
|
||
<a-tooltip>
|
||
<template #title>{{ t('common.editText') }}</template>
|
||
<a-button
|
||
type="link"
|
||
@click.prevent="fnModalVisibleByEdit(record.dictCode, record)"
|
||
v-perms:has="['system:dict:edit']"
|
||
>
|
||
<template #icon><FormOutlined /></template>
|
||
</a-button>
|
||
</a-tooltip>
|
||
<a-tooltip>
|
||
<template #title>{{ t('common.deleteText') }}</template>
|
||
<a-button
|
||
type="link"
|
||
@click.prevent="fnRecordDelete(record.dictCode)"
|
||
v-perms:has="['system:dict:remove']"
|
||
>
|
||
<template #icon><DeleteOutlined /></template>
|
||
</a-button>
|
||
</a-tooltip>
|
||
</a-space>
|
||
</template>
|
||
</template>
|
||
</a-table>
|
||
</a-card>
|
||
|
||
<!-- 详情框 -->
|
||
<a-modal
|
||
width="800px"
|
||
:visible="modalState.visibleByView"
|
||
:title="modalState.title"
|
||
@cancel="fnModalCancel"
|
||
>
|
||
<a-form layout="horizontal" :label-col="{ span: 6 }" :label-wrap="true">
|
||
<a-row :gutter="16">
|
||
<a-col :lg="12" :md="12" :xs="24">
|
||
<a-form-item
|
||
:label="t('views.system.dictData.dictType')"
|
||
name="dictType"
|
||
>
|
||
{{
|
||
dict.sysDictType.find(
|
||
item => item.value === modalState.from.dictType
|
||
)?.label
|
||
}}
|
||
</a-form-item>
|
||
</a-col>
|
||
<a-col :lg="12" :md="12" :xs="24">
|
||
<a-form-item
|
||
:label="t('views.system.dictData.createTime')"
|
||
name="createTime"
|
||
>
|
||
<span v-if="+modalState.from.createTime > 0">
|
||
{{ parseDateToStr(+modalState.from.createTime) }}
|
||
</span>
|
||
</a-form-item>
|
||
</a-col>
|
||
</a-row>
|
||
<a-row :gutter="16">
|
||
<a-col :lg="12" :md="12" :xs="24">
|
||
<a-form-item
|
||
:label="t('views.system.dictData.dictCode')"
|
||
name="dictCode"
|
||
>
|
||
{{ modalState.from.dictCode }}
|
||
</a-form-item>
|
||
</a-col>
|
||
<a-col :lg="12" :md="12" :xs="24">
|
||
<a-form-item
|
||
:label="t('views.system.dictData.status')"
|
||
name="status"
|
||
>
|
||
<DictTag
|
||
:options="dict.sysNormalDisable"
|
||
:value="modalState.from.status"
|
||
/>
|
||
</a-form-item>
|
||
</a-col>
|
||
</a-row>
|
||
<a-row :gutter="16">
|
||
<a-col :lg="12" :md="12" :xs="24">
|
||
<a-form-item
|
||
:label="t('views.system.dictData.dictLabel')"
|
||
name="dictLabel"
|
||
>
|
||
{{ modalState.from.dictLabel }}
|
||
</a-form-item>
|
||
</a-col>
|
||
<a-col :lg="12" :md="12" :xs="24">
|
||
<a-form-item
|
||
:label="t('views.system.dictData.dictValue')"
|
||
name="dictValue"
|
||
>
|
||
{{ modalState.from.dictValue }}
|
||
</a-form-item>
|
||
</a-col>
|
||
</a-row>
|
||
<a-row :gutter="16">
|
||
<a-col :lg="12" :md="12" :xs="24">
|
||
<a-form-item
|
||
:label="t('views.system.dictData.tagType')"
|
||
name="tagType"
|
||
>
|
||
<DictTag
|
||
:options="tagTypeOptions"
|
||
:value="modalState.from.tagType"
|
||
/>
|
||
</a-form-item>
|
||
</a-col>
|
||
<a-col :lg="12" :md="12" :xs="24">
|
||
<a-form-item
|
||
:label="t('views.system.dictData.tagClass')"
|
||
name="tagClass"
|
||
>
|
||
{{ modalState.from.tagClass }}
|
||
</a-form-item>
|
||
</a-col>
|
||
</a-row>
|
||
<a-row :gutter="16">
|
||
<a-col :lg="12" :md="12" :xs="24">
|
||
<a-form-item
|
||
:label="t('views.system.dictData.tagTypeShow')"
|
||
name="tagType"
|
||
>
|
||
<DictTag
|
||
:options="parseDataDict(modalState.from)"
|
||
:value="modalState.from.dictValue"
|
||
/>
|
||
</a-form-item>
|
||
</a-col>
|
||
<a-col :lg="12" :md="12" :xs="24">
|
||
<a-form-item
|
||
:label="t('views.system.dictData.dictSort')"
|
||
name="dictSort"
|
||
>
|
||
{{ modalState.from.dictSort }}
|
||
</a-form-item>
|
||
</a-col>
|
||
</a-row>
|
||
<a-form-item
|
||
:label="t('views.system.dictData.remark')"
|
||
name="remark"
|
||
:label-col="{ span: 3 }"
|
||
:label-wrap="true"
|
||
>
|
||
<a-textarea
|
||
v-model:value="modalState.from.remark"
|
||
:auto-size="{ minRows: 2, maxRows: 6 }"
|
||
:disabled="true"
|
||
/>
|
||
</a-form-item>
|
||
</a-form>
|
||
<template #footer>
|
||
<a-button key="cancel" @click="fnModalCancel">
|
||
{{ t('common.close') }}
|
||
</a-button>
|
||
</template>
|
||
</a-modal>
|
||
|
||
<!-- 新增框或修改框 -->
|
||
<a-modal
|
||
width="800px"
|
||
:keyboard="false"
|
||
:mask-closable="false"
|
||
:visible="modalState.visibleByEdit"
|
||
:title="modalState.title"
|
||
:confirm-loading="modalState.confirmLoading"
|
||
@ok="fnModalOk"
|
||
@cancel="fnModalCancel"
|
||
>
|
||
<a-form
|
||
name="modalStateFrom"
|
||
layout="horizontal"
|
||
:label-col="{ span: 6 }"
|
||
:label-wrap="true"
|
||
>
|
||
<a-row :gutter="16">
|
||
<a-col :lg="12" :md="12" :xs="24">
|
||
<a-form-item
|
||
:label="t('views.system.dictData.dictType')"
|
||
name="dictType"
|
||
>
|
||
<a-select
|
||
v-model:value="modalState.from.dictType"
|
||
default-value="sys_oper_type"
|
||
:placeholder="t('common.selectPlease')"
|
||
:options="dict.sysDictType"
|
||
:disabled="true"
|
||
>
|
||
</a-select>
|
||
</a-form-item>
|
||
</a-col>
|
||
<a-col :lg="12" :md="12" :xs="24">
|
||
<a-form-item
|
||
:label="t('views.system.dictData.status')"
|
||
name="status"
|
||
>
|
||
<a-select
|
||
v-model:value="modalState.from.status"
|
||
default-value="0"
|
||
:placeholder="t('common.selectPlease')"
|
||
:options="dict.sysNormalDisable"
|
||
>
|
||
</a-select>
|
||
</a-form-item>
|
||
</a-col>
|
||
</a-row>
|
||
<a-row :gutter="16">
|
||
<a-col :lg="12" :md="12" :xs="24">
|
||
<a-form-item
|
||
:label="t('views.system.dictData.dictLabel')"
|
||
name="dictLabel"
|
||
v-bind="modalStateFrom.validateInfos.dictLabel"
|
||
>
|
||
<a-input
|
||
v-model:value="modalState.from.dictLabel"
|
||
allow-clear
|
||
:placeholder="t('views.system.dictData.dictLabelPleac')"
|
||
></a-input>
|
||
</a-form-item>
|
||
</a-col>
|
||
<a-col :lg="12" :md="12" :xs="24">
|
||
<a-form-item
|
||
:label="t('views.system.dictData.dictValue')"
|
||
name="dictValue"
|
||
v-bind="modalStateFrom.validateInfos.dictValue"
|
||
>
|
||
<a-input
|
||
v-model:value="modalState.from.dictValue"
|
||
allow-clear
|
||
:placeholder="t('views.system.dictData.dictValuePleac')"
|
||
></a-input>
|
||
</a-form-item>
|
||
</a-col>
|
||
</a-row>
|
||
<!-- 首页状态取色器 -->
|
||
<a-row :gutter="16">
|
||
<a-col
|
||
:lg="12"
|
||
:md="12"
|
||
:xs="24"
|
||
v-if="modalState.from.dictType === 'index_status'"
|
||
>
|
||
<a-form-item
|
||
:label="t('views.system.dict.colorSelect')"
|
||
name="tagClass"
|
||
>
|
||
<a-input
|
||
v-model:value="modalState.from.tagClass"
|
||
type="color"
|
||
allow-clear
|
||
:placeholder="t('common.inputPlease')"
|
||
size="small"
|
||
></a-input>
|
||
</a-form-item>
|
||
</a-col>
|
||
<a-col :lg="12" :md="12" :xs="24" v-else>
|
||
<a-form-item
|
||
:label="t('views.system.dictData.tagType')"
|
||
name="tagType"
|
||
>
|
||
<a-select
|
||
v-model:value="modalState.from.tagType"
|
||
:placeholder="t('common.selectPlease')"
|
||
:options="tagTypeOptions"
|
||
>
|
||
</a-select>
|
||
</a-form-item>
|
||
</a-col>
|
||
<a-col :lg="12" :md="12" :xs="24">
|
||
<a-form-item
|
||
:label="t('views.system.dictData.dictSort')"
|
||
name="dictSort"
|
||
>
|
||
<a-input-number
|
||
v-model:value="modalState.from.dictSort"
|
||
:min="0"
|
||
:max="65535"
|
||
:placeholder="t('common.inputPlease')"
|
||
></a-input-number>
|
||
</a-form-item>
|
||
</a-col>
|
||
</a-row>
|
||
<!-- 非首页状态取色器 -->
|
||
<a-row :gutter="16" v-if="modalState.from.dictType !== 'index_status'">
|
||
<a-col :lg="12" :md="12" :xs="24">
|
||
<a-form-item
|
||
:label="t('views.system.dictData.tagClass')"
|
||
name="tagClass"
|
||
>
|
||
<a-input
|
||
v-model:value="modalState.from.tagClass"
|
||
allow-clear
|
||
:placeholder="t('common.inputPlease')"
|
||
></a-input>
|
||
</a-form-item>
|
||
</a-col>
|
||
</a-row>
|
||
<a-form-item
|
||
:label="t('views.system.dictData.remark')"
|
||
name="remark"
|
||
:label-col="{ span: 3 }"
|
||
:label-wrap="true"
|
||
>
|
||
<a-textarea
|
||
v-model:value="modalState.from.remark"
|
||
:auto-size="{ minRows: 4, maxRows: 6 }"
|
||
:maxlength="450"
|
||
:show-count="true"
|
||
/>
|
||
</a-form-item>
|
||
</a-form>
|
||
</a-modal>
|
||
</PageContainer>
|
||
</template>
|
||
|
||
<style lang="less" scoped>
|
||
.table :deep(.ant-pagination) {
|
||
padding: 0 24px;
|
||
}
|
||
</style>
|