|
@@ -68,26 +68,31 @@
|
|
|
</el-row>
|
|
|
</el-form>
|
|
|
|
|
|
- <table
|
|
|
- class="table task-exam-room"
|
|
|
- v-if="examRoomInfoList.length && !IS_MODEL2"
|
|
|
- >
|
|
|
- <colgroup>
|
|
|
- <col width="400" />
|
|
|
- <col width="100" />
|
|
|
- <col width="100" />
|
|
|
- </colgroup>
|
|
|
- <tr>
|
|
|
- <th v-if="hasClassInfo">使用班级</th>
|
|
|
- <th>人数</th>
|
|
|
- <th>总印份数</th>
|
|
|
- </tr>
|
|
|
- <tr v-for="(item, index) in examRoomInfoList" :key="index">
|
|
|
- <td v-if="hasClassInfo">{{ item.clazzNames }}</td>
|
|
|
- <td>{{ item.studentCount }}</td>
|
|
|
- <td>{{ item.printCount }}</td>
|
|
|
- </tr>
|
|
|
- </table>
|
|
|
+ <div v-if="examRoomInfoList.length && !IS_MODEL2" class="task-exam-room">
|
|
|
+ <el-table
|
|
|
+ :data="examRoomInfoList"
|
|
|
+ border
|
|
|
+ style="width: 100%"
|
|
|
+ max-height="300"
|
|
|
+ >
|
|
|
+ <el-table-column
|
|
|
+ v-if="hasClassInfo"
|
|
|
+ prop="clazzNames"
|
|
|
+ label="使用班级"
|
|
|
+ min-width="400"
|
|
|
+ ></el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="studentCount"
|
|
|
+ label="人数"
|
|
|
+ min-width="100"
|
|
|
+ ></el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="printCount"
|
|
|
+ label="总印份数"
|
|
|
+ min-width="100"
|
|
|
+ ></el-table-column>
|
|
|
+ </el-table>
|
|
|
+ </div>
|
|
|
|
|
|
<div
|
|
|
class="part-box part-box-pad task-exam-room"
|