新增前端vue
This commit is contained in:
@@ -28,6 +28,10 @@ export interface BizMonitorHost extends BasicModel<BizMonitorHost> {
|
||||
remark?: string; // 备注信息
|
||||
updateTime?: string; // 更新时间
|
||||
expiryDate: string; // 失效日期
|
||||
isAuth: string;
|
||||
runTargetNums?: number;
|
||||
checkTargetNums?: number;
|
||||
checkTargetPort?: number;
|
||||
ftenantId?: string; // 租户id
|
||||
fflowId?: string; // 流程id
|
||||
fflowTaskId?: string; // 流程任务主键
|
||||
|
||||
@@ -101,6 +101,36 @@
|
||||
},
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
label: t('是否认证'),
|
||||
field: 'isAuth',
|
||||
component: 'Select',
|
||||
componentProps: {
|
||||
dictType: 'is_auth',
|
||||
allowClear: true,
|
||||
},
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
label: t('监测端口'),
|
||||
field: 'checkTargetPort',
|
||||
component: 'InputNumber',
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
label: t('运行数量'),
|
||||
field: 'runTargetNums',
|
||||
defaultValue: 0,
|
||||
component: 'InputNumber',
|
||||
dynamicDisabled: true,
|
||||
},
|
||||
{
|
||||
label: t('监测数量'),
|
||||
field: 'checkTargetNums',
|
||||
defaultValue: 0,
|
||||
component: 'InputNumber',
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
label: t('地址类型'),
|
||||
field: 'locationType',
|
||||
|
||||
@@ -100,6 +100,36 @@
|
||||
},
|
||||
dynamicDisabled: true,
|
||||
},
|
||||
{
|
||||
label: t('是否认证'),
|
||||
field: 'isAuth',
|
||||
component: 'Select',
|
||||
componentProps: {
|
||||
dictType: 'is_auth',
|
||||
allowClear: true,
|
||||
},
|
||||
dynamicDisabled: true,
|
||||
},
|
||||
{
|
||||
label: t('监测端口'),
|
||||
field: 'checkTargetPort',
|
||||
component: 'InputNumber',
|
||||
dynamicDisabled: true,
|
||||
},
|
||||
{
|
||||
label: t('运行数量'),
|
||||
field: 'runTargetNums',
|
||||
defaultValue: 0,
|
||||
component: 'InputNumber',
|
||||
dynamicDisabled: true,
|
||||
},
|
||||
{
|
||||
label: t('监测数量'),
|
||||
field: 'checkTargetNums',
|
||||
defaultValue: 0,
|
||||
component: 'InputNumber',
|
||||
dynamicDisabled: true,
|
||||
},
|
||||
{
|
||||
label: t('地址类型'),
|
||||
field: 'locationType',
|
||||
|
||||
Reference in New Issue
Block a user