Commit d16b45a5 authored by 黄奎's avatar 黄奎

页面修改

parent 252c6548
...@@ -604,3 +604,15 @@ export function setTeacherHelp(data) { ...@@ -604,3 +604,15 @@ export function setTeacherHelp(data) {
data data
}) })
} }
/**
* 员工提交建议和意见等
* @param {*} data
*/
export function SubmitTeacherAssessmentApproval(data) {
return request({
url: '/TeacherAssessment/SubmitTeacherAssessmentApproval',
method: 'post',
data
})
}
\ No newline at end of file
...@@ -192,7 +192,16 @@ ...@@ -192,7 +192,16 @@
Id: item.Id Id: item.Id
}; };
SubmitTeacherAssessmentApproval(saveObj).then(res => { SubmitTeacherAssessmentApproval(saveObj).then(res => {
console.log("res",res); if (res.Code == 1) {
this.$q.notify({
icon: "iconfont icon-chenggong",
color: "accent",
timeout: 2000,
message: "提交审核成功!",
position: "top"
});
this.getTeacherAssessmentPage()
}
}); });
} }
} }
......
...@@ -166,6 +166,9 @@ ...@@ -166,6 +166,9 @@
<!-- 显示Vip课程申请 --> <!-- 显示Vip课程申请 -->
<vipcoursebillForm v-if="isShowVipCourseForm" :seting-obj="billObj" :showType="showType" @close="closeBillForm" <vipcoursebillForm v-if="isShowVipCourseForm" :seting-obj="billObj" :showType="showType" @close="closeBillForm"
@success="refreshPage"></vipcoursebillForm> @success="refreshPage"></vipcoursebillForm>
<!-- 显示教师考核申请 -->
<assessmentbillForm v-if="isShowAssessmentForm" :seting-obj="billObj" :showType="showType" @close="closeBillForm"
@success="refreshPage"></assessmentbillForm>
</div> </div>
</div> </div>
</template> </template>
...@@ -187,6 +190,7 @@ ...@@ -187,6 +190,7 @@
import examBillForm from "../../components/sale/exambill-form.vue"; import examBillForm from "../../components/sale/exambill-form.vue";
import tougaoForm from "../../components/sale/tougao-form.vue"; import tougaoForm from "../../components/sale/tougao-form.vue";
import vipcoursebillForm from "../../components/sale/vipcoursebill-form.vue"; import vipcoursebillForm from "../../components/sale/vipcoursebill-form.vue";
import assessmentbillForm from "../../components/sale/assessmentbill-form.vue";
export default { export default {
meta: { meta: {
title: "我的业务单据", title: "我的业务单据",
...@@ -202,7 +206,8 @@ ...@@ -202,7 +206,8 @@
zujuanBillForm, zujuanBillForm,
examBillForm, examBillForm,
tougaoForm, tougaoForm,
vipcoursebillForm vipcoursebillForm,
assessmentbillForm
}, },
data() { data() {
return { return {
...@@ -295,8 +300,9 @@ ...@@ -295,8 +300,9 @@
isShowLeaveBillForm: false, //是否显示请假申请单详情 isShowLeaveBillForm: false, //是否显示请假申请单详情
isShowZujuanBillForm: false, //是否显示组卷申请单详情 isShowZujuanBillForm: false, //是否显示组卷申请单详情
isShowExamBillForm: false, //是否显示考试申请详情 isShowExamBillForm: false, //是否显示考试申请详情
isShowTougaoForm: false, //是否显示投稿申请详情, isShowTougaoForm: false, //是否显示投稿申请详情
isShowVipCourseForm: false, //是否显示Vip课程申请详情, isShowVipCourseForm: false, //是否显示Vip课程申请详情
isShowAssessmentForm: false, //手否显示教师考核申请
}; };
}, },
created() { created() {
...@@ -361,6 +367,7 @@ ...@@ -361,6 +367,7 @@
this.isShowExamBillForm = false; this.isShowExamBillForm = false;
this.isShowTougaoForm = false; this.isShowTougaoForm = false;
this.isShowVipCourseForm = false; this.isShowVipCourseForm = false;
this.isShowAssessmentForm = false;
this.billObj = {}; this.billObj = {};
}, },
//显示表单 //显示表单
...@@ -400,9 +407,15 @@ ...@@ -400,9 +407,15 @@
//投稿审批 //投稿审批
else if (item.ReceiptType == 10) { else if (item.ReceiptType == 10) {
this.isShowTougaoForm = true; this.isShowTougaoForm = true;
} else if (item.ReceiptType == 11) { }
//Vip课程申请
else if (item.ReceiptType == 11) {
this.isShowVipCourseForm = true; this.isShowVipCourseForm = true;
} }
//教师考核申请
else if (item.ReceiptType == 12) {
this.isShowAssessmentForm = true;
}
this.showType = type; this.showType = type;
this.billObj = item; this.billObj = item;
}, },
...@@ -450,6 +463,7 @@ ...@@ -450,6 +463,7 @@
this.isShowZujuanBillForm = false; this.isShowZujuanBillForm = false;
this.isShowExamBillForm = false; this.isShowExamBillForm = false;
this.isShowVipCourseForm = false; this.isShowVipCourseForm = false;
this.isShowAssessmentForm=false;
this.billObj = {}; this.billObj = {};
this.getStuBackBill(); this.getStuBackBill();
}, },
......
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