mirror of https://gitee.com/stylefeng/guns
【common.js】去掉格式化当前时间方法
parent
e96e97c9ae
commit
c31cba54b8
|
@ -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 + "=([^&]*)(&|$)");
|
||||
|
|
|
@ -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({
|
||||
|
|
Loading…
Reference in New Issue