|
@@ -5,21 +5,23 @@
|
|
|
@invalid="handleInvalid" label-width="80px"></mx-condition>
|
|
|
</el-card>
|
|
|
<evaluation-empty v-if="emptyTitle" :title="emptyTitle" class="mt20"></evaluation-empty>
|
|
|
- <template v-else>
|
|
|
- <div class="fx-row jc-sta ai-cen mt20 mb10">
|
|
|
- <el-button circle class="el-icon-refresh" @click="handleQuery"></el-button>
|
|
|
- <div>
|
|
|
- <span class="ml30">班级人数:{{ studentCount }}人</span>
|
|
|
- <span class="ml20">已录取:{{ enrolledCount }}人</span>
|
|
|
- <span class="ml20">未录取:{{ disenrollCount }}人</span>
|
|
|
+ <el-card v-else class="mt20">
|
|
|
+ <template #header>
|
|
|
+ <div class="fx-row fx-sta-cen">
|
|
|
+ <el-button circle class="el-icon-refresh" @click="handleQuery"></el-button>
|
|
|
+ <div>
|
|
|
+ <span class="ml30">班级人数:{{ studentCount }}人</span>
|
|
|
+ <span class="ml20">已录取:{{ enrolledCount }}人</span>
|
|
|
+ <span class="ml20">未录取:{{ disenrollCount }}人</span>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
- </div>
|
|
|
+ </template>
|
|
|
<dynamic-table :columns="tableData.columns" :rows="tableData.rows">
|
|
|
<template #history="{row}">
|
|
|
<el-button type="text" @click="handleLogView(row)">查看</el-button>
|
|
|
</template>
|
|
|
</dynamic-table>
|
|
|
- </template>
|
|
|
+ </el-card>
|
|
|
<el-dialog :title="'选科流程明细 - '+logDetail.studentName" v-if="logVisible"
|
|
|
:visible.sync="logVisible" :width="logDialogWidth">
|
|
|
<elective-generation-flow-log :groups="roundGroups" :histories="logDetail.histories"/>
|