|
@@ -253,14 +253,17 @@
|
|
|
</div>
|
|
|
</Drawer>
|
|
|
<Drawer :title="$t('activity.modal.text8')" :width="25" v-model="workDrawer">
|
|
|
- <div v-for="(item, index) in processList[proIndex].uploads" :key="item.id" style="font-size: 18px; margin-bottom: 10px;">
|
|
|
- {{ item.name }}
|
|
|
- <span v-show="item.score != -1">
|
|
|
- <span style="color: #00b457; margin-right: 2px;">({{ item.score }}分)</span>
|
|
|
- <Icon type="md-checkmark-circle" color="#189718" v-show="item.score != -1" />
|
|
|
- </span>
|
|
|
- <Icon type="md-brush" @click="manualAssignChange(index, true)" v-show="item.score === -1" />
|
|
|
- </div>
|
|
|
+ <template v-if="processList[proIndex].uploads">
|
|
|
+ <div v-for="(item, index) in processList[proIndex].uploads" :key="item.id" style="font-size: 18px; margin-bottom: 10px;">
|
|
|
+ {{ item.name }}
|
|
|
+ <span v-show="item.score != -1">
|
|
|
+ <span style="color: #00b457; margin-right: 2px;">({{ item.score }}分)</span>
|
|
|
+ <Icon type="md-checkmark-circle" color="#189718" v-show="item.score != -1" />
|
|
|
+ </span>
|
|
|
+ <Icon type="md-brush" @click="manualAssignChange(index, true)" v-show="item.score === -1" />
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <div v-else>暂无可评审作品</div>
|
|
|
</Drawer>
|
|
|
<Modal v-model="teacherModal" :title="$t('activity.inviteTea')" width="650" :footer-hide="true">
|
|
|
<Table :columns="teacherCloumns" :data="showTeachers" height="500" @on-selection-change="getSelTea">
|