update code

pull/1314/head
sight 2023-08-05 20:00:43 +08:00
parent f94e3d1c26
commit a0161b4e6c
1 changed files with 4 additions and 2 deletions

View File

@ -255,9 +255,11 @@ layui.define('jquery', function(exports){
// 转化为日期格式字符 // 转化为日期格式字符
toDateString: function(time, format){ toDateString: function(time, format){
//若 null 或空字符,则返回空字符 // 若 null 或空字符,则返回空字符
if(time === null || time === '') return ''; if(time === null || time === '') return '';
// 引用自 dayjs
// https://github.com/iamkun/dayjs/blob/v1.11.9/src/constant.js#L30
var REGEX_FORMAT = /\[([^\]]+)]|y{1,4}|M{1,2}|d{1,2}|H{1,2}|h{1,2}|m{1,2}|s{1,2}|SSS/g; var REGEX_FORMAT = /\[([^\]]+)]|y{1,4}|M{1,2}|d{1,2}|H{1,2}|h{1,2}|m{1,2}|s{1,2}|SSS/g;
var that = this; var that = this;
var date = new Date(function(){ var date = new Date(function(){