fix bug
parent
7d08608b72
commit
a13c34f7da
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue