From 84d31a8340d8c296be347b98f33d5b4ce763c421 Mon Sep 17 00:00:00 2001 From: chenjinlong <22208488@qq.com> Date: Fri, 26 Feb 2021 11:48:42 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E8=A1=A8=E6=A0=BC=E5=88=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/webapp/assets/modular/system/app/app.js | 2 -- .../webapp/assets/modular/system/position/position.js | 10 ---------- src/main/webapp/assets/modular/system/timers/timers.js | 6 +----- 3 files changed, 1 insertion(+), 17 deletions(-) diff --git a/src/main/webapp/assets/modular/system/app/app.js b/src/main/webapp/assets/modular/system/app/app.js index 3a2fedb6..eaa27c4c 100644 --- a/src/main/webapp/assets/modular/system/app/app.js +++ b/src/main/webapp/assets/modular/system/app/app.js @@ -23,8 +23,6 @@ layui.use(['table', 'HttpRequest', 'func', 'form'], function () { {field: 'appCode', sort: true, align: "center", title: '应用编码'}, {field: 'activeFlag', sort: true, align: "center", title: '是否激活', templet: '#activeTpl'}, {field: 'statusFlag', sort: true, align: "center", title: '是否启用', templet: '#statusTpl'}, - {field: 'createTime', sort: true, align: "center", title: '创建时间'}, - {field: 'updateTime', sort: true, align: "center", title: '更新时间'}, {align: 'center', toolbar: '#tableBar', title: '操作'} ]]; }; diff --git a/src/main/webapp/assets/modular/system/position/position.js b/src/main/webapp/assets/modular/system/position/position.js index df0278d2..e321a3aa 100644 --- a/src/main/webapp/assets/modular/system/position/position.js +++ b/src/main/webapp/assets/modular/system/position/position.js @@ -19,16 +19,6 @@ layui.use(['table', 'form', 'func', 'HttpRequest', 'util'], function () { {field: 'positionName', sort: true, title: '职位名称'}, {field: 'positionCode', sort: true, title: '职位编码'}, {field: 'positionRemark', sort: true, title: '备注'}, - { - field: 'createTime', sort: true, title: '创建时间', templet: function (d) { - return util.toDateString(d.createTime); - } - }, - { - field: 'updateTime', sort: true, title: '更新时间', templet: function (d) { - return d.updateTime == null ? '' : util.toDateString(d.updateTime); - } - }, {field: 'statusFlag', sort: true, templet: '#statusTpl', title: '状态'}, {align: 'center', toolbar: '#tableBar', title: '操作'} ]]; diff --git a/src/main/webapp/assets/modular/system/timers/timers.js b/src/main/webapp/assets/modular/system/timers/timers.js index dfd7426f..df78bee9 100644 --- a/src/main/webapp/assets/modular/system/timers/timers.js +++ b/src/main/webapp/assets/modular/system/timers/timers.js @@ -18,13 +18,9 @@ layui.use(['table', 'admin', 'form', 'func', 'HttpRequest', 'dropdown'], functio {field: 'timerId', hide: true, title: '主键id'}, {field: 'timerName', sort: true, title: '任务名称'}, {field: 'cron', sort: true, title: 'cron表达式'}, - {field: 'jobStatus', sort: true, templet: '#statusTpl', title: '状态'}, {field: 'actionClass', sort: true, title: '任务class'}, {field: 'remark', sort: true, title: '备注信息'}, - {field: 'createUser', sort: true, title: '创建人'}, - {field: 'updateUser', sort: true, title: '修改人'}, - {field: 'createTime', sort: true, title: '创建时间'}, - {field: 'updateTime', sort: true, title: '修改时间'}, + {field: 'jobStatus', sort: true, templet: '#statusTpl', title: '状态'}, {align: 'center', toolbar: '#tableBar', title: '操作'} ]]; };