新增预警页面
This commit is contained in:
@@ -56,4 +56,3 @@ export const bizMailAttachmentsImportData = (
|
||||
|
||||
export const bizMailAttachmentsDelete = (params?: BizMailAttachments | any) =>
|
||||
defHttp.get<BizMailAttachments>({ url: adminPath + '/biz/mailAttachments/delete', params });
|
||||
|
||||
|
||||
@@ -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; // 图标颜色
|
||||
|
||||
@@ -36,8 +36,6 @@
|
||||
import ChartLineType from './components/ChartLineType.vue';
|
||||
import ChartLineRatio from './components/ChartLineRatio.vue';
|
||||
|
||||
|
||||
|
||||
const FormValues = ref<Record<string, any>>({
|
||||
cycleType: 'M'
|
||||
});
|
||||
|
||||
@@ -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',
|
||||
|
||||
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user