@ -540,7 +540,7 @@ export default {
const dateObj2 = new Date(date2);
// 计算时间差,得到毫秒数
const timeDifference = dateObj2 - dateObj1;
return timeDifference / (1000 * 60 * 60 * 24);
return (timeDifference / (1000 * 60 * 60 * 24)).toFixed(2);
},
/** 展开/折叠操作 */
toggleExpandAll() {