提交 f8b27633 authored 作者: 钟是志's avatar 钟是志

配置文件修改

上级 19e5f493
......@@ -2214,10 +2214,12 @@ ${obj[dataColumn.base52] && obj[dataColumn.base52] !== 'null' ?
title = title ? title : '起止时间';
break;
case 'DatePicker':
if (obj[dataColumn.base52] && typeof obj[dataColumn.base52] === 'string' && typeof obj[dataColumn.base52].indexOf('-') <= -1) {
const vTime = obj[dataColumn.base52];
if (vTime && typeof vTime === 'string' && vTime.indexOf('-') <= -1) {
console.log(vTime);
cm = (
<span>
{moment(parseInt(obj[dataColumn.base52]))
{moment(parseInt(vTime))
.format(
json.format ? json.format : 'YYYY-MM-DD HH:mm:ss',
)}
......@@ -2226,8 +2228,8 @@ ${obj[dataColumn.base52] && obj[dataColumn.base52] !== 'null' ?
} else {
cm = (
<span>
{obj[dataColumn.base52]
? moment(+new Date(obj[dataColumn.base52]))
{vTime
? moment(+new Date(vTime))
.format(
json.format ? json.format : 'YYYY-MM-DD HH:mm:ss',
)
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论