Commit d16b45a5 authored by 黄奎's avatar 黄奎

页面修改

parent 252c6548
......@@ -603,4 +603,16 @@ export function setTeacherHelp(data) {
method: 'post',
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 @@
Id: item.Id
};
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 @@
<!-- 显示Vip课程申请 -->
<vipcoursebillForm v-if="isShowVipCourseForm" :seting-obj="billObj" :showType="showType" @close="closeBillForm"
@success="refreshPage"></vipcoursebillForm>
<!-- 显示教师考核申请 -->
<assessmentbillForm v-if="isShowAssessmentForm" :seting-obj="billObj" :showType="showType" @close="closeBillForm"
@success="refreshPage"></assessmentbillForm>
</div>
</div>
</template>
......@@ -187,6 +190,7 @@
import examBillForm from "../../components/sale/exambill-form.vue";
import tougaoForm from "../../components/sale/tougao-form.vue";
import vipcoursebillForm from "../../components/sale/vipcoursebill-form.vue";
import assessmentbillForm from "../../components/sale/assessmentbill-form.vue";
export default {
meta: {
title: "我的业务单据",
......@@ -202,7 +206,8 @@
zujuanBillForm,
examBillForm,
tougaoForm,
vipcoursebillForm
vipcoursebillForm,
assessmentbillForm
},
data() {
return {
......@@ -295,8 +300,9 @@
isShowLeaveBillForm: false, //是否显示请假申请单详情
isShowZujuanBillForm: false, //是否显示组卷申请单详情
isShowExamBillForm: false, //是否显示考试申请详情
isShowTougaoForm: false, //是否显示投稿申请详情,
isShowVipCourseForm: false, //是否显示Vip课程申请详情,
isShowTougaoForm: false, //是否显示投稿申请详情
isShowVipCourseForm: false, //是否显示Vip课程申请详情
isShowAssessmentForm: false, //手否显示教师考核申请
};
},
created() {
......@@ -361,6 +367,7 @@
this.isShowExamBillForm = false;
this.isShowTougaoForm = false;
this.isShowVipCourseForm = false;
this.isShowAssessmentForm = false;
this.billObj = {};
},
//显示表单
......@@ -400,9 +407,15 @@
//投稿审批
else if (item.ReceiptType == 10) {
this.isShowTougaoForm = true;
} else if (item.ReceiptType == 11) {
}
//Vip课程申请
else if (item.ReceiptType == 11) {
this.isShowVipCourseForm = true;
}
//教师考核申请
else if (item.ReceiptType == 12) {
this.isShowAssessmentForm = true;
}
this.showType = type;
this.billObj = item;
},
......@@ -450,6 +463,7 @@
this.isShowZujuanBillForm = false;
this.isShowExamBillForm = false;
this.isShowVipCourseForm = false;
this.isShowAssessmentForm=false;
this.billObj = {};
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