|
@@ -195,8 +195,9 @@ export default {
|
|
|
],
|
|
|
teaFields: [
|
|
|
{ label: '姓名', prop: 'name' },
|
|
|
- { label: '学校', prop: 'school_name' },
|
|
|
- // { label: '评分', prop: 'xxx' }, //TODO多个评分,暂时没显示
|
|
|
+ { label: '学校', prop: 'schname' },
|
|
|
+ { label: '资料评分', prop: 'zlscore' },
|
|
|
+ { label: '面试评分', prop: 'msscore' },
|
|
|
],
|
|
|
dayList: [{ label: '一天' }, { label: '半天' }],
|
|
|
rules: {
|
|
@@ -283,7 +284,7 @@ export default {
|
|
|
toChooseTeacher() {
|
|
|
if (this.form.subid) {
|
|
|
this.dialog = true;
|
|
|
- this.toGetTeacherList({ query: { subid: this.form.subid, termid: this.form.term, status: '4' } });
|
|
|
+ this.toGetTeacherList({ query: { status: '4' } });
|
|
|
} else this.$message.warning('请选择所授科目');
|
|
|
},
|
|
|
setTea({ data }) {
|
|
@@ -353,6 +354,8 @@ export default {
|
|
|
},
|
|
|
//教师列表请求
|
|
|
async toGetTeacherList({ query, type }) {
|
|
|
+ query.subid = this.form.subid;
|
|
|
+ query.termid = this.form.termid;
|
|
|
let setTeacher = async query => {
|
|
|
let res = await this.getTeacherList(query);
|
|
|
if (this.$checkRes(res)) {
|