|
@@ -31,21 +31,23 @@
|
|
<div>时间</div>
|
|
<div>时间</div>
|
|
<div>分数</div>
|
|
<div>分数</div>
|
|
</div>
|
|
</div>
|
|
- <div v-for="(task, index) of store.historyTasks" :key="index">
|
|
|
|
- <div
|
|
|
|
- @click="replaceCurrentTask(task)"
|
|
|
|
- class="tw-flex tw-justify-between tw-h-6 tw-place-items-center tw-rounded tw-cursor-pointer"
|
|
|
|
- :class="store.currentTask === task && 'current-task'"
|
|
|
|
- >
|
|
|
|
- <div>{{ task.secretNumber }}</div>
|
|
|
|
- <div>
|
|
|
|
- {{ $filters.datetimeFilter(task.markTime) }}
|
|
|
|
- </div>
|
|
|
|
- <div style="width: 30px; text-align: center">
|
|
|
|
- {{ task.markerScore }}
|
|
|
|
|
|
+ <a-spin :spinning="loading" size="large" tip="Loading...">
|
|
|
|
+ <div v-for="(task, index) of store.historyTasks" :key="index">
|
|
|
|
+ <div
|
|
|
|
+ @click="replaceCurrentTask(task)"
|
|
|
|
+ class="tw-flex tw-justify-between tw-h-6 tw-place-items-center tw-rounded tw-cursor-pointer"
|
|
|
|
+ :class="store.currentTask === task && 'current-task'"
|
|
|
|
+ >
|
|
|
|
+ <div>{{ task.secretNumber }}</div>
|
|
|
|
+ <div>
|
|
|
|
+ {{ $filters.datetimeFilter(task.markTime) }}
|
|
|
|
+ </div>
|
|
|
|
+ <div style="width: 30px; text-align: center">
|
|
|
|
+ {{ task.markerScore }}
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
- </div>
|
|
|
|
|
|
+ </a-spin>
|
|
<div class="tw-flex tw-justify-between tw-place-content-center tw-mt-2">
|
|
<div class="tw-flex tw-justify-between tw-place-content-center tw-mt-2">
|
|
<a-button @click="previousPage">上一页</a-button>
|
|
<a-button @click="previousPage">上一页</a-button>
|
|
<div style="line-height: 30px">第{{ currentPage }}页</div>
|
|
<div style="line-height: 30px">第{{ currentPage }}页</div>
|