时间样式
This commit is contained in:
@@ -38,7 +38,7 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column align="center" fixed label="轮次持续时间">
|
<el-table-column align="center" fixed label="轮次持续时间">
|
||||||
<template v-slot="scope">
|
<template v-slot="scope">
|
||||||
{{ scope.row.roundTime > 60 ? (Math.floor(scope.row.roundTime / 60) + 'min') : (scope.row.roundTime + 'sec') }}
|
{{ scope.row.roundTime > 60 ? (Math.floor(scope.row.roundTime / 60 / 1000) + 'min') : ((scope.row.roundTime / 1000) + 'sec') }}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column align="center" fixed prop="giftInfo" label="礼物信息">
|
<el-table-column align="center" fixed prop="giftInfo" label="礼物信息">
|
||||||
|
Reference in New Issue
Block a user