This commit is contained in:
xuyuncong 2025-11-21 10:52:35 +08:00
parent 71c9f7976b
commit 6b57fc967c

View File

@ -126,6 +126,12 @@
<el-tag v-if="scope.row.ifEnd == 0" type="danger"></el-tag>
</template>
</el-table-column>
<el-table-column label="是否毕业" align="center" prop="ifEnd">
<template slot-scope="scope">
<el-tag v-if="scope.row.gradTime" type="success"></el-tag>
<el-tag v-if="!scope.row.gradTime" type="danger"></el-tag>
</template>
</el-table-column>
<el-table-column label="信息" align="center" class-name="small-padding fixed-width">
<template v-slot="scope">
<el-button size="mini" type="text" icon="el-icon-edit" @click="viewStudentInfo(scope.row)">学员信息</el-button>