1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
| <template>
| <div>
| <BasicTable @register="registerTable" :rowSelection="rowSelection">
| <template #tableTitle>
| <a-button preIcon="ant-design:plus-outlined" type="primary" @click="handleAdd" style="margin-right: 5px">新增</a-button>
| <a-button type="primary" preIcon="ant-design:export-outlined" @click="onExportXls"> 导出</a-button>
| <j-upload-button type="primary" preIcon="ant-design:import-outlined" @click="onImportXls">导入</j-upload-button>
| <a-dropdown v-if="selectedRowKeys.length > 0">
| <template #overlay>
| <a-menu>
| <a-menu-item key="1" @click="batchHandleDelete">
| <Icon icon="ant-design:delete-outlined"></Icon>
| 删除
| </a-menu-item>
| </a-menu>
| </template>
| <a-button
| >批量操作
| <Icon icon="mdi:chevron-down"></Icon>
| </a-button>
| </a-dropdown>
| </template>
| <template #action="{ record }">
| <TableAction :actions="getActions(record)" :dropDownActions="getDropDownAction(record)" />
| </template>
| </BasicTable>
| <QuartzModal @register="registerModal" @success="reload" />
| </div>
| </template>
| <script lang="ts" name="monitor-quartz" setup>
| import { ref } from 'vue';
| import { BasicTable, TableAction } from '/@/components/Table';
| import { useModal } from '/@/components/Modal';
| import { useListPage } from '/@/hooks/system/useListPage';
| import { getQuartzList, deleteQuartz, batchDeleteQuartz, executeImmediately, resumeJob, pauseJob, getExportUrl, getImportUrl } from './quartz.api';
| import { columns, searchFormSchema } from './quartz.data';
| import QuartzModal from './QuartzModal.vue';
| import { useMessage } from '/@/hooks/web/useMessage';
|
| const { createMessage } = useMessage();
| const [registerModal, { openModal }] = useModal();
| // 列表页面公共参数、方法
| const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
| designScope: 'quartz-template',
| tableProps: {
| title: '任务列表',
| api: getQuartzList,
| columns: columns,
| actionColumn: {
| width: 180,
| },
| formConfig: {
| labelWidth: 120,
| schemas: searchFormSchema,
| fieldMapToTime: [['fieldTime', ['beginDate', 'endDate'], 'YYYY-MM-DD HH:mm:ss']],
| },
| },
| exportConfig: {
| name: '定时任务列表',
| url: getExportUrl,
| },
| importConfig: {
| url: getImportUrl,
| },
| });
|
| const [registerTable, { reload }, { rowSelection, selectedRowKeys }] = tableContext;
|
| /**
| * 操作列定义
| * @param record
| */
| function getActions(record) {
| return [
| {
| label: '启动',
| popConfirm: {
| title: '是否启动选中任务?',
| confirm: handlerResume.bind(null, record),
| },
| ifShow: (_action) => {
| return record.status == -1;
| },
| },
| {
| label: '停止',
| popConfirm: {
| title: '是否暂停选中任务?',
| confirm: handlerPause.bind(null, record),
| },
| ifShow: (_action) => {
| return record.status == 0;
| },
| },
| ];
| }
|
| /**
| * 下拉操作栏
| */
| function getDropDownAction(record) {
| return [
| {
| label: '立即执行',
| popConfirm: {
| title: '是否立即执行任务?',
| confirm: handlerExecute.bind(null, record),
| },
| },
| {
| label: '编辑',
| onClick: handleEdit.bind(null, record),
| },
| {
| label: '删除',
| popConfirm: {
| title: '是否确认删除',
| confirm: handleDelete.bind(null, record),
| },
| },
| ];
| }
|
| /**
| * 新增事件
| */
| function handleAdd() {
| openModal(true, {
| isUpdate: false,
| });
| }
|
| /**
| * 编辑事件
| */
| function handleEdit(record) {
| openModal(true, {
| record,
| isUpdate: true,
| });
| }
|
| /**
| * 删除事件
| */
| async function handleDelete(record) {
| await deleteQuartz({ id: record.id }, reload);
| }
|
| /**
| * 立即执行
| */
| async function handlerExecute(record) {
| await executeImmediately({ id: record.id }, reload);
| }
|
| /**
| * 暂停
| */
| async function handlerPause(record) {
| await pauseJob({ id: record.id }, reload);
| }
|
| /**
| * 启动
| */
| async function handlerResume(record) {
| await resumeJob({ id: record.id }, reload);
| }
|
| /**
| * 批量删除事件
| */
| async function batchHandleDelete() {
| await batchDeleteQuartz({ ids: selectedRowKeys.value }, reload);
| }
| </script>
|
|