为啥这里的startTime和finishTime是一串数字。
应该是时间戳吧 转一下
const timestamp = this.startTime; // 示例时间戳const date = new Date(timestamp);const rq = date.getFullYear() + '-' +(date.getMonth() + 1) +'-'date.getDate();
https://help.fanruan.com/finereport/doc-view-819.html#7a803526b8744a18
------------
如果想在自定义提示里面写的话,先拿这个试一下
function() { return new Date(this.startTime / 1000 | 0).toLocaleString(); }