| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200 |
- <template>
- <div class="device-manager-box">
- <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" />
- 删除
- </a-menu-item>
- </a-menu>
- </template>
- <a-button
- >批量操作
- <Icon icon="mdi:chevron-down" />
- </a-button>
- </a-dropdown>
- </template>
- <template #action="{ record }">
- <div class="vent-row-center">
- <a-popconfirm v-if="record.status == -1" title="是否启动选中任务?" @confirm="handlerResume(record)" style="display: inline-block">
- <a class="table-action-link">启动</a>
- </a-popconfirm>
- <a-popconfirm v-if="record.status == 0" title="是否暂停选中任务?" @confirm="handlerPause(record)" style="display: inline-block">
- <a class="table-action-link">停止</a>
- </a-popconfirm>
- <TableAction :dropDownActions="getDropDownAction(record)" />
- </div>
- </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,
- collectJob,
- monitorJob,
- computeJob,
- } 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) {
- // if (record.ntype === 'dataCenter') {
- console.log(record.ntype, '类型');
- // await collectJob({ id: record.id }, reload);
- // } else await resumeJob({ id: record.id }, reload);
- }
- /**
- * 批量删除事件
- */
- async function batchHandleDelete() {
- await batchDeleteQuartz({ ids: selectedRowKeys.value }, reload);
- }
- </script>
|