先提交一部分

This commit is contained in:
2024-07-01 01:09:26 +08:00
parent dd19e6e6b1
commit 51bfa3bd76
4 changed files with 20 additions and 12 deletions

View File

@@ -39,7 +39,7 @@ export default {
...this.search, limit: 999
})).then(res => {
if (res?.data) {
this.tableData = res.data?.page?.records || []
this.tableData = res.data?.page?.records?.map(e => ({...e, hour: `${`${e.hour-1}`.padStart(2, '0')}:00-${e.hour.padStart(2, '0')}:00`})) || []
}
})
}