xiangpei
2024-10-17 53ed2201bd488dbb3e97ad7c014bc092855f7f84
src/views/class-management/Class.vue
@@ -23,7 +23,7 @@
          </el-select>
        </el-form-item>
        <el-form-item>
          <el-button type="primary" @click="page">查询</el-button>
          <el-button type="primary" size="small" @click="page">查询</el-button>
        </el-form-item>
      </el-form>
    </div>
@@ -95,7 +95,7 @@
          <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
@@ -322,7 +322,7 @@
        this.page()
      })
    },
    recover(id) {
    recover (id) {
      recover(id).then(res => {
        this.$message.success(res.data.message)
        this.page()
@@ -352,8 +352,8 @@
      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 () {