Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
admin
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
eace25d3
authored
Apr 01, 2023
by
YunaiV
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
REVIEW 定时任务(表单)
parent
f8878f7a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
60 deletions
+19
-60
src/components/Crontab/src/Crontab.vue
+4
-1
src/views/infra/job/JobForm.vue
+13
-57
src/views/infra/job/index.vue
+2
-2
No files found.
src/components/Crontab/src/Crontab.vue
View file @
eace25d3
...
...
@@ -6,7 +6,10 @@ interface shortcutsType {
value
:
string
}
const
props
=
defineProps
({
modelValue
:
{
type
:
String
,
default
:
'* * * * * ?'
},
modelValue
:
{
type
:
String
,
default
:
'* * * * * ?'
},
shortcuts
:
{
type
:
Array
as
PropType
<
shortcutsType
[]
>
,
default
:
()
=>
[]
}
})
const
defaultValue
=
ref
(
''
)
...
...
src/views/infra/job/
f
orm.vue
→
src/views/infra/job/
JobF
orm.vue
View file @
eace25d3
<
template
>
<!-- 添加或修改定时任务对话框 -->
<Dialog
:title=
"modelTitle"
v-model=
"modelVisible"
>
<el-form
ref=
"formRef"
...
...
@@ -22,14 +21,7 @@
<el-input
v-model=
"formData.handlerParam"
placeholder=
"请输入处理器的参数"
/>
</el-form-item>
<el-form-item
label=
"CRON 表达式"
prop=
"cronExpression"
>
<el-input
v-model=
"formData.cronExpression"
placeholder=
"请输入CRON 表达式"
>
<template
#
append
>
<el-button
type=
"primary"
@
click=
"handleShowCron"
>
生成表达式
<i
class=
"el-icon-time el-icon--right"
></i>
</el-button>
</
template
>
</el-input>
<crontab
v-model=
"formData.cronExpression"
/>
</el-form-item>
<el-form-item
label=
"重试次数"
prop=
"retryCount"
>
<el-input
...
...
@@ -47,30 +39,14 @@
<el-input
v-model=
"formData.monitorTimeout"
placeholder=
"请输入监控超时时间,单位:毫秒"
/>
</el-form-item>
</el-form>
<!-- 操作按钮 -->
<template
#
footer
>
<!-- 按钮:保存 -->
<div
class=
"dialog-footer"
>
<el-button
type=
"primary"
@
click=
"submitForm"
:loading=
"formLoading"
>
确 定
</el-button>
<el-button
@
click=
"modelVisible = false"
>
取 消
</el-button>
</div>
<el-button
type=
"primary"
@
click=
"submitForm"
:loading=
"formLoading"
>
确 定
</el-button>
<el-button
@
click=
"modelVisible = false"
>
取 消
</el-button>
</
template
>
</Dialog>
<el-dialog
title=
"Cron表达式生成器"
v-model=
"openCron"
append-to-body
class=
"scrollbar"
destroy-on-close
>
<crontab
@
hide=
"openCron = false"
@
fill=
"crontabFill"
:expression=
"expression"
/>
</el-dialog>
</template>
<
script
setup
lang=
"ts"
name=
"JobForm"
>
import
*
as
JobApi
from
'@/api/infra/job'
const
emit
=
defineEmits
([
'success'
,
'crontabFill'
])
// 定义 success 事件,用于操作成功后的回调
const
{
t
}
=
useI18n
()
// 国际化
const
message
=
useMessage
()
// 消息弹窗
...
...
@@ -78,25 +54,13 @@ const modelVisible = ref(false) // 弹窗的是否展示
const
modelTitle
=
ref
(
''
)
// 弹窗的标题
const
formLoading
=
ref
(
false
)
// 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
const
formType
=
ref
(
''
)
// 表单的类型:create - 新增;update - 修改
const
defaultFormData
=
{
const
formData
=
ref
(
{
id
:
undefined
,
name
:
''
,
status
:
0
,
handlerName
:
''
,
handlerParam
:
''
,
cronExpression
:
''
,
retryCount
:
0
,
retryInterval
:
0
,
monitorTimeout
:
0
,
createTime
:
new
Date
()
}
const
formData
=
ref
({
...
defaultFormData
})
// 是否显示Cron表达式弹出层
const
openCron
=
ref
(
false
)
// 传入的表达式
const
expression
=
ref
(
''
)
// 表单校验
cronExpression
:
''
})
const
formRules
=
reactive
({
name
:
[{
required
:
true
,
message
:
'任务名称不能为空'
,
trigger
:
'blur'
}],
handlerName
:
[{
required
:
true
,
message
:
'处理器的名字不能为空'
,
trigger
:
'blur'
}],
...
...
@@ -124,20 +88,8 @@ const open = async (type: string, id?: number) => {
}
defineExpose
({
open
})
// 提供 open 方法,用于打开弹窗
/** cron表达式按钮操作 */
const
handleShowCron
=
()
=>
{
console
.
info
(
123333333333
)
expression
.
value
=
formData
.
value
.
cronExpression
openCron
.
value
=
true
}
// cron表达式填充
const
crontabFill
=
(
expression
:
string
)
=>
{
formData
.
value
.
cronExpression
=
expression
emit
(
'crontabFill'
,
expression
)
}
// 提交按钮
/** 提交按钮 */
const
emit
=
defineEmits
([
'success'
])
// 定义 success 事件,用于操作成功后的回调
const
submitForm
=
async
()
=>
{
// 校验表单
if
(
!
formRef
)
return
...
...
@@ -165,7 +117,11 @@ const submitForm = async () => {
/** 重置表单 */
const
resetForm
=
()
=>
{
formData
.
value
=
{
...
defaultFormData
id
:
undefined
,
name
:
''
,
handlerName
:
''
,
handlerParam
:
''
,
cronExpression
:
''
}
formRef
.
value
?.
resetFields
()
}
...
...
src/views/infra/job/index.vue
View file @
eace25d3
...
...
@@ -139,14 +139,14 @@
</content-wrap>
<!-- 表单弹窗:添加/修改 -->
<
job-f
orm
ref=
"formRef"
@
success=
"getList"
/>
<
JobF
orm
ref=
"formRef"
@
success=
"getList"
/>
<!-- 表单弹窗:查看 -->
<job-view
ref=
"viewModalRef"
@
success=
"getList"
/>
</template>
<
script
setup
lang=
"ts"
name=
"Job"
>
import
{
DICT_TYPE
,
getIntDictOptions
}
from
'@/utils/dict'
import
{
checkPermi
}
from
'@/utils/permission'
import
JobForm
from
'./
f
orm.vue'
import
JobForm
from
'./
JobF
orm.vue'
import
JobView
from
'./view.vue'
import
download
from
'@/utils/download'
import
*
as
JobApi
from
'@/api/infra/job'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment