zhouwx
2025-12-03 59a4f02701ef3b232b9f1d54ba0b29a1e8764704
src/views/work/onlineEducation/classHourBatch/index.vue
@@ -8,6 +8,7 @@
              plain
              icon="Plus"
              @click="openDialog('add',{})"
              v-hasPermi="['classHourBatch:list:add']"
          >新增批次</el-button>
        </el-form-item>
        <el-form-item label="批次名称:" >
@@ -59,9 +60,9 @@
      <el-table-column label="完成率" prop="finishRate" align="center"  />
      <el-table-column label="操作" align="center" class-name="small-padding fixed-width"  width="180">
        <template #default="scope">
          <el-button link type="primary" @click="toStuChoose(scope.row)">学生数据</el-button>
          <el-button link type="primary" @click="openDialog('edit',scope.row)">编辑</el-button>
          <el-button link type="danger" @click="handleDelete(scope.row)">删除</el-button>
          <el-button link type="primary" @click="toStuChoose(scope.row)">人员数据</el-button>
          <el-button link type="primary" @click="openDialog('edit',scope.row)" v-hasPermi="['classHourBatch:list:edit']">编辑</el-button>
          <el-button link type="danger" @click="handleDelete(scope.row)" v-hasPermi="['classHourBatch:list:del']">删除</el-button>
        </template>
      </el-table-column>
    </el-table>