mirror of
https://github.com/MCSManager/MCSManager.git
synced 2024-11-27 06:59:54 +08:00
Optimize: code
This commit is contained in:
parent
95020bf62c
commit
a795a5e735
@ -111,16 +111,6 @@ let originRouterConfig: RouterConfig[] = [
|
||||
meta: {
|
||||
permission: ROLE.USER
|
||||
}
|
||||
// children: [
|
||||
// {
|
||||
// path: "/instances/schedule/new",
|
||||
// name: t("新增计划任务"),
|
||||
// component: LayoutContainer,
|
||||
// meta: {
|
||||
// permission: ROLE.USER
|
||||
// }
|
||||
// }
|
||||
// ]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -94,3 +94,9 @@ export const ScheduleType = {
|
||||
2: t("周期时间性任务"),
|
||||
3: t("指定时间性任务")
|
||||
};
|
||||
|
||||
export enum ScheduleCreateType {
|
||||
INTERVAL = "1",
|
||||
CYCLE = "2",
|
||||
SPECIFY = "3"
|
||||
}
|
||||
|
@ -180,7 +180,7 @@ onMounted(async () => {
|
||||
<a-row :gutter="[24, 24]" style="height: 100%">
|
||||
<a-col :span="24">
|
||||
<BetweenMenus>
|
||||
<template v-if="!isPhone" #left>
|
||||
<template #left>
|
||||
<a-typography-title class="mb-0" :level="4">
|
||||
<FieldTimeOutlined />
|
||||
{{ card.title }}
|
||||
@ -188,13 +188,13 @@ onMounted(async () => {
|
||||
</template>
|
||||
<template #right>
|
||||
<a-button class="mr-10" @click="toConsole()">
|
||||
{{ t("返回控制台") }}
|
||||
{{ t("返回") }}
|
||||
</a-button>
|
||||
<a-button class="mr-10" @click="refresh">
|
||||
{{ t("刷新") }}
|
||||
</a-button>
|
||||
<a-button type="primary" @click="newScheduleDialog?.openDialog()">
|
||||
{{ t("新增计划任务") }}
|
||||
{{ t("新增") }}
|
||||
</a-button>
|
||||
</template>
|
||||
</BetweenMenus>
|
||||
|
@ -2,7 +2,7 @@
|
||||
import { ref, reactive } from "vue";
|
||||
import { t } from "@/lang/i18n";
|
||||
import { message, notification } from "ant-design-vue";
|
||||
import { ScheduleAction, ScheduleType } from "@/types/const";
|
||||
import { ScheduleAction, ScheduleType, ScheduleCreateType } from "@/types/const";
|
||||
import type { NewScheduleTask } from "@/types";
|
||||
import { scheduleCreate } from "@/services/apis/instance";
|
||||
import { useScreen } from "@/hooks/useScreen";
|
||||
@ -30,12 +30,6 @@ const weeks = [
|
||||
{ label: t("周日"), value: 7 }
|
||||
];
|
||||
|
||||
enum TYPE {
|
||||
INTERVAL = "1",
|
||||
CYCLE = "2",
|
||||
SPECIFY = "3"
|
||||
}
|
||||
|
||||
interface NewTask extends NewScheduleTask {
|
||||
payload: string;
|
||||
weekend: string[];
|
||||
@ -43,17 +37,17 @@ interface NewTask extends NewScheduleTask {
|
||||
objTime: string;
|
||||
}
|
||||
|
||||
const newTaskOrigin = reactive<NewTask>({
|
||||
const newTaskOrigin = {
|
||||
name: "",
|
||||
action: "command",
|
||||
count: "",
|
||||
type: TYPE.INTERVAL,
|
||||
type: ScheduleCreateType.INTERVAL,
|
||||
time: "",
|
||||
payload: "",
|
||||
weekend: [],
|
||||
cycle: ["0", "0", "0"],
|
||||
objTime: ""
|
||||
});
|
||||
};
|
||||
|
||||
let newTask = reactive(_.cloneDeep(newTaskOrigin));
|
||||
|
||||
@ -118,9 +112,9 @@ const createRequest = async () => {
|
||||
|
||||
const submit = async () => {
|
||||
try {
|
||||
if (newTask.type === TYPE.INTERVAL) await createTaskTypeInterval();
|
||||
if (newTask.type === TYPE.CYCLE) await createTaskTypeCycle();
|
||||
if (newTask.type === TYPE.SPECIFY) await createTaskTypeSpecify();
|
||||
if (newTask.type === ScheduleCreateType.INTERVAL) await createTaskTypeInterval();
|
||||
if (newTask.type === ScheduleCreateType.CYCLE) await createTaskTypeCycle();
|
||||
if (newTask.type === ScheduleCreateType.SPECIFY) await createTaskTypeSpecify();
|
||||
} catch (err: any) {
|
||||
return message.error(err.message);
|
||||
}
|
||||
@ -180,7 +174,7 @@ defineExpose({
|
||||
</a-row>
|
||||
</a-form-item>
|
||||
|
||||
<a-form-item v-if="newTask.type === TYPE.INTERVAL">
|
||||
<a-form-item v-if="newTask.type === ScheduleCreateType.INTERVAL">
|
||||
<a-typography-paragraph>
|
||||
<a-typography-text>
|
||||
{{ t("每隔一定时间将执行一次,具体间隔可以仔细设置") }}
|
||||
@ -214,7 +208,7 @@ defineExpose({
|
||||
</a-row>
|
||||
</a-form-item>
|
||||
|
||||
<div v-if="newTask.type === TYPE.CYCLE">
|
||||
<div v-if="newTask.type === ScheduleCreateType.CYCLE">
|
||||
<a-form-item>
|
||||
<a-typography-title :level="5">{{ t("触发时间") }}</a-typography-title>
|
||||
<a-time-picker
|
||||
@ -234,7 +228,7 @@ defineExpose({
|
||||
</a-form-item>
|
||||
</div>
|
||||
|
||||
<a-form-item v-if="newTask.type === TYPE.SPECIFY">
|
||||
<a-form-item v-if="newTask.type === ScheduleCreateType.SPECIFY">
|
||||
<a-typography-title :level="5">{{ t("请选择日期和时间") }}</a-typography-title>
|
||||
<a-date-picker v-model:value="newTask.objTime" show-time size="large" class="w-100" />
|
||||
</a-form-item>
|
||||
|
Loading…
Reference in New Issue
Block a user