mirror of
https://gitee.com/hhyykk/ipms-sjy-ui.git
synced 2025-08-11 16:41:52 +08:00
🐛 修复 job 在 IDEA 报错的问题
This commit is contained in:
@@ -62,7 +62,10 @@ const formData = ref({
|
||||
name: '',
|
||||
handlerName: '',
|
||||
handlerParam: '',
|
||||
cronExpression: ''
|
||||
cronExpression: '',
|
||||
retryCount: undefined,
|
||||
retryInterval: undefined,
|
||||
monitorTimeout: undefined
|
||||
})
|
||||
const formRules = reactive({
|
||||
name: [{ required: true, message: '任务名称不能为空', trigger: 'blur' }],
|
||||
@@ -124,7 +127,10 @@ const resetForm = () => {
|
||||
name: '',
|
||||
handlerName: '',
|
||||
handlerParam: '',
|
||||
cronExpression: ''
|
||||
cronExpression: '',
|
||||
retryCount: undefined,
|
||||
retryInterval: undefined,
|
||||
monitorTimeout: undefined
|
||||
}
|
||||
formRef.value?.resetFields()
|
||||
}
|
||||
|
Reference in New Issue
Block a user