|
@@ -6,17 +6,18 @@
|
|
|
:columns="tableColumns"
|
|
|
:data="markHistoryList"
|
|
|
highlight-current-row
|
|
|
- :on-current-change="onCurrentChange"
|
|
|
+ @current-change="onCurrentChange"
|
|
|
></base-table>
|
|
|
<div v-else class="flex flex-wrap justify-between preview-list">
|
|
|
<div
|
|
|
v-for="markHistory in markHistoryList"
|
|
|
:key="markHistory.taskId"
|
|
|
class="preview-item"
|
|
|
+ :class="{ current: task?.taskId === markHistory.taskId }"
|
|
|
@click="onCurrentChange(markHistory)"
|
|
|
>
|
|
|
<img :src="markHistory.url" alt="" />
|
|
|
- <div>{{ markHistory.markScore }}</div>
|
|
|
+ <div class="text-center">{{ markHistory.markScore }}分</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="flex items-center justify-around m-t-base">
|