| | |
| | | v-if="activeName !== 'deactivated'" |
| | | > |
| | | <template slot-scope="scope"> |
| | | {{ scope.row.gender == "FEMALE" ? "女" : "男" }} |
| | | {{ scope.row.gender == 'FEMALE' ? '女' : '男' }} |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | |
| | | v-if="activeName !== 'deactivated'" |
| | | > |
| | | <template slot-scope="scope"> |
| | | {{ scope.row.mobile ? scope.row.mobile : "--" }} |
| | | {{ scope.row.mobile ? scope.row.mobile : '--' }} |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | |
| | | v-if="activeName !== 'deactivated'" |
| | | > |
| | | <template slot-scope="scope"> |
| | | {{ scope.row.user ? "是" : "否" }} |
| | | {{ scope.row.user ? '是' : '否' }} |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | |
| | | v-if="activeName == 'deactivated'" |
| | | > |
| | | <template slot-scope=""> |
| | | <el-link type="primary" :underline="false">删除</el-link> |
| | | <el-link type="primary" :underline="false" |
| | | >删除</el-link |
| | | > |
| | | |
| | | <el-link type="primary" :underline="false">恢复</el-link> |
| | | <el-link type="primary" :underline="false" |
| | | >恢复</el-link |
| | | > |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | |
| | | showCreate() { |
| | | this.$refs.studentCreate.showDialog(); |
| | | }, |
| | | |
| | | }, |
| | | }; |
| | | </script> |