新增预警页面

This commit is contained in:
2025-12-15 22:57:11 +08:00
parent 7da14e282e
commit 55d02106cb
11 changed files with 159 additions and 88 deletions

View File

@@ -56,4 +56,3 @@ export const bizMailAttachmentsImportData = (
export const bizMailAttachmentsDelete = (params?: BizMailAttachments | any) =>
defHttp.get<BizMailAttachments>({ url: adminPath + '/biz/mailAttachments/delete', params });

View File

@@ -12,6 +12,7 @@ const { adminPath } = useGlobSetting();
export interface BizQuickLogin extends BasicModel<BizQuickLogin> {
createTime?: string; // 创建时间
systemName: string; // 系统名称
systemType: string; // 系统类型
homepageUrl: string; // 首页地址
iconClass: string; // 图标类名
iconColor: string; // 图标颜色

View File

@@ -36,8 +36,6 @@
import ChartLineType from './components/ChartLineType.vue';
import ChartLineRatio from './components/ChartLineRatio.vue';
const FormValues = ref<Record<string, any>>({
cycleType: 'M'
});

View File

@@ -50,8 +50,17 @@
maxlength: 100,
},
required: true,
colProps: { md: 24, lg: 24 },
},
{
label: t('系统类型'),
field: 'systemType',
component: 'Select',
componentProps: {
dictType: 'system_type',
allowClear: true,
},
required: true,
},
{
label: t('首页地址'),
field: 'homepageUrl',

View File

@@ -99,6 +99,15 @@
align: 'left',
slot: 'slotBizKey',
},
{
title: t('系统类型'),
dataIndex: 'systemType',
key: 'a.system_type',
sorter: true,
width: 200,
align: 'left',
dictType: 'system_type'
},
{
title: t('首页地址'),
dataIndex: 'homepageUrl',