1
0

feat: 优化页面操作

This commit is contained in:
2025-09-06 15:50:24 +08:00
parent 2c889462c6
commit b7c0aaf727
3 changed files with 19 additions and 1 deletions

View File

@@ -41,6 +41,7 @@ function TaskScheduleList() {
},
],
),
loadDataOnce: true,
columns: [
{
name: 'templateName',

View File

@@ -76,7 +76,7 @@ function TaskScheduleSave() {
],
},
},
}
},
],
},
],

View File

@@ -74,6 +74,23 @@ function TaskTemplateSave() {
label: '重置',
actionType: 'reset',
},
{
type: 'action',
label: '返回',
onEvent: {
click: {
actions: [
{
actionType: 'custom',
// @ts-ignore
script: (context, action, event) => {
navigate(-1)
},
},
],
},
},
},
],
},
],