From 4e4e2d60e4dc7ed0963ae82030f50784fb703335 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E5=BD=A6=E6=B3=BD?= Date: Wed, 1 Feb 2023 17:14:24 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BC=80=E5=8F=91=E5=B7=A5=E5=85=B7-=E5=AE=9A?= =?UTF-8?q?=E6=97=B6=E4=BB=BB=E5=8A=A1-=E5=88=97=E5=AE=BD=E5=8F=AF?= =?UTF-8?q?=E6=8B=96=E6=8B=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jero-web/src/views/system/QuartzJobList.vue | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/jero-web/src/views/system/QuartzJobList.vue b/jero-web/src/views/system/QuartzJobList.vue index 60e047a36..010420b9b 100644 --- a/jero-web/src/views/system/QuartzJobList.vue +++ b/jero-web/src/views/system/QuartzJobList.vue @@ -59,6 +59,7 @@ size="middle" bordered rowKey="id" + :components="drag(columns,'columns')" :columns="columns" :dataSource="dataSource" :pagination="ipagination" @@ -113,10 +114,11 @@ import { getAction } from '@/api/manage' import { JeroListMixin } from '@/mixins/JeroListMixin' import JEllipsis from "@/components/jero/JEllipsis"; + import { ResizeHeader, ResizeColumnProvide } from '@/mixins/header' export default { name: "QuartzJobList", - mixins:[JeroListMixin], + mixins:[JeroListMixin, ResizeHeader, ResizeColumnProvide], components: { QuartzJobModal, JEllipsis @@ -153,11 +155,13 @@ /* customRender:function (text) { return "*"+text.substring(9,text.length); }*/ + width: 612 }, { title: 'cron表达式', align:"left", - dataIndex: 'cronExpression' + dataIndex: 'cronExpression', + width: 47 }, { title: '参数', @@ -182,7 +186,8 @@ filters: [ { text: '已启动', value: '0' }, { text: '已暂停', value: '-1' }, - ] + ], + width: 76 }, { title: '操作',