feature_0521
zhenghuang 5 years ago
parent 05e96e97a9
commit 47c489a32e

@ -315,7 +315,7 @@ export default {
title: "提交时间", title: "提交时间",
width: 120, width: 120,
render: (h, params) => { render: (h, params) => {
return h("span", formatDate(params.row.joinTime)); return h("span", params.row.joinTime);
} }
}, },
{ {
@ -397,14 +397,14 @@ export default {
title: "提交时间", title: "提交时间",
width: 120, width: 120,
render: (h, params) => { render: (h, params) => {
return h("span", formatDate(params.row.joinTime)); return h("span", params.row.joinTime);
} }
}, },
{ {
title: "审核时间", title: "审核时间",
width: 120, width: 120,
render: (h, params) => { render: (h, params) => {
return h("span", formatDate(params.row.updateTime)); return h("span", params.row.updateTime);
} }
} }
], ],
@ -482,14 +482,14 @@ export default {
title: "提交时间", title: "提交时间",
width: 120, width: 120,
render: (h, params) => { render: (h, params) => {
return h("span", formatDate(params.row.joinTime)); return h("span", params.row.joinTime);
} }
}, },
{ {
title: "审核时间", title: "审核时间",
width: 120, width: 120,
render: (h, params) => { render: (h, params) => {
return h("span", formatDate(params.row.updateTime)); return h("span", params.row.updateTime);
} }
}, },
{ {

@ -234,7 +234,7 @@ export default {
key: 'submitDate', key: 'submitDate',
width: 120, width: 120,
render: (h, params) => { render: (h, params) => {
return h('span', formatDate(params.row.joinTime)); return h('span', params.row.joinTime);
} }
}, },
{ {

Loading…
Cancel
Save