Showing
14 changed files
with
429 additions
and
343 deletions
src/api/schedue/model/schedueModel.ts
0 → 100644
1 | +import { BasicPageParams } from '/@/api/model/baseModel'; | ||
2 | +export type ReportQueryParam = BasicPageParams & SchedueParam; | ||
3 | + | ||
4 | +export type SchedueParam = { | ||
5 | + status: true; | ||
6 | + jobName: string; | ||
7 | + jobGroup: string; | ||
8 | + orderFiled: string; | ||
9 | + orderType: string; | ||
10 | + data?: any; | ||
11 | + code?: number; | ||
12 | +}; | ||
13 | + | ||
14 | +export interface ReportModel { | ||
15 | + code?: number; | ||
16 | + concurrent: number; | ||
17 | + createTime: string; | ||
18 | + creator: string; | ||
19 | + cronExpression: string; | ||
20 | + defaultConfig: string; | ||
21 | + description: string; | ||
22 | + enabled: true; | ||
23 | + icon: string; | ||
24 | + id: string; | ||
25 | + invokeTarget: string; | ||
26 | + jobGroup: string; | ||
27 | + jobName: string; | ||
28 | + misfirePolicy: number; | ||
29 | + name: string; | ||
30 | + roleIds: [string]; | ||
31 | + status: number; | ||
32 | + tenantExpireTime: string; | ||
33 | + tenantId: string; | ||
34 | + tenantProfileId: string; | ||
35 | + tenantStatus: string; | ||
36 | + updateTime: string; | ||
37 | + updater: string; | ||
38 | +} |
src/api/schedue/schedueManager.ts
0 → 100644
1 | +import { defHttp } from '/@/utils/http/axios'; | ||
2 | +import { ReportModel, ReportQueryParam } from './model/schedueModel'; | ||
3 | + | ||
4 | +enum ReportManagerApi { | ||
5 | + GET_REPORT_API = '/monitor/job/page', | ||
6 | + POST_REPORT_API = '/monitor/job/add', | ||
7 | + DELETE_REPORT_API = '/monitor/job', | ||
8 | + PUT_REPORT_API = '/monitor/job/update', | ||
9 | + PUTID_REPORT_API = '/monitor/job', | ||
10 | + RUN_REPORT_API = '/monitor/job/run', | ||
11 | + JOB_LOG_DETAIL_API = '/monitor/jobLog/get/', | ||
12 | + JOB_LOG_PAGE_API = '/monitor/jobLog/page', | ||
13 | + DELETE_LOG_API = '/monitor/jobLog', | ||
14 | + POST_LOG_CLEAN_API = '/monitor/jobLog/clean', | ||
15 | +} | ||
16 | + | ||
17 | +//分页 | ||
18 | +export const scheduePage = (params: ReportQueryParam) => { | ||
19 | + return defHttp.get<ReportQueryParam>({ | ||
20 | + url: ReportManagerApi.GET_REPORT_API, | ||
21 | + params, | ||
22 | + }); | ||
23 | +}; | ||
24 | + | ||
25 | +//删除 | ||
26 | +export const deleteSchedueManage = (ids: string[]) => { | ||
27 | + return defHttp.delete({ | ||
28 | + url: ReportManagerApi.DELETE_REPORT_API, | ||
29 | + data: { | ||
30 | + ids: ids, | ||
31 | + }, | ||
32 | + }); | ||
33 | +}; | ||
34 | + | ||
35 | +// 创建 | ||
36 | +export const createOrEditSchedueManage = (data) => { | ||
37 | + return defHttp.post<ReportModel>({ | ||
38 | + url: ReportManagerApi.POST_REPORT_API, | ||
39 | + data, | ||
40 | + }); | ||
41 | +}; | ||
42 | + | ||
43 | +// 编辑 | ||
44 | +export const putSchedueConfigManage = (data) => { | ||
45 | + return defHttp.post<ReportModel>({ | ||
46 | + url: ReportManagerApi.PUT_REPORT_API, | ||
47 | + data, | ||
48 | + }); | ||
49 | +}; | ||
50 | + | ||
51 | +// 修改状态 id status | ||
52 | +export const putSchedueByidAndStatusManage = (id, status) => { | ||
53 | + return defHttp.put<ReportModel>({ | ||
54 | + url: ReportManagerApi.PUTID_REPORT_API + '/changeStatus/' + id + '/' + status, | ||
55 | + }); | ||
56 | +}; | ||
57 | +//执行一次 | ||
58 | +export const postRunSchedueConfigManage = (id) => { | ||
59 | + return defHttp.post<ReportModel>({ | ||
60 | + url: ReportManagerApi.RUN_REPORT_API+'/'+id, | ||
61 | + }); | ||
62 | +}; | ||
63 | + | ||
64 | +/** | ||
65 | + * 调度日志 | ||
66 | + */ | ||
67 | + | ||
68 | +//分页 | ||
69 | +export const schedueLogPage = (params: ReportQueryParam) => { | ||
70 | + return defHttp.get<ReportQueryParam>({ | ||
71 | + url: ReportManagerApi.JOB_LOG_PAGE_API, | ||
72 | + params, | ||
73 | + }); | ||
74 | +}; | ||
75 | + | ||
76 | +//删除 | ||
77 | +export const deleteSchedueLogManage = (ids: string[]) => { | ||
78 | + return defHttp.delete({ | ||
79 | + url: ReportManagerApi.DELETE_LOG_API, | ||
80 | + data: { | ||
81 | + ids: ids, | ||
82 | + }, | ||
83 | + }); | ||
84 | +}; | ||
85 | + | ||
86 | +// 清空 | ||
87 | +export const schedueLogCleanPage = () => { | ||
88 | + return defHttp.post<ReportModel>({ | ||
89 | + url: ReportManagerApi.POST_LOG_CLEAN_API, | ||
90 | + }); | ||
91 | +}; | ||
92 | + | ||
93 | +//详情 | ||
94 | +export const schedueLogDetailPage = (jobId, id) => { | ||
95 | + return defHttp.get<ReportQueryParam>({ | ||
96 | + url: ReportManagerApi.JOB_LOG_DETAIL_API + '/' + jobId + '/' + id, | ||
97 | + }); | ||
98 | +}; |
@@ -135,7 +135,17 @@ | @@ -135,7 +135,17 @@ | ||
135 | }); | 135 | }); |
136 | const preTimeList = ref('执行预览,会忽略年份参数。'); | 136 | const preTimeList = ref('执行预览,会忽略年份参数。'); |
137 | 137 | ||
138 | - // cron表达式 | 138 | + //fix 去除字符串里的'W' 当选择工作日 会自动在后面加上W 比如1W 2W corn解析会报错 |
139 | + function Letter(str) { | ||
140 | + let result; | ||
141 | + let reg = /[W]+/; | ||
142 | + while ((result = str.match(reg))) { | ||
143 | + //判断str.match(reg)是否没有字母了 | ||
144 | + str = str.replace(result[0], ''); //替换掉字母 result[0] 是 str.match(reg)匹配到的字母 | ||
145 | + } | ||
146 | + return str; | ||
147 | + } | ||
148 | + // 最终生成的cron表达式 | ||
139 | const cronValueInner = computed(() => { | 149 | const cronValueInner = computed(() => { |
140 | let result: string[] = []; | 150 | let result: string[] = []; |
141 | if (!props.hideSecond) { | 151 | if (!props.hideSecond) { |
@@ -143,7 +153,7 @@ | @@ -143,7 +153,7 @@ | ||
143 | } | 153 | } |
144 | result.push(minute.value ? minute.value : '*'); | 154 | result.push(minute.value ? minute.value : '*'); |
145 | result.push(hour.value ? hour.value : '*'); | 155 | result.push(hour.value ? hour.value : '*'); |
146 | - result.push(day.value ? day.value : '*'); | 156 | + result.push(day.value ? Letter(day.value) : '*'); |
147 | result.push(month.value ? month.value : '*'); | 157 | result.push(month.value ? month.value : '*'); |
148 | result.push(week.value ? week.value : '?'); | 158 | result.push(week.value ? week.value : '?'); |
149 | if (!props.hideYear && !props.hideSecond) result.push(year.value ? year.value : '*'); | 159 | if (!props.hideYear && !props.hideSecond) result.push(year.value ? year.value : '*'); |
@@ -177,40 +187,6 @@ | @@ -177,40 +187,6 @@ | ||
177 | emitValue(newValue); | 187 | emitValue(newValue); |
178 | assignInput(); | 188 | assignInput(); |
179 | }); | 189 | }); |
180 | - | ||
181 | - // watch(minute, () => { | ||
182 | - // if (second.value === '*') { | ||
183 | - // second.value = '0' | ||
184 | - // } | ||
185 | - // }) | ||
186 | - // watch(hour, () => { | ||
187 | - // if (minute.value === '*') { | ||
188 | - // minute.value = '0' | ||
189 | - // } | ||
190 | - // }) | ||
191 | - // watch(day, () => { | ||
192 | - // if (day.value !== '?' && hour.value === '*') { | ||
193 | - // hour.value = '0' | ||
194 | - // } | ||
195 | - // }) | ||
196 | - // watch(week, () => { | ||
197 | - // if (week.value !== '?' && hour.value === '*') { | ||
198 | - // hour.value = '0' | ||
199 | - // } | ||
200 | - // }) | ||
201 | - // watch(month, () => { | ||
202 | - // if (day.value === '?' && week.value === '*') { | ||
203 | - // week.value = '1' | ||
204 | - // } else if (week.value === '?' && day.value === '*') { | ||
205 | - // day.value = '1' | ||
206 | - // } | ||
207 | - // }) | ||
208 | - // watch(year, () => { | ||
209 | - // if (month.value === '*') { | ||
210 | - // month.value = '1' | ||
211 | - // } | ||
212 | - // }) | ||
213 | - | ||
214 | assignInput(); | 190 | assignInput(); |
215 | formatValue(); | 191 | formatValue(); |
216 | calTriggerListInner(); | 192 | calTriggerListInner(); |
@@ -219,7 +195,7 @@ | @@ -219,7 +195,7 @@ | ||
219 | inputValues.second = second.value; | 195 | inputValues.second = second.value; |
220 | inputValues.minute = minute.value; | 196 | inputValues.minute = minute.value; |
221 | inputValues.hour = hour.value; | 197 | inputValues.hour = hour.value; |
222 | - inputValues.day = day.value; | 198 | + inputValues.day = Letter(day.value); |
223 | inputValues.month = month.value; | 199 | inputValues.month = month.value; |
224 | inputValues.week = week.value; | 200 | inputValues.week = week.value; |
225 | inputValues.year = year.value; | 201 | inputValues.year = year.value; |
1 | <template> | 1 | <template> |
2 | - <BasicModal @register="registerModal" title="Cron表达式" width="800px" @ok="onOk"> | 2 | + <BasicModal |
3 | + @register="registerModal" | ||
4 | + title="Cron表达式" | ||
5 | + width="800px" | ||
6 | + @cancel="onCancel" | ||
7 | + :footer="null" | ||
8 | + > | ||
3 | <EasyCron v-bind="attrs" /> | 9 | <EasyCron v-bind="attrs" /> |
10 | + <div style="float: right; margin-top: 2vh"> | ||
11 | + <Button type="default" @click="onCancel" class="mr-2">取消</Button> | ||
12 | + <Button type="primary" @click="onOk" class="mr-2">确认</Button> | ||
13 | + </div> | ||
4 | </BasicModal> | 14 | </BasicModal> |
5 | </template> | 15 | </template> |
6 | 16 | ||
@@ -8,21 +18,29 @@ | @@ -8,21 +18,29 @@ | ||
8 | import { defineComponent } from 'vue'; | 18 | import { defineComponent } from 'vue'; |
9 | import { useAttrs } from '/@/hooks/core/useAttrs'; | 19 | import { useAttrs } from '/@/hooks/core/useAttrs'; |
10 | import { BasicModal, useModalInner } from '/@/components/Modal'; | 20 | import { BasicModal, useModalInner } from '/@/components/Modal'; |
11 | - import EasyCron from './EasyCronInner.vue' | 21 | + import EasyCron from './EasyCronInner.vue'; |
22 | + import { Button } from '/@/components/Button'; | ||
12 | 23 | ||
13 | export default defineComponent({ | 24 | export default defineComponent({ |
14 | name: 'EasyCronModal', | 25 | name: 'EasyCronModal', |
15 | inheritAttrs: false, | 26 | inheritAttrs: false, |
16 | - components: { BasicModal, EasyCron }, | 27 | + components: { BasicModal, EasyCron, Button }, |
17 | setup() { | 28 | setup() { |
18 | const attrs = useAttrs(); | 29 | const attrs = useAttrs(); |
19 | const [registerModal, { closeModal }] = useModalInner(); | 30 | const [registerModal, { closeModal }] = useModalInner(); |
20 | 31 | ||
21 | function onOk() { | 32 | function onOk() { |
22 | - closeModal(); | 33 | + setTimeout(() => { |
34 | + closeModal(); | ||
35 | + }, 500); | ||
36 | + } | ||
37 | + function onCancel() { | ||
38 | + setTimeout(() => { | ||
39 | + closeModal(); | ||
40 | + }, 500); | ||
23 | } | 41 | } |
24 | 42 | ||
25 | - return { attrs, registerModal, onOk }; | 43 | + return { attrs, registerModal, onOk, onCancel }; |
26 | }, | 44 | }, |
27 | }); | 45 | }); |
28 | </script> | 46 | </script> |
@@ -36,7 +36,7 @@ | @@ -36,7 +36,7 @@ | ||
36 | <a-radio :value="TypeEnum.specify" v-bind="beforeRadioAttrs">指定</a-radio> | 36 | <a-radio :value="TypeEnum.specify" v-bind="beforeRadioAttrs">指定</a-radio> |
37 | <div class="list list-cn"> | 37 | <div class="list list-cn"> |
38 | <a-checkbox-group v-model:value="valueList"> | 38 | <a-checkbox-group v-model:value="valueList"> |
39 | - <template v-for="opt in weekOptions" :key="i"> | 39 | + <template v-for="opt in weekOptions" :key="opt.label"> |
40 | <a-checkbox :value="opt.value" v-bind="typeSpecifyAttrs">{{ opt.label }}</a-checkbox> | 40 | <a-checkbox :value="opt.value" v-bind="typeSpecifyAttrs">{{ opt.label }}</a-checkbox> |
41 | </template> | 41 | </template> |
42 | </a-checkbox-group> | 42 | </a-checkbox-group> |
@@ -107,7 +107,7 @@ const setting: ProjectConfig = { | @@ -107,7 +107,7 @@ const setting: ProjectConfig = { | ||
107 | // Fold trigger position | 107 | // Fold trigger position |
108 | trigger: TriggerEnum.HEADER, | 108 | trigger: TriggerEnum.HEADER, |
109 | // Turn on accordion mode, only show a menu | 109 | // Turn on accordion mode, only show a menu |
110 | - accordion: false, | 110 | + accordion: true, |
111 | // Switch page to close menu | 111 | // Switch page to close menu |
112 | closeMixSidebarOnChange: false, | 112 | closeMixSidebarOnChange: false, |
113 | // Module opening method ‘click’ |'hover' | 113 | // Module opening method ‘click’ |'hover' |
1 | import { ref } from 'vue'; | 1 | import { ref } from 'vue'; |
2 | -import { DescItem } from '/@/components/Description/index'; | ||
3 | import { BasicColumn, FormSchema } from '/@/components/Table'; | 2 | import { BasicColumn, FormSchema } from '/@/components/Table'; |
4 | import type { FormSchema as QFormSchema } from '/@/components/Form/index'; | 3 | import type { FormSchema as QFormSchema } from '/@/components/Form/index'; |
5 | import moment from 'moment'; | 4 | import moment from 'moment'; |
@@ -13,11 +12,7 @@ import { | @@ -13,11 +12,7 @@ import { | ||
13 | isMonth, | 12 | isMonth, |
14 | isEmpty, | 13 | isEmpty, |
15 | isDefultWeek, | 14 | isDefultWeek, |
16 | - isMin, | ||
17 | - isMax, | ||
18 | - isAvg, | ||
19 | - isSum, | ||
20 | - isCountAll, | 15 | + isFixedWeek, |
21 | } from './timeConfig'; | 16 | } from './timeConfig'; |
22 | import { AggregateDataEnum } from '../../device/localtion/cpns/TimePeriodForm/config'; | 17 | import { AggregateDataEnum } from '../../device/localtion/cpns/TimePeriodForm/config'; |
23 | 18 | ||
@@ -347,16 +342,6 @@ export const formSchema: QFormSchema[] = [ | @@ -347,16 +342,6 @@ export const formSchema: QFormSchema[] = [ | ||
347 | }; | 342 | }; |
348 | }, | 343 | }, |
349 | }, | 344 | }, |
350 | - // { | ||
351 | - // field: 'deviceAttr', | ||
352 | - // label: '设备属性', | ||
353 | - // component: 'Select', | ||
354 | - // componentProps: { | ||
355 | - // placeholder: '请选择设备属性', | ||
356 | - // }, | ||
357 | - // colProps: { span: 24 }, | ||
358 | - // slot: 'deviceAttr', | ||
359 | - // }, | ||
360 | { | 345 | { |
361 | field: 'dataCompare', | 346 | field: 'dataCompare', |
362 | label: '数据类型', | 347 | label: '数据类型', |
@@ -569,13 +554,7 @@ export const formSchema: QFormSchema[] = [ | @@ -569,13 +554,7 @@ export const formSchema: QFormSchema[] = [ | ||
569 | }; | 554 | }; |
570 | }, | 555 | }, |
571 | colProps: { span: 24 }, | 556 | colProps: { span: 24 }, |
572 | - ifShow: ({ values }) => | ||
573 | - (!isEmpty(values.agg) && !isDefultWeek(values.defaultWeek)) || | ||
574 | - isMin(values.agg) || | ||
575 | - isMax(values.agg) || | ||
576 | - isAvg(values.agg) || | ||
577 | - isSum(values.agg) || | ||
578 | - isCountAll(values.agg), | 557 | + ifShow: ({ values }) => isFixedWeek(values.defaultWeek) && !isEmpty(values.agg), |
579 | }, | 558 | }, |
580 | { | 559 | { |
581 | field: 'interval', | 560 | field: 'interval', |
@@ -593,157 +572,6 @@ export const formSchema: QFormSchema[] = [ | @@ -593,157 +572,6 @@ export const formSchema: QFormSchema[] = [ | ||
593 | }, | 572 | }, |
594 | ], | 573 | ], |
595 | }, | 574 | }, |
596 | - ifShow: ({ values }) => | ||
597 | - (!isEmpty(values.agg) && !isDefultWeek(values.defaultWeek)) || | ||
598 | - isMin(values.agg) || | ||
599 | - isMax(values.agg) || | ||
600 | - isAvg(values.agg) || | ||
601 | - isSum(values.agg) || | ||
602 | - isCountAll(values.agg), | ||
603 | - }, | ||
604 | -]; | ||
605 | - | ||
606 | -export const personSchema: DescItem[] = [ | ||
607 | - { | ||
608 | - field: 'b1', | ||
609 | - label: '任务编号:', | ||
610 | - }, | ||
611 | - { | ||
612 | - field: 'b2', | ||
613 | - label: '任务分组:', | ||
614 | - }, | ||
615 | - { | ||
616 | - field: 'b3', | ||
617 | - label: '任务名称:', | ||
618 | - }, | ||
619 | - { | ||
620 | - field: 'b4', | ||
621 | - label: '创建时间:', | ||
622 | - }, | ||
623 | - { | ||
624 | - field: 'b5', | ||
625 | - label: 'cron表达式:', | ||
626 | - }, | ||
627 | - { | ||
628 | - field: 'b6', | ||
629 | - label: '下次执行时间:', | ||
630 | - }, | ||
631 | - { | ||
632 | - field: 'b7', | ||
633 | - label: '调用目标方法:', | ||
634 | - }, | ||
635 | - { | ||
636 | - field: 'b8', | ||
637 | - label: '任务状态:', | ||
638 | - }, | ||
639 | - { | ||
640 | - field: 'b9', | ||
641 | - label: '是否并发:', | ||
642 | - }, | ||
643 | - { | ||
644 | - field: 'b10', | ||
645 | - label: '执行策略:', | ||
646 | - }, | ||
647 | -]; | ||
648 | - | ||
649 | -// 调度日志表格配置 | ||
650 | -export const columnSchedue: BasicColumn[] = [ | ||
651 | - { | ||
652 | - title: '日志编号', | ||
653 | - dataIndex: 'name', | ||
654 | - width: 80, | ||
655 | - }, | ||
656 | - { | ||
657 | - title: '任务名称', | ||
658 | - dataIndex: 'organizationId', | ||
659 | - width: 120, | ||
660 | - }, | ||
661 | - { | ||
662 | - title: '任务组名', | ||
663 | - dataIndex: 'dataCompare', | ||
664 | - width: 120, | ||
665 | - }, | ||
666 | - { | ||
667 | - title: '调用目标字符串', | ||
668 | - dataIndex: 'status', | ||
669 | - width: 120, | ||
670 | - }, | ||
671 | - { | ||
672 | - title: '日志信息', | ||
673 | - dataIndex: 'executeWay', | ||
674 | - width: 160, | ||
675 | - }, | ||
676 | - { | ||
677 | - title: '执行状态', | ||
678 | - dataIndex: 'devices', | ||
679 | - width: 160, | ||
680 | - }, | ||
681 | - { | ||
682 | - title: '执行时间', | ||
683 | - dataIndex: 'creator', | ||
684 | - width: 180, | ||
685 | - }, | ||
686 | -]; | ||
687 | - | ||
688 | -// 调度日志表格查询配置 | ||
689 | -export const searchSchedueFormSchema: FormSchema[] = [ | ||
690 | - { | ||
691 | - field: 'name', | ||
692 | - label: '任务名称', | ||
693 | - component: 'Input', | ||
694 | - colProps: { span: 4 }, | ||
695 | - componentProps: { | ||
696 | - maxLength: 36, | ||
697 | - placeholder: '请输入任务名称', | ||
698 | - }, | ||
699 | - }, | ||
700 | - { | ||
701 | - field: 'status', | ||
702 | - label: '任务组名', | ||
703 | - component: 'Select', | ||
704 | - colProps: { span: 4 }, | ||
705 | - componentProps: { | ||
706 | - options: [ | ||
707 | - { | ||
708 | - label: '默认', | ||
709 | - value: 1, | ||
710 | - }, | ||
711 | - { | ||
712 | - label: '系统', | ||
713 | - value: 0, | ||
714 | - }, | ||
715 | - ], | ||
716 | - placeholder: '请选择任务组名', | ||
717 | - }, | ||
718 | - }, | ||
719 | - { | ||
720 | - field: 'status1', | ||
721 | - label: '执行状态', | ||
722 | - component: 'Select', | ||
723 | - colProps: { span: 4 }, | ||
724 | - componentProps: { | ||
725 | - options: [ | ||
726 | - { | ||
727 | - label: '成功', | ||
728 | - value: 1, | ||
729 | - }, | ||
730 | - { | ||
731 | - label: '失败', | ||
732 | - value: 0, | ||
733 | - }, | ||
734 | - ], | ||
735 | - placeholder: '请选择执行状态', | ||
736 | - }, | ||
737 | - }, | ||
738 | - { | ||
739 | - field: 'sendTime', | ||
740 | - label: '执行时间', | ||
741 | - component: 'RangePicker', | ||
742 | - componentProps: { | ||
743 | - showTime: { | ||
744 | - defaultValue: [moment('00:00:00', 'HH:mm:ss'), moment('23:59:59', 'HH:mm:ss')], | ||
745 | - }, | ||
746 | - }, | ||
747 | - colProps: { span: 4 }, | 575 | + ifShow: ({ values }) => isFixedWeek(values.defaultWeek) && !isEmpty(values.agg), |
748 | }, | 576 | }, |
749 | ]; | 577 | ]; |
@@ -8,11 +8,19 @@ | @@ -8,11 +8,19 @@ | ||
8 | title="调度日志" | 8 | title="调度日志" |
9 | @cancel="handleCancel" | 9 | @cancel="handleCancel" |
10 | :showOkBtn="false" | 10 | :showOkBtn="false" |
11 | + destroyOnClose | ||
11 | > | 12 | > |
12 | <div> | 13 | <div> |
13 | <BasicTable @register="registerTable"> | 14 | <BasicTable @register="registerTable"> |
14 | <template #toolbar> | 15 | <template #toolbar> |
15 | - <a-button type="primary"> 导出 </a-button> | 16 | + <Popconfirm |
17 | + title="您确定要清空全部数据" | ||
18 | + ok-text="确定" | ||
19 | + cancel-text="取消" | ||
20 | + @confirm="handleClear" | ||
21 | + > | ||
22 | + <a-button type="primary"> 清空 </a-button> | ||
23 | + </Popconfirm> | ||
16 | <Popconfirm title="您确定要批量删除数据" ok-text="确定" cancel-text="取消"> | 24 | <Popconfirm title="您确定要批量删除数据" ok-text="确定" cancel-text="取消"> |
17 | <a-button type="primary" color="error" :disabled="hasBatchDelete"> | 25 | <a-button type="primary" color="error" :disabled="hasBatchDelete"> |
18 | 批量删除 | 26 | 批量删除 |
@@ -25,6 +33,7 @@ | @@ -25,6 +33,7 @@ | ||
25 | { | 33 | { |
26 | label: '查看', | 34 | label: '查看', |
27 | icon: 'clarity:note-edit-line', | 35 | icon: 'clarity:note-edit-line', |
36 | + onClick: handleView.bind(null, record), | ||
28 | }, | 37 | }, |
29 | { | 38 | { |
30 | label: '删除', | 39 | label: '删除', |
@@ -38,17 +47,8 @@ | @@ -38,17 +47,8 @@ | ||
38 | ]" | 47 | ]" |
39 | /> | 48 | /> |
40 | </template> | 49 | </template> |
41 | - <template #doStatus="{ record }"> | ||
42 | - <Switch | ||
43 | - :disabled="disabledSwitch" | ||
44 | - :checked="record.status === 1" | ||
45 | - :loading="record.pendingStatus" | ||
46 | - checkedChildren="启用" | ||
47 | - unCheckedChildren="禁用" | ||
48 | - @change="(checked:boolean)=>statusChange(checked,record)" | ||
49 | - /> | ||
50 | - </template> | ||
51 | </BasicTable> | 50 | </BasicTable> |
51 | + <ScheduleLogViewModal @register="registerModalScheduleLogView" /> | ||
52 | </div> | 52 | </div> |
53 | </BasicModal> | 53 | </BasicModal> |
54 | </div> | 54 | </div> |
@@ -57,16 +57,23 @@ | @@ -57,16 +57,23 @@ | ||
57 | import { ref, nextTick } from 'vue'; | 57 | import { ref, nextTick } from 'vue'; |
58 | import { BasicModal, useModalInner } from '/@/components/Modal'; | 58 | import { BasicModal, useModalInner } from '/@/components/Modal'; |
59 | import { BasicTable, useTable, TableAction } from '/@/components/Table'; | 59 | import { BasicTable, useTable, TableAction } from '/@/components/Table'; |
60 | - import { columnSchedue, searchSchedueFormSchema } from '../../report/config/config.data'; | 60 | + import { columnSchedue, searchSchedueFormSchema } from './config.data'; |
61 | import { useBatchDelete } from '/@/hooks/web/useBatchDelete'; | 61 | import { useBatchDelete } from '/@/hooks/web/useBatchDelete'; |
62 | - import { deleteReportManage, reportPage } from '/@/api/report/reportManager'; | ||
63 | - import { Popconfirm, Switch } from 'ant-design-vue'; | 62 | + import { |
63 | + deleteSchedueLogManage, | ||
64 | + schedueLogPage, | ||
65 | + schedueLogCleanPage, | ||
66 | + } from '/@/api/schedue/schedueManager'; | ||
67 | + import { Popconfirm } from 'ant-design-vue'; | ||
68 | + import { useMessage } from '/@/hooks/web/useMessage'; | ||
69 | + import ScheduleLogViewModal from './ScheduleLogViewModal.vue'; | ||
70 | + import { useModal } from '/@/components/Modal'; | ||
64 | 71 | ||
65 | - const disabledSwitch = ref(false); | 72 | + const { createMessage } = useMessage(); |
66 | const heightNum = ref(800); | 73 | const heightNum = ref(800); |
67 | - const [registerTable, { setProps, reload }] = useTable({ | 74 | + const [registerTable, { setProps, reload, getForm }] = useTable({ |
68 | title: '调度日志列表', | 75 | title: '调度日志列表', |
69 | - api: reportPage, | 76 | + api: schedueLogPage, |
70 | columns: columnSchedue, | 77 | columns: columnSchedue, |
71 | showIndexColumn: false, | 78 | showIndexColumn: false, |
72 | clickToRowSelect: false, | 79 | clickToRowSelect: false, |
@@ -93,44 +100,34 @@ | @@ -93,44 +100,34 @@ | ||
93 | reload(); | 100 | reload(); |
94 | }; | 101 | }; |
95 | const { hasBatchDelete, handleDeleteOrBatchDelete, selectionOptions } = useBatchDelete( | 102 | const { hasBatchDelete, handleDeleteOrBatchDelete, selectionOptions } = useBatchDelete( |
96 | - deleteReportManage, | 103 | + deleteSchedueLogManage, |
97 | handleSuccess, | 104 | handleSuccess, |
98 | setProps | 105 | setProps |
99 | ); | 106 | ); |
100 | 107 | ||
101 | - const [register] = useModalInner((data) => { | ||
102 | - console.log(data); | 108 | + const [register] = useModalInner(() => { |
103 | nextTick(() => { | 109 | nextTick(() => { |
104 | setProps(selectionOptions); | 110 | setProps(selectionOptions); |
105 | setProps({ | 111 | setProps({ |
106 | rowKey: 'id', | 112 | rowKey: 'id', |
107 | }); | 113 | }); |
114 | + //重置清空搜索表单 | ||
115 | + const { resetFields } = getForm(); | ||
116 | + resetFields(); | ||
108 | }); | 117 | }); |
109 | }); | 118 | }); |
110 | const handleCancel = () => {}; | 119 | const handleCancel = () => {}; |
111 | - const statusChange = async (checked, record) => { | ||
112 | - try { | ||
113 | - setProps({ | ||
114 | - loading: true, | ||
115 | - }); | ||
116 | - disabledSwitch.value = true; | ||
117 | - const newStatus = checked ? 1 : 0; | ||
118 | - console.log(checked, record, newStatus); | ||
119 | - // const res = await putReportByidAndStatusManage(record.id, newStatus); | ||
120 | - // if (res && newStatus) { | ||
121 | - // createMessage.success(`启用成功`); | ||
122 | - // } else { | ||
123 | - // createMessage.success('禁用成功'); | ||
124 | - // } | ||
125 | - } finally { | ||
126 | - setTimeout(() => { | ||
127 | - setProps({ | ||
128 | - loading: false, | ||
129 | - }); | ||
130 | - disabledSwitch.value = false; | ||
131 | - }, 500); | ||
132 | - reload(); | ||
133 | - } | 120 | + const handleClear = async () => { |
121 | + await schedueLogCleanPage(); | ||
122 | + createMessage.success(`清空成功`); | ||
123 | + handleSuccess(); | ||
124 | + }; | ||
125 | + const [registerModalScheduleLogView, { openModal: openModalLogView }] = useModal(); | ||
126 | + const handleView = (record: Recordable) => { | ||
127 | + openModalLogView(true, { | ||
128 | + isUpdate: true, | ||
129 | + record, | ||
130 | + }); | ||
134 | }; | 131 | }; |
135 | </script> | 132 | </script> |
136 | <style lang="less" scoped></style> | 133 | <style lang="less" scoped></style> |
1 | +<template> | ||
2 | + <div> | ||
3 | + <BasicModal | ||
4 | + v-bind="$attrs" | ||
5 | + width="62rem" | ||
6 | + :height="heightNum" | ||
7 | + @register="register" | ||
8 | + title="调度日志详细信息" | ||
9 | + @cancel="handleCancel" | ||
10 | + :showOkBtn="false" | ||
11 | + style="font-size: 12px" | ||
12 | + > | ||
13 | + <div> | ||
14 | + <Description :column="3" size="middle" @register="registeDesc" /> | ||
15 | + </div> | ||
16 | + </BasicModal> | ||
17 | + </div> | ||
18 | +</template> | ||
19 | +<script setup lang="ts"> | ||
20 | + import { ref, nextTick, reactive } from 'vue'; | ||
21 | + import { BasicModal, useModalInner } from '/@/components/Modal'; | ||
22 | + import { scheduleLogDetailSchema } from './config.data'; | ||
23 | + import { Description } from '/@/components/Description/index'; | ||
24 | + import { useDescription } from '/@/components/Description'; | ||
25 | + import { schedueLogDetailPage } from '/@/api/schedue/schedueManager'; | ||
26 | + | ||
27 | + const heightNum = ref(800); | ||
28 | + let personData = reactive({}); | ||
29 | + const [registeDesc, { setDescProps }] = useDescription({ | ||
30 | + title: '调度日志详细信息', | ||
31 | + data: personData, | ||
32 | + schema: scheduleLogDetailSchema, | ||
33 | + column: 3, | ||
34 | + }); | ||
35 | + const [register] = useModalInner(async (data) => { | ||
36 | + const res = await schedueLogDetailPage(data.record.jobId, data.record.id); | ||
37 | + if (res.code === 200) { | ||
38 | + nextTick(() => { | ||
39 | + for (let i in res.data) { | ||
40 | + Reflect.set(personData, i, res.data[i]); | ||
41 | + } | ||
42 | + setDescProps(personData); | ||
43 | + }); | ||
44 | + } | ||
45 | + }); | ||
46 | + const handleCancel = () => {}; | ||
47 | +</script> | ||
48 | +<style lang="less" scoped> | ||
49 | + :deep(.vben-basic-title-normal) { | ||
50 | + font-size: 16px; | ||
51 | + font-weight: 500; | ||
52 | + } | ||
53 | + :deep(.vben-collapse-container__header) { | ||
54 | + border-bottom: none; | ||
55 | + } | ||
56 | +</style> |
@@ -15,7 +15,7 @@ | @@ -15,7 +15,7 @@ | ||
15 | import { BasicForm, useForm } from '/@/components/Form'; | 15 | import { BasicForm, useForm } from '/@/components/Form'; |
16 | import { formSchema } from './config.form.data'; | 16 | import { formSchema } from './config.form.data'; |
17 | import { BasicDrawer, useDrawerInner } from '/@/components/Drawer'; | 17 | import { BasicDrawer, useDrawerInner } from '/@/components/Drawer'; |
18 | - // import { createOrEditReportManage, putReportConfigManage } from '/@/api/report/reportManager'; | 18 | + import { createOrEditSchedueManage, putSchedueConfigManage } from '/@/api/schedue/schedueManager'; |
19 | import { useMessage } from '/@/hooks/web/useMessage'; | 19 | import { useMessage } from '/@/hooks/web/useMessage'; |
20 | 20 | ||
21 | const emit = defineEmits(['success', 'register']); | 21 | const emit = defineEmits(['success', 'register']); |
@@ -33,6 +33,7 @@ | @@ -33,6 +33,7 @@ | ||
33 | isUpdate.value = !!data?.isUpdate; | 33 | isUpdate.value = !!data?.isUpdate; |
34 | if (unref(isUpdate)) { | 34 | if (unref(isUpdate)) { |
35 | //回显基础数据 | 35 | //回显基础数据 |
36 | + editId.value = data.record.id; | ||
36 | await setFieldsValue(data.record); | 37 | await setFieldsValue(data.record); |
37 | } else { | 38 | } else { |
38 | editId.value = ''; | 39 | editId.value = ''; |
@@ -46,12 +47,15 @@ | @@ -46,12 +47,15 @@ | ||
46 | const { createMessage } = useMessage(); | 47 | const { createMessage } = useMessage(); |
47 | const values = await validate(); | 48 | const values = await validate(); |
48 | if (!values) return; | 49 | if (!values) return; |
49 | - postObj = {}; | 50 | + postObj = { |
51 | + ...values, | ||
52 | + ...{ id: editId.value !== '' ? editId.value : '' }, | ||
53 | + }; | ||
50 | let saveMessage = '添加成功'; | 54 | let saveMessage = '添加成功'; |
51 | let updateMessage = '修改成功'; | 55 | let updateMessage = '修改成功'; |
52 | - // editId.value !== '' | ||
53 | - // ? await putReportConfigManage(postObj) | ||
54 | - // : await createOrEditReportManage(postObj); | 56 | + editId.value !== '' |
57 | + ? await putSchedueConfigManage(postObj) | ||
58 | + : await createOrEditSchedueManage(postObj); | ||
55 | 59 | ||
56 | closeDrawer(); | 60 | closeDrawer(); |
57 | emit('success'); | 61 | emit('success'); |
@@ -19,7 +19,7 @@ | @@ -19,7 +19,7 @@ | ||
19 | <script setup lang="ts"> | 19 | <script setup lang="ts"> |
20 | import { ref, nextTick, reactive } from 'vue'; | 20 | import { ref, nextTick, reactive } from 'vue'; |
21 | import { BasicModal, useModalInner } from '/@/components/Modal'; | 21 | import { BasicModal, useModalInner } from '/@/components/Modal'; |
22 | - import { personSchema } from '../../report/config/config.data'; | 22 | + import { personSchema } from './config.data'; |
23 | import { Description } from '/@/components/Description/index'; | 23 | import { Description } from '/@/components/Description/index'; |
24 | import { useDescription } from '/@/components/Description'; | 24 | import { useDescription } from '/@/components/Description'; |
25 | 25 | ||
@@ -32,18 +32,11 @@ | @@ -32,18 +32,11 @@ | ||
32 | column: 3, | 32 | column: 3, |
33 | }); | 33 | }); |
34 | const [register] = useModalInner((data) => { | 34 | const [register] = useModalInner((data) => { |
35 | - console.log(data); | ||
36 | nextTick(() => { | 35 | nextTick(() => { |
37 | - Reflect.set(personData, 'b1', '1'); | ||
38 | - Reflect.set(personData, 'b2', '默认'); | ||
39 | - Reflect.set(personData, 'b3', '系统默认(无参)'); | ||
40 | - Reflect.set(personData, 'b4', '2022-08-01 12:01:58'); | ||
41 | - Reflect.set(personData, 'b5', '0/10 * * * * ?'); | ||
42 | - Reflect.set(personData, 'b6', '2022-08-08 10:25:00'); | ||
43 | - Reflect.set(personData, 'b7', 'ryTask.ryNoParams'); | ||
44 | - Reflect.set(personData, 'b8', '失败'); | ||
45 | - Reflect.set(personData, 'b9', '禁止'); | ||
46 | - Reflect.set(personData, 'b10', '禁止'); | 36 | + //回显 |
37 | + for (let i in data.record) { | ||
38 | + Reflect.set(personData, i, data.record[i]); | ||
39 | + } | ||
47 | setDescProps(personData); | 40 | setDescProps(personData); |
48 | }); | 41 | }); |
49 | }); | 42 | }); |
1 | import { DescItem } from '/@/components/Description/index'; | 1 | import { DescItem } from '/@/components/Description/index'; |
2 | import { BasicColumn, FormSchema } from '/@/components/Table'; | 2 | import { BasicColumn, FormSchema } from '/@/components/Table'; |
3 | import moment from 'moment'; | 3 | import moment from 'moment'; |
4 | +import { h } from 'vue'; | ||
5 | +import { Tag } from 'ant-design-vue'; | ||
4 | 6 | ||
7 | +//任务详细配置 | ||
5 | export const personSchema: DescItem[] = [ | 8 | export const personSchema: DescItem[] = [ |
6 | { | 9 | { |
7 | - field: 'b1', | ||
8 | - label: '任务编号:', | ||
9 | - }, | ||
10 | - { | ||
11 | - field: 'b2', | 10 | + field: 'jobGroup', |
12 | label: '任务分组:', | 11 | label: '任务分组:', |
12 | + render: (_, data) => { | ||
13 | + return data.jobGroup == 'Default' ? '默认' : data.jobGroup == 'System' ? '系统' : '报表'; | ||
14 | + }, | ||
13 | }, | 15 | }, |
14 | { | 16 | { |
15 | - field: 'b3', | 17 | + field: 'jobName', |
16 | label: '任务名称:', | 18 | label: '任务名称:', |
17 | }, | 19 | }, |
18 | { | 20 | { |
19 | - field: 'b4', | 21 | + field: 'createTime', |
20 | label: '创建时间:', | 22 | label: '创建时间:', |
21 | }, | 23 | }, |
22 | { | 24 | { |
23 | - field: 'b5', | 25 | + field: 'cronExpression', |
24 | label: 'cron表达式:', | 26 | label: 'cron表达式:', |
25 | }, | 27 | }, |
26 | { | 28 | { |
@@ -28,12 +30,15 @@ export const personSchema: DescItem[] = [ | @@ -28,12 +30,15 @@ export const personSchema: DescItem[] = [ | ||
28 | label: '下次执行时间:', | 30 | label: '下次执行时间:', |
29 | }, | 31 | }, |
30 | { | 32 | { |
31 | - field: 'b7', | 33 | + field: 'invokeTarget', |
32 | label: '调用目标方法:', | 34 | label: '调用目标方法:', |
33 | }, | 35 | }, |
34 | { | 36 | { |
35 | - field: 'b8', | 37 | + field: 'status', |
36 | label: '任务状态:', | 38 | label: '任务状态:', |
39 | + render: (_, data) => { | ||
40 | + return data.status == 1 ? '启用' : '禁用'; | ||
41 | + }, | ||
37 | }, | 42 | }, |
38 | { | 43 | { |
39 | field: 'b9', | 44 | field: 'b9', |
@@ -48,39 +53,49 @@ export const personSchema: DescItem[] = [ | @@ -48,39 +53,49 @@ export const personSchema: DescItem[] = [ | ||
48 | // 调度日志表格配置 | 53 | // 调度日志表格配置 |
49 | export const columnSchedue: BasicColumn[] = [ | 54 | export const columnSchedue: BasicColumn[] = [ |
50 | { | 55 | { |
51 | - title: '日志编号', | ||
52 | - dataIndex: 'name', | ||
53 | - width: 80, | ||
54 | - }, | ||
55 | - { | ||
56 | title: '任务名称', | 56 | title: '任务名称', |
57 | - dataIndex: 'organizationId', | 57 | + dataIndex: 'jobName', |
58 | width: 120, | 58 | width: 120, |
59 | }, | 59 | }, |
60 | { | 60 | { |
61 | title: '任务组名', | 61 | title: '任务组名', |
62 | - dataIndex: 'dataCompare', | 62 | + dataIndex: 'jobGroup', |
63 | width: 120, | 63 | width: 120, |
64 | + format: (_text: string, record: Recordable) => { | ||
65 | + return record.jobGroup === 'Default' | ||
66 | + ? '默认' | ||
67 | + : record.jobGroup === 'System' | ||
68 | + ? '系统' | ||
69 | + : '报表'; | ||
70 | + }, | ||
64 | }, | 71 | }, |
65 | { | 72 | { |
66 | title: '调用目标字符串', | 73 | title: '调用目标字符串', |
67 | - dataIndex: 'status', | 74 | + dataIndex: 'invokeTarget', |
68 | width: 120, | 75 | width: 120, |
69 | }, | 76 | }, |
70 | { | 77 | { |
71 | title: '日志信息', | 78 | title: '日志信息', |
72 | - dataIndex: 'executeWay', | 79 | + dataIndex: 'jobMessage', |
73 | width: 160, | 80 | width: 160, |
74 | }, | 81 | }, |
75 | { | 82 | { |
76 | title: '执行状态', | 83 | title: '执行状态', |
77 | - dataIndex: 'devices', | 84 | + dataIndex: 'status', |
78 | width: 160, | 85 | width: 160, |
79 | - slots: { customRender: 'doStatus' }, | 86 | + customRender: ({ record }) => { |
87 | + const status = record.status; | ||
88 | + const success = status === 1; | ||
89 | + const color = success ? 'green' : 'red'; | ||
90 | + const successText: string = '成功'; | ||
91 | + const failedText: string = '失败'; | ||
92 | + const text = success ? successText : failedText; | ||
93 | + return h(Tag, { color: color }, () => text); | ||
94 | + }, | ||
80 | }, | 95 | }, |
81 | { | 96 | { |
82 | title: '执行时间', | 97 | title: '执行时间', |
83 | - dataIndex: 'creator', | 98 | + dataIndex: 'startTime', |
84 | width: 180, | 99 | width: 180, |
85 | }, | 100 | }, |
86 | ]; | 101 | ]; |
@@ -88,7 +103,7 @@ export const columnSchedue: BasicColumn[] = [ | @@ -88,7 +103,7 @@ export const columnSchedue: BasicColumn[] = [ | ||
88 | // 调度日志表格查询配置 | 103 | // 调度日志表格查询配置 |
89 | export const searchSchedueFormSchema: FormSchema[] = [ | 104 | export const searchSchedueFormSchema: FormSchema[] = [ |
90 | { | 105 | { |
91 | - field: 'name', | 106 | + field: 'jobName', |
92 | label: '任务名称', | 107 | label: '任务名称', |
93 | component: 'Input', | 108 | component: 'Input', |
94 | colProps: { span: 4 }, | 109 | colProps: { span: 4 }, |
@@ -98,7 +113,7 @@ export const searchSchedueFormSchema: FormSchema[] = [ | @@ -98,7 +113,7 @@ export const searchSchedueFormSchema: FormSchema[] = [ | ||
98 | }, | 113 | }, |
99 | }, | 114 | }, |
100 | { | 115 | { |
101 | - field: 'status', | 116 | + field: 'jobGroup', |
102 | label: '任务组名', | 117 | label: '任务组名', |
103 | component: 'Select', | 118 | component: 'Select', |
104 | colProps: { span: 4 }, | 119 | colProps: { span: 4 }, |
@@ -106,18 +121,22 @@ export const searchSchedueFormSchema: FormSchema[] = [ | @@ -106,18 +121,22 @@ export const searchSchedueFormSchema: FormSchema[] = [ | ||
106 | options: [ | 121 | options: [ |
107 | { | 122 | { |
108 | label: '默认', | 123 | label: '默认', |
109 | - value: 1, | 124 | + value: 'Default', |
110 | }, | 125 | }, |
111 | { | 126 | { |
112 | label: '系统', | 127 | label: '系统', |
113 | - value: 0, | 128 | + value: 'System', |
129 | + }, | ||
130 | + { | ||
131 | + label: '报表', | ||
132 | + value: 'Report', | ||
114 | }, | 133 | }, |
115 | ], | 134 | ], |
116 | placeholder: '请选择任务组名', | 135 | placeholder: '请选择任务组名', |
117 | }, | 136 | }, |
118 | }, | 137 | }, |
119 | { | 138 | { |
120 | - field: 'status1', | 139 | + field: 'status', |
121 | label: '执行状态', | 140 | label: '执行状态', |
122 | component: 'Select', | 141 | component: 'Select', |
123 | colProps: { span: 4 }, | 142 | colProps: { span: 4 }, |
@@ -147,3 +166,36 @@ export const searchSchedueFormSchema: FormSchema[] = [ | @@ -147,3 +166,36 @@ export const searchSchedueFormSchema: FormSchema[] = [ | ||
147 | colProps: { span: 4 }, | 166 | colProps: { span: 4 }, |
148 | }, | 167 | }, |
149 | ]; | 168 | ]; |
169 | +// 调度日志详情 | ||
170 | +export const scheduleLogDetailSchema: DescItem[] = [ | ||
171 | + { | ||
172 | + field: 'jobName', | ||
173 | + label: '任务名称:', | ||
174 | + }, | ||
175 | + { | ||
176 | + field: 'jobGroup', | ||
177 | + label: '任务组名:', | ||
178 | + render: (_, data) => { | ||
179 | + return data.jobGroup == 'Default' ? '默认' : data.jobGroup == 'System' ? '系统' : '报表'; | ||
180 | + }, | ||
181 | + }, | ||
182 | + { | ||
183 | + field: 'invokeTarget', | ||
184 | + label: '调用目标字符串:', | ||
185 | + }, | ||
186 | + { | ||
187 | + field: 'jobMessage', | ||
188 | + label: '日志信息:', | ||
189 | + }, | ||
190 | + { | ||
191 | + field: 'status', | ||
192 | + label: '执行状态:', | ||
193 | + render: (_, data) => { | ||
194 | + return data.status == 1 ? '成功' : '失败'; | ||
195 | + }, | ||
196 | + }, | ||
197 | + { | ||
198 | + field: 'startTime', | ||
199 | + label: '执行时间:', | ||
200 | + }, | ||
201 | +]; |
@@ -2,40 +2,47 @@ import { BasicColumn, FormSchema } from '/@/components/Table'; | @@ -2,40 +2,47 @@ import { BasicColumn, FormSchema } from '/@/components/Table'; | ||
2 | import type { FormSchema as QFormSchema } from '/@/components/Form/index'; | 2 | import type { FormSchema as QFormSchema } from '/@/components/Form/index'; |
3 | import { JCronValidator } from '/@/components/Form'; | 3 | import { JCronValidator } from '/@/components/Form'; |
4 | 4 | ||
5 | -// 调度日志表格配置 | 5 | +// 定时任务表格配置 |
6 | export const columnSchedue: BasicColumn[] = [ | 6 | export const columnSchedue: BasicColumn[] = [ |
7 | { | 7 | { |
8 | - title: '任务编号', | ||
9 | - dataIndex: 'name', | ||
10 | - width: 80, | 8 | + title: '任务名称', |
9 | + dataIndex: 'jobName', | ||
10 | + width: 120, | ||
11 | }, | 11 | }, |
12 | { | 12 | { |
13 | title: '任务组名', | 13 | title: '任务组名', |
14 | - dataIndex: 'organizationId', | 14 | + dataIndex: 'jobGroup', |
15 | width: 120, | 15 | width: 120, |
16 | + format: (_text: string, record: Recordable) => { | ||
17 | + return record.jobGroup === 'Default' | ||
18 | + ? '默认' | ||
19 | + : record.jobGroup === 'System' | ||
20 | + ? '系统' | ||
21 | + : '报表'; | ||
22 | + }, | ||
16 | }, | 23 | }, |
17 | { | 24 | { |
18 | title: '调用目标字符串', | 25 | title: '调用目标字符串', |
19 | - dataIndex: 'status', | 26 | + dataIndex: 'invokeTarget', |
20 | width: 120, | 27 | width: 120, |
21 | }, | 28 | }, |
22 | { | 29 | { |
23 | title: 'cron执行表达式', | 30 | title: 'cron执行表达式', |
24 | - dataIndex: 'executeWay', | 31 | + dataIndex: 'cronExpression', |
25 | width: 160, | 32 | width: 160, |
26 | }, | 33 | }, |
27 | { | 34 | { |
28 | title: '状态', | 35 | title: '状态', |
29 | - dataIndex: 'devices', | 36 | + dataIndex: 'status', |
30 | width: 160, | 37 | width: 160, |
31 | slots: { customRender: 'status' }, | 38 | slots: { customRender: 'status' }, |
32 | }, | 39 | }, |
33 | ]; | 40 | ]; |
34 | 41 | ||
35 | -// 调度日志表格查询配置 | 42 | +// 定时任务格查询配置 |
36 | export const searchSchedueFormSchema: FormSchema[] = [ | 43 | export const searchSchedueFormSchema: FormSchema[] = [ |
37 | { | 44 | { |
38 | - field: 'name', | 45 | + field: 'jobName', |
39 | label: '任务名称', | 46 | label: '任务名称', |
40 | component: 'Input', | 47 | component: 'Input', |
41 | colProps: { span: 6 }, | 48 | colProps: { span: 6 }, |
@@ -45,7 +52,7 @@ export const searchSchedueFormSchema: FormSchema[] = [ | @@ -45,7 +52,7 @@ export const searchSchedueFormSchema: FormSchema[] = [ | ||
45 | }, | 52 | }, |
46 | }, | 53 | }, |
47 | { | 54 | { |
48 | - field: 'status', | 55 | + field: 'jobGroup', |
49 | label: '任务组名', | 56 | label: '任务组名', |
50 | component: 'Select', | 57 | component: 'Select', |
51 | colProps: { span: 6 }, | 58 | colProps: { span: 6 }, |
@@ -53,18 +60,22 @@ export const searchSchedueFormSchema: FormSchema[] = [ | @@ -53,18 +60,22 @@ export const searchSchedueFormSchema: FormSchema[] = [ | ||
53 | options: [ | 60 | options: [ |
54 | { | 61 | { |
55 | label: '默认', | 62 | label: '默认', |
56 | - value: 1, | 63 | + value: 'Default', |
57 | }, | 64 | }, |
58 | { | 65 | { |
59 | label: '系统', | 66 | label: '系统', |
60 | - value: 0, | 67 | + value: 'System', |
68 | + }, | ||
69 | + { | ||
70 | + label: '报表', | ||
71 | + value: 'Report', | ||
61 | }, | 72 | }, |
62 | ], | 73 | ], |
63 | placeholder: '请选择任务组名', | 74 | placeholder: '请选择任务组名', |
64 | }, | 75 | }, |
65 | }, | 76 | }, |
66 | { | 77 | { |
67 | - field: 'status1', | 78 | + field: 'status', |
68 | label: '任务状态', | 79 | label: '任务状态', |
69 | component: 'Select', | 80 | component: 'Select', |
70 | colProps: { span: 6 }, | 81 | colProps: { span: 6 }, |
@@ -87,7 +98,7 @@ export const searchSchedueFormSchema: FormSchema[] = [ | @@ -87,7 +98,7 @@ export const searchSchedueFormSchema: FormSchema[] = [ | ||
87 | // 新增编辑配置 | 98 | // 新增编辑配置 |
88 | export const formSchema: QFormSchema[] = [ | 99 | export const formSchema: QFormSchema[] = [ |
89 | { | 100 | { |
90 | - field: 'name', | 101 | + field: 'jobName', |
91 | label: '任务名称', | 102 | label: '任务名称', |
92 | colProps: { span: 24 }, | 103 | colProps: { span: 24 }, |
93 | required: true, | 104 | required: true, |
@@ -98,7 +109,7 @@ export const formSchema: QFormSchema[] = [ | @@ -98,7 +109,7 @@ export const formSchema: QFormSchema[] = [ | ||
98 | }, | 109 | }, |
99 | }, | 110 | }, |
100 | { | 111 | { |
101 | - field: 'executeWay', | 112 | + field: 'jobGroup', |
102 | component: 'Select', | 113 | component: 'Select', |
103 | label: '任务分组', | 114 | label: '任务分组', |
104 | colProps: { | 115 | colProps: { |
@@ -109,20 +120,24 @@ export const formSchema: QFormSchema[] = [ | @@ -109,20 +120,24 @@ export const formSchema: QFormSchema[] = [ | ||
109 | options: [ | 120 | options: [ |
110 | { | 121 | { |
111 | label: '默认', | 122 | label: '默认', |
112 | - value: 0, | 123 | + value: 'Default', |
113 | }, | 124 | }, |
114 | { | 125 | { |
115 | label: '系统', | 126 | label: '系统', |
116 | - value: 1, | 127 | + value: 'System', |
128 | + }, | ||
129 | + { | ||
130 | + label: '报表', | ||
131 | + value: 'Report', | ||
117 | }, | 132 | }, |
118 | ], | 133 | ], |
119 | }, | 134 | }, |
120 | }, | 135 | }, |
121 | { | 136 | { |
122 | - field: 'name1', | 137 | + field: 'invokeTarget', |
123 | label: ' 调用方法', | 138 | label: ' 调用方法', |
124 | helpMessage: [ | 139 | helpMessage: [ |
125 | - "Bean调用示例:ryTask.ryParams('ry')Class类调用示例:com.ruoyi.quartz.task.RyTask.ryParams('ry')参数说明:支持字符串,布尔类型,长整型,浮点型,整型", | 140 | + 'Bean调用示例:reportTask.noParams()Class类调用示例:reportTask.noParams()参数说明:支持字符串,布尔类型,长整型,浮点型,整型', |
126 | ], | 141 | ], |
127 | colProps: { span: 24 }, | 142 | colProps: { span: 24 }, |
128 | required: true, | 143 | required: true, |
@@ -189,22 +204,22 @@ export const formSchema: QFormSchema[] = [ | @@ -189,22 +204,22 @@ export const formSchema: QFormSchema[] = [ | ||
189 | }, | 204 | }, |
190 | }, | 205 | }, |
191 | { | 206 | { |
192 | - field: 'field7', | 207 | + field: 'status', |
193 | component: 'RadioGroup', | 208 | component: 'RadioGroup', |
194 | label: '状态', | 209 | label: '状态', |
195 | colProps: { | 210 | colProps: { |
196 | span: 24, | 211 | span: 24, |
197 | }, | 212 | }, |
198 | - defaultValue: '1', | 213 | + defaultValue: 1, |
199 | componentProps: { | 214 | componentProps: { |
200 | options: [ | 215 | options: [ |
201 | { | 216 | { |
202 | label: '正常', | 217 | label: '正常', |
203 | - value: '1', | 218 | + value: 1, |
204 | }, | 219 | }, |
205 | { | 220 | { |
206 | label: '暂停', | 221 | label: '暂停', |
207 | - value: '2', | 222 | + value: 0, |
208 | }, | 223 | }, |
209 | ], | 224 | ], |
210 | }, | 225 | }, |
@@ -39,8 +39,8 @@ | @@ -39,8 +39,8 @@ | ||
39 | label: '执行一次', | 39 | label: '执行一次', |
40 | icon: 'ant-design:caret-right-filled', | 40 | icon: 'ant-design:caret-right-filled', |
41 | popConfirm: { | 41 | popConfirm: { |
42 | - title: '确认要立即执行一次' + '“' + record.name + '”' + '任务吗?', | ||
43 | - confirm: handleDeleteOrBatchDelete.bind(null, record), | 42 | + title: '确认要立即执行一次' + '“' + record.jobName + '”' + '任务吗?', |
43 | + confirm: handleRunOne.bind(null, record), | ||
44 | }, | 44 | }, |
45 | }, | 45 | }, |
46 | { | 46 | { |
@@ -77,7 +77,12 @@ | @@ -77,7 +77,12 @@ | ||
77 | import { BasicTable, useTable, TableAction } from '/@/components/Table'; | 77 | import { BasicTable, useTable, TableAction } from '/@/components/Table'; |
78 | import { columnSchedue, searchSchedueFormSchema } from './config.form.data'; | 78 | import { columnSchedue, searchSchedueFormSchema } from './config.form.data'; |
79 | import { useBatchDelete } from '/@/hooks/web/useBatchDelete'; | 79 | import { useBatchDelete } from '/@/hooks/web/useBatchDelete'; |
80 | - import { deleteReportManage, reportPage } from '/@/api/report/reportManager'; | 80 | + import { |
81 | + deleteSchedueManage, | ||
82 | + scheduePage, | ||
83 | + putSchedueByidAndStatusManage, | ||
84 | + postRunSchedueConfigManage, | ||
85 | + } from '/@/api/schedue/schedueManager'; | ||
81 | import { Popconfirm, Switch } from 'ant-design-vue'; | 86 | import { Popconfirm, Switch } from 'ant-design-vue'; |
82 | import { useModal } from '/@/components/Modal'; | 87 | import { useModal } from '/@/components/Modal'; |
83 | import TaskDetailPreviewModal from './TaskDetailPreviewModal.vue'; | 88 | import TaskDetailPreviewModal from './TaskDetailPreviewModal.vue'; |
@@ -85,11 +90,13 @@ | @@ -85,11 +90,13 @@ | ||
85 | import ScheduledDrawer from './ScheduledDrawer.vue'; | 90 | import ScheduledDrawer from './ScheduledDrawer.vue'; |
86 | import { useDrawer } from '/@/components/Drawer'; | 91 | import { useDrawer } from '/@/components/Drawer'; |
87 | import { Authority } from '/@/components/Authority'; | 92 | import { Authority } from '/@/components/Authority'; |
93 | + import { useMessage } from '/@/hooks/web/useMessage'; | ||
88 | 94 | ||
89 | const disabledSwitch = ref(false); | 95 | const disabledSwitch = ref(false); |
96 | + const { createMessage } = useMessage(); | ||
90 | const [registerTable, { setProps, reload }] = useTable({ | 97 | const [registerTable, { setProps, reload }] = useTable({ |
91 | title: '定时任务列表', | 98 | title: '定时任务列表', |
92 | - api: reportPage, | 99 | + api: scheduePage, |
93 | columns: columnSchedue, | 100 | columns: columnSchedue, |
94 | showIndexColumn: false, | 101 | showIndexColumn: false, |
95 | clickToRowSelect: false, | 102 | clickToRowSelect: false, |
@@ -115,7 +122,7 @@ | @@ -115,7 +122,7 @@ | ||
115 | reload(); | 122 | reload(); |
116 | }; | 123 | }; |
117 | const { hasBatchDelete, handleDeleteOrBatchDelete, selectionOptions } = useBatchDelete( | 124 | const { hasBatchDelete, handleDeleteOrBatchDelete, selectionOptions } = useBatchDelete( |
118 | - deleteReportManage, | 125 | + deleteSchedueManage, |
119 | handleSuccess, | 126 | handleSuccess, |
120 | setProps | 127 | setProps |
121 | ); | 128 | ); |
@@ -127,7 +134,6 @@ | @@ -127,7 +134,6 @@ | ||
127 | const [registerModalTaskDetail, { openModal: openModalTaskDetail }] = useModal(); | 134 | const [registerModalTaskDetail, { openModal: openModalTaskDetail }] = useModal(); |
128 | const [registerModalSchedueLog, { openModal: openModalSchedueLog }] = useModal(); | 135 | const [registerModalSchedueLog, { openModal: openModalSchedueLog }] = useModal(); |
129 | const handleSchedulingLogFunc = (record: Recordable) => { | 136 | const handleSchedulingLogFunc = (record: Recordable) => { |
130 | - // go('/report/schedue_log/' + record.id); | ||
131 | openModalSchedueLog(true, { | 137 | openModalSchedueLog(true, { |
132 | isUpdate: 2, | 138 | isUpdate: 2, |
133 | record, | 139 | record, |
@@ -160,13 +166,12 @@ | @@ -160,13 +166,12 @@ | ||
160 | }); | 166 | }); |
161 | disabledSwitch.value = true; | 167 | disabledSwitch.value = true; |
162 | const newStatus = checked ? 1 : 0; | 168 | const newStatus = checked ? 1 : 0; |
163 | - console.log(checked, record, newStatus); | ||
164 | - // const res = await putReportByidAndStatusManage(record.id, newStatus); | ||
165 | - // if (res && newStatus) { | ||
166 | - // createMessage.success(`启用成功`); | ||
167 | - // } else { | ||
168 | - // createMessage.success('禁用成功'); | ||
169 | - // } | 169 | + const res = await putSchedueByidAndStatusManage(record.id, newStatus); |
170 | + if (res && newStatus) { | ||
171 | + createMessage.success(`启用成功`); | ||
172 | + } else { | ||
173 | + createMessage.success('禁用成功'); | ||
174 | + } | ||
170 | } finally { | 175 | } finally { |
171 | setTimeout(() => { | 176 | setTimeout(() => { |
172 | setProps({ | 177 | setProps({ |
@@ -177,5 +182,11 @@ | @@ -177,5 +182,11 @@ | ||
177 | reload(); | 182 | reload(); |
178 | } | 183 | } |
179 | }; | 184 | }; |
185 | + const handleRunOne = async (record: Recordable) => { | ||
186 | + const res = await postRunSchedueConfigManage(record.id); | ||
187 | + if (res?.code === 200) { | ||
188 | + createMessage.success(`执行一次任务"${record.jobName}"成功`); | ||
189 | + } | ||
190 | + }; | ||
180 | </script> | 191 | </script> |
181 | <style lang="less" scoped></style> | 192 | <style lang="less" scoped></style> |