From c31cba54b8be50cb47147cd6064c5d232432110c Mon Sep 17 00:00:00 2001 From: chenjinlong <$chenjinlong> Date: Wed, 20 Jan 2021 23:34:28 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90common.js=E3=80=91=E5=8E=BB=E6=8E=89?= =?UTF-8?q?=E6=A0=BC=E5=BC=8F=E5=8C=96=E5=BD=93=E5=89=8D=E6=97=B6=E9=97=B4?= =?UTF-8?q?=E6=96=B9=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/webapp/assets/common/js/common.js | 47 ++++++++++--------- .../webapp/assets/modular/system/user/user.js | 9 +--- 2 files changed, 28 insertions(+), 28 deletions(-) diff --git a/src/main/webapp/assets/common/js/common.js b/src/main/webapp/assets/common/js/common.js index 8450454e..5d4eb963 100644 --- a/src/main/webapp/assets/common/js/common.js +++ b/src/main/webapp/assets/common/js/common.js @@ -38,30 +38,35 @@ Feng.confirm = function (tip, ensure) { }); }; Feng.currentDate = function () { - // 获取当前日期 - var date = new Date(); - // 获取当前月份 - var nowMonth = date.getMonth() + 1; + //此处可以直接调用layui util工具 + //util.toDateString(new Date(),'yyyy-MM-dd') - // 获取当前是几号 - var strDate = date.getDate(); - // 添加分隔符“-” - var seperator = "-"; - - // 对月份进行处理,1-9月在前面添加一个“0” - if (nowMonth >= 1 && nowMonth <= 9) { - nowMonth = "0" + nowMonth; - } - - // 对月份进行处理,1-9号在前面添加一个“0” - if (strDate >= 0 && strDate <= 9) { - strDate = "0" + strDate; - } - - // 最后拼接字符串,得到一个格式为(yyyy-MM-dd)的日期 - return date.getFullYear() + seperator + nowMonth + seperator + strDate; + // // 获取当前日期 + // var date = new Date(); + // + // // 获取当前月份 + // var nowMonth = date.getMonth() + 1; + // + // // 获取当前是几号 + // var strDate = date.getDate(); + // + // // 添加分隔符“-” + // var seperator = "-"; + // + // // 对月份进行处理,1-9月在前面添加一个“0” + // if (nowMonth >= 1 && nowMonth <= 9) { + // nowMonth = "0" + nowMonth; + // } + // + // // 对月份进行处理,1-9号在前面添加一个“0” + // if (strDate >= 0 && strDate <= 9) { + // strDate = "0" + strDate; + // } + // + // // 最后拼接字符串,得到一个格式为(yyyy-MM-dd)的日期 + // return date.getFullYear() + seperator + nowMonth + seperator + strDate; }; Feng.getUrlParam = function (name) { var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); diff --git a/src/main/webapp/assets/modular/system/user/user.js b/src/main/webapp/assets/modular/system/user/user.js index 56999a5e..c992e5b8 100644 --- a/src/main/webapp/assets/modular/system/user/user.js +++ b/src/main/webapp/assets/modular/system/user/user.js @@ -7,6 +7,8 @@ layui.use(['layer', 'form', 'table', 'ztree', 'laydate', 'admin', 'HttpRequest', var func = layui.func; var tree = layui.tree; + var util=layui.util; + /** * 系统管理--用户管理 */ @@ -158,13 +160,6 @@ layui.use(['layer', 'form', 'table', 'ztree', 'laydate', 'admin', 'HttpRequest', parseData: Feng.parseData }); - //渲染时间选择框 - laydate.render({ - elem: '#timeLimit', - range: true, - max: Feng.currentDate() - }); - // 初始化部门树 var request = new HttpRequest(Feng.ctxPath + '/hrOrganization/treeLayui', 'get', function (data) { tree.render({