main
wwl 2024-05-10 17:56:18 +08:00
parent 7d08608b72
commit a13c34f7da
2 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@
<el-table-column prop="changci" label="场次">
<template v-if="changci" slot-scope="{ row: { changci } }">
<span>
{{ changci.start_time.substr(11, 5) }} - {{ changci.end_time.substr(11, 5) }}
{{ changci.start_time.substr(5, 11) }} - {{ changci.end_time.substr(11, 5) }}
</span>
</template>
</el-table-column>

View File

@ -17,7 +17,7 @@
</el-form-item>
<el-form-item label="场次" prop="changci">
<template v-if="recorddata.changci">
{{ dayjs(recorddata.changci.start_time * 1000).format('HH:mm') }} ~
{{ dayjs(recorddata.changci.start_time * 1000).format('YYYY-MM-DD HH:mm') }} ~
{{ dayjs(recorddata.changci.end_time * 1000).format('HH:mm') }}</template
>
</el-form-item>