修改综合评价量达标功能

This commit is contained in:
2025-09-15 22:46:38 +08:00
parent 1e052de2fb
commit e9916de03c

View File

@@ -1,12 +1,6 @@
<template> <template>
<div class="app-container" v-loading.fullscreen.lock="fullLoading"> <div class="app-container" v-loading.fullscreen.lock="fullLoading">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="120px"> <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="120px">
<!-- <el-form-item label="学院" prop="deptId">
<el-select v-model="queryParams.deptId" placeholder="请选择学院" clearable @keyup.enter.native="handleQuery">
<el-option v-for="(dept, index) in deptList" :key="index" :label="dept.label" :value="dept.value">
</el-option>
</el-select>
</el-form-item> -->
<el-form-item label="学院" prop="deptId"> <el-form-item label="学院" prop="deptId">
<el-select v-model="queryParams.deptId" filterable clearable placeholder="请选择学院"> <el-select v-model="queryParams.deptId" filterable clearable placeholder="请选择学院">
<el-option v-for="item in deptList" :key="item.value" :label="item.label" :value="item.value"> <el-option v-for="item in deptList" :key="item.value" :label="item.label" :value="item.value">
@@ -125,16 +119,6 @@ export default {
this.loading = false; this.loading = false;
} }
}, },
/** 获取学院列表 */
async getDeptList() {
try {
const response = await getDeptNameList({});
console.log("学院数据响应:", response);
this.deptList = response.data;
} catch (error) {
console.error("获取学院列表失败", error);
}
},
/** 获取学年列表 */ /** 获取学年列表 */
async getYearList() { async getYearList() {
try { try {