fuliqi
2024-07-08 29b8671ebd7bf9de889f15d50c1da002352ac744
删除多余阅卷按钮
3个文件已修改
20 ■■■■■ 已修改文件
src/views/exam/exam/ExamManage.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/meet/index.vue 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/train/index.vue 14 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/exam/exam/ExamManage.vue
@@ -83,7 +83,6 @@
          <el-button v-if="scope.row.status === 'finished'" type="success" size="small" @click="markPaper(scope.row)">阅卷</el-button>
          <el-button type="danger" size="small" @click="deleteExam(scope.row.id)">删除</el-button>
          <el-button type="success" size="small" @click="markPaper(scope.row)">阅卷</el-button>
          <el-button type="warning" size="small" @click="monitor(scope.row)">监控</el-button>
        </template>
      </el-table-column>
src/views/meet/index.vue
@@ -1,10 +1,5 @@
<template>
  <div id="meet" ref="meet">
    <div>
      <span>
        {{ '156165165' }}
      </span>
    </div>
  </div>
</template>
src/views/train/index.vue
@@ -66,9 +66,9 @@
                </el-date-picker>
              </el-form-item>
              <el-form-item label="状态">
                <el-radio v-model="form.status" :label="0">待开始</el-radio>
                <el-radio v-model="form.status" :label="1">进行中</el-radio>
                <el-radio v-model="form.status" :label="2">已结束</el-radio>
                <el-radio v-model="form.status" :label="0"  :disabled="!form.id">待开始</el-radio>
                <el-radio v-model="form.status" :label="1"  :disabled="!form.id">进行中</el-radio>
                <el-radio v-model="form.status" :label="2"  :disabled="!form.id">已结束</el-radio>
              </el-form-item>
            </el-form>
            <div slot="footer" class="dialog-footer">
@@ -103,7 +103,9 @@
      open: false,
      listLoading: true,
      title: '',
      form: {},
      form: {
        status: 0
      },
      tableData: [],
      classesIds: [],
      activeName: 'all',
@@ -194,7 +196,7 @@
        id: null,
        meetName: null,
        classesId: null,
        status: null,
        status: 0,
        startTime: null,
        endTime: null,
        time: []
@@ -238,6 +240,7 @@
      })
    },
    handleAdd () {
      this.resetForm()
      this.open = true
      this.title = '新建房间'
    }
@@ -261,6 +264,7 @@
    flex: 1;
    position: relative;
    width: 100%;
    height: 100%;
  }
}