forked from gzzfw/frontEnd/gzDyh

zhangyongtian
2024-09-12 8e9f556423b0e3a19ce70df2bca8c351035368b0
gz-customerSystem/src/utils/utility.js
@@ -180,8 +180,8 @@
}
// 时间格式化
export function timeFormat(value, isValue) {
   return !!value ? moment(value).format('YYYY-MM-DD HH:mm:ss') : isValue ? '' : '-';
export function timeFormat(value, isValue, timeFormat) {
   return !!value ? moment(value).format(timeFormat ? timeFormat : 'YYYY-MM-DD HH:mm:ss') : isValue ? '' : '-';
}
export function minuteFormat(value, isValue) {