| | |
| | | <el-button v-show="scope.row.status !== '解散'" size="small" @click="handlerOpenNotify(scope.row)" |
| | | type="info">通知 |
| | | </el-button> |
| | | <el-button v-show="scope.row.status !== '解散'" @click="studentManager(scope.row.id)" size="small" |
| | | <el-button v-show="scope.row.status !== '解散'" @click="studentManager(scope.row.id,scope.row.className)" size="small" |
| | | type="success">成员管理 |
| | | </el-button> |
| | | <el-popconfirm |
| | |
| | | this.title = '新增班级' |
| | | }, |
| | | // 跳转(查看班级人员情况) |
| | | studentManager (classesId) { |
| | | this.$router.push({ path: '/classes/class-management/Class-staff', query: { classesId: classesId } }) |
| | | studentManager (classesId,className) { |
| | | this.$router.push({ path: '/classes/class-management/Class-staff', query: { classesId: classesId, className: className } }) |
| | | }, |
| | | // 返回上一个页面 |
| | | goBack () { |
| | |
| | | <div class="app-container"> |
| | | <div style="display: flex; flex-direction: row"> |
| | | <div style="padding-bottom:20px"> |
| | | <span class="item">{{ title }}</span> |
| | | <span class="item">{{ this.$route.query.className }}</span> |
| | | <el-button class="item" @click="handlerAddStudent" type="primary" size="small">新增学员</el-button> |
| | | <el-button class="item" @click="open = true" type="primary" size="small">学员调整</el-button> |
| | | </div> |
| | |
| | | class="flex" |
| | | style="justify-content:center;margin-top:20px;" |
| | | > |
| | | <pagination v-show="total>0" :total="total" :page.sync="searchForm.pageIndex" :limit.sync="searchForm.pageSize" |
| | | <pagination v-show="total>0" :total="total" :page.sync="searchForm.currentPage" :limit.sync="searchForm.pageSize" |
| | | @pagination="page"/> |
| | | </div> |
| | | <el-dialog width="500px" :title="title" @close="closeHandler" :visible.sync="open" :destroy-on-close="true" |
| | |
| | | searchForm: { |
| | | examName: '', |
| | | subject: null, |
| | | pageIndex: 1, |
| | | currentPage: 1, |
| | | pageSize: 10 |
| | | }, |
| | | tableData: [] |