|
@@ -196,42 +196,43 @@
|
|
|
<i class="el-icon-arrow-down"></i>提交列表 ({{ workList.length }})
|
|
|
</div>
|
|
|
<div style="overflow: auto;flex: 1;">
|
|
|
- <div
|
|
|
- v-if="workListShow"
|
|
|
- v-for="(i, index) in workList"
|
|
|
- :key="index"
|
|
|
- :class="['schPer', i.userid == DgUid ? 'selBlock' : '']"
|
|
|
- style="cursor: pointer;"
|
|
|
- @click="cutPer(i.userid, index)"
|
|
|
- >
|
|
|
- <img v-if="i.headportrait" :src="i.headportrait" alt="" />
|
|
|
- <img
|
|
|
- v-else
|
|
|
- src="https://beta.pbl.cocorobo.cn/pbl-teacher-table/dist/static/img/portal.b3cf7fa.png"
|
|
|
- alt=""
|
|
|
- />
|
|
|
-
|
|
|
- <div class="con">
|
|
|
- <div class="tit">
|
|
|
- <span
|
|
|
- style="font-size: 14px;color: rgba(0, 0, 0, 0.9);font-weight: 400;"
|
|
|
- >{{ i.name }}</span
|
|
|
- >
|
|
|
+ <template v-if="workListShow">
|
|
|
+ <div
|
|
|
+ v-for="(i, index) in workList"
|
|
|
+ :key="index"
|
|
|
+ :class="['schPer', i.userid == DgUid ? 'selBlock' : '']"
|
|
|
+ style="cursor: pointer;"
|
|
|
+ @click="cutPer(i.userid, index)"
|
|
|
+ >
|
|
|
+ <img v-if="i.headportrait" :src="i.headportrait" alt="" />
|
|
|
+ <img
|
|
|
+ v-else
|
|
|
+ src="https://beta.pbl.cocorobo.cn/pbl-teacher-table/dist/static/img/portal.b3cf7fa.png"
|
|
|
+ alt=""
|
|
|
+ />
|
|
|
|
|
|
- <span
|
|
|
- style="font-size: 14px;color:rgba(0, 0, 0, 0.4);"
|
|
|
- v-if="i.markSco == null"
|
|
|
- >未评分</span
|
|
|
- >
|
|
|
- <span
|
|
|
- v-else
|
|
|
- style="font-size: 16px;color: rgba(0, 0, 0, 0.9);font-weight: 600;"
|
|
|
- >{{ i.markSco }}</span
|
|
|
- >
|
|
|
+ <div class="con">
|
|
|
+ <div class="tit">
|
|
|
+ <span
|
|
|
+ style="font-size: 14px;color: rgba(0, 0, 0, 0.9);font-weight: 400;"
|
|
|
+ >{{ i.name }}</span
|
|
|
+ >
|
|
|
+
|
|
|
+ <span
|
|
|
+ style="font-size: 14px;color:rgba(0, 0, 0, 0.4);"
|
|
|
+ v-if="i.markSco == null"
|
|
|
+ >未评分</span
|
|
|
+ >
|
|
|
+ <span
|
|
|
+ v-else
|
|
|
+ style="font-size: 16px;color: rgba(0, 0, 0, 0.9);font-weight: 600;"
|
|
|
+ >{{ i.markSco }}</span
|
|
|
+ >
|
|
|
+ </div>
|
|
|
+ <div class="Timer">{{ i.time }}</div>
|
|
|
</div>
|
|
|
- <div class="Timer">{{ i.time }}</div>
|
|
|
</div>
|
|
|
- </div>
|
|
|
+ </template>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|