Commit 576822e1 authored by 黄奎's avatar 黄奎

问卷名称调整

parent a60f0c00
<template>
<div class="page-body" style="width: auto;height:150%;">
<div class="page-content">
<div class="col-2 q-table__title" style="text-align:center;">老师上课质量调查问卷</div>
<div class="col-2 q-table__title" style="text-align:center;">班主任满意度调查问卷</div>
<div v-if="loadingCG">
<div class="row wrap" style="margin:10px 0px;">
<div class="col-12">亲爱的{{addMsg.StuName}}同学,为了提高老师上课的教学质量,请您完成对任课老师的评价。</div>
<div class="col-12" style="text-indent:2em;">亲爱的{{addMsg.StuName}}同学,为了提高班主任老师的课后监督服务质量,请您对班主任老师进行评价。</div>
</div>
<div class="row wrap">
<div class="col-12">
<q-select filled v-model="addMsg.TeacherId" use-input :dense="false" ref="Teacher_Id" label="您选择评价的老师:"
<q-select filled v-model="addMsg.TeacherId" use-input :dense="false" ref="Teacher_Id" label="班主任老师姓名:"
option-value="TId" option-label="TeacherName" :options="TeacherList" @filter="filterFnTeacher"
class="col-6 q-pb-lg" emit-value map-options>
<template v-slot:no-option>
......@@ -68,7 +68,7 @@
</div>
<div v-else>
<div class="row wrap" style="margin:20px 0px;text-align:center; ">
<div class="col-12">亲爱的{{addMsg.StuName}}同学,感谢您对任课老师{{addMsg.TeacherName}}的评价。</div>
<div class="col-12">亲爱的{{addMsg.StuName}}同学,感谢您对班主任老师{{addMsg.TeacherName}}的评价。</div>
</div>
</div>
</div>
......@@ -84,7 +84,7 @@
} from '../../api/school/index'
export default {
meta: {
title: "老师上课质量调查问卷"
title: "班主任满意度调查问卷"
},
components: {
......@@ -97,7 +97,7 @@
loadingCG: true,
msg: {
RB_Group_Id: 0,
MainId:0,
MainId: 0,
},
TeacherList: [], //关联教师下拉数据
AllTeacherList: [], //关联教师下拉数据
......@@ -107,7 +107,7 @@
TeacherName: "",
StudentId: 0,
SurveyList: [],
MainId:0,
MainId: 0,
}
}
},
......@@ -124,7 +124,7 @@
}
if (this.$route.query && this.$route.query.MainId) {
this.msg.MainId = this.$route.query.MainId;
this.addMsg.MainId=this.$route.query.MainId;
this.addMsg.MainId = this.$route.query.MainId;
}
this.GetTeacherList();
this.getSurveyShowList();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment