From 924742cc7baee08326b0ecc8f8f403cd0e8d3b98 Mon Sep 17 00:00:00 2001 From: wangshaoping Date: Wed, 13 Aug 2025 16:19:56 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9F=BA=E7=A1=80=E6=A1=86=E6=9E=B6=E5=8F=91?= =?UTF-8?q?=E5=B8=83:=208.2.32=20=20=201)=20=E6=94=AF=E6=8C=81=E5=9B=9E?= =?UTF-8?q?=E9=80=80=E6=97=B6=E8=BF=94=E5=9B=9E=E7=BB=99=E5=8E=9F=E5=A4=84?= =?UTF-8?q?=E7=90=86=E4=BA=BA,=20=E6=8F=90=E4=BA=A4=E6=97=B6=E9=80=89?= =?UTF-8?q?=E6=8B=A9=E4=BB=BB=E5=8A=A1=E5=80=99=E9=80=89=E5=A4=84=E7=90=86?= =?UTF-8?q?=E4=BA=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 前端核心发布: 8.2.122 1) 首页任务列表增加按日期倒序 --- io.sc.platform.lcdp.frontend/src/views/jxls/Template.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/io.sc.platform.lcdp.frontend/src/views/jxls/Template.vue b/io.sc.platform.lcdp.frontend/src/views/jxls/Template.vue index e699ff90..17e538bb 100644 --- a/io.sc.platform.lcdp.frontend/src/views/jxls/Template.vue +++ b/io.sc.platform.lcdp.frontend/src/views/jxls/Template.vue @@ -70,7 +70,7 @@ 'view', ]" :columns="[ - { width: 80, name: 'async', label: $t('async') }, + { width: 80, name: 'async', label: $t('async'), format: Formater.yesNo() }, { width: 150, name: 'code', label: $t('code') }, { width: 250, name: 'name', label: $t('name') }, { width: 350, name: 'jpaEntityClass', label: $t('lcdp.jxls.template.grid.entity.jpaEntityClass') }, @@ -88,6 +88,7 @@ { name: 'name', label: $t('name'), type: 'w-text', requiredIf: true }, { name: 'jpaEntityClass', label: $t('lcdp.jxls.template.grid.entity.jpaEntityClass'), type: 'w-text' }, { name: 'description', label: $t('description'), type: 'w-textarea' }, + { name: 'async', label: $t('async'), type: 'w-checkbox' }, ], }, }"