修改综合评价量达标功能
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
<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-item label="学院" prop="deptId">
|
||||
<el-select v-model="queryParams.deptId" filterable clearable placeholder="请选择学院">
|
||||
<el-select v-model="queryParams.deptId" placeholder="请选择学院" clearable @keyup.enter.native="handleQuery">
|
||||
<el-option v-for="item in deptList" :key="item.value" :label="item.label" :value="item.value">
|
||||
</el-option>
|
||||
</el-select>
|
||||
@@ -62,7 +62,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { getTeacherEvaluationStatus, exportTeacherEvaluationStatus, getDeptNameList } from "@/api/stuCQS/teacher-evaluation-status";
|
||||
import { getTeacherEvaluationStatus, exportTeacherEvaluationStatus } from "@/api/stuCQS/teacher-evaluation-status";
|
||||
import { getDeptName } from "@/api/system/dept";
|
||||
import { listAllYear } from "@/api/stuCQS/basedata/year";
|
||||
import { fullLoading } from "@/api/helpFunc";
|
||||
@@ -97,13 +97,12 @@ export default {
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
this.getDeptList();
|
||||
this.getYearList();
|
||||
this.listDept();
|
||||
},
|
||||
methods: {
|
||||
async listDept() {
|
||||
let res = await getDeptName();
|
||||
const res = await getDeptName();
|
||||
this.deptList = [...res.data];
|
||||
},
|
||||
/** 查询辅导员评价状态列表 */
|
||||
|
||||
Reference in New Issue
Block a user