房间BOOM管理 - 数据记录 - 修改时间格式化

This commit is contained in:
2025-07-07 18:50:32 +08:00
parent 27502d1969
commit 0370e62f8c

View File

@@ -180,7 +180,11 @@
prop="createTime"
align="center"
label="奖励发放时间"
/>
>
<template v-slot="scope">{{
convertTimestamp(scope.row.createTime)
}}</template>
</el-table-column>
</el-table>
<!-- 分页 -->
<el-pagination
@@ -347,6 +351,10 @@ export default {
endTime: endTime,
}).then();
},
convertTimestamp (time) {
let date = new Date(time);
return date.format("yyyy-MM-dd hh:mm:ss");
},
// 分页详情导航
handleSizeChange2() {
this.detailListFun();