Commit 39bdb42d authored by 黄奎's avatar 黄奎

业务单据调整

parent d16b45a5
......@@ -238,13 +238,13 @@
data() {
return {
msg: {
FlowId: 10
FlowId: 12
},
isShowProcess: false, //显示旁边弹窗
processObj: {}, //传递子组件
flowObj: {
FlowId: 10,
FlowName: "课程审批",
FlowId: 12,
FlowName: "教师考核审批流程",
FlowNodeList: [], //审核节点列表
},
//显示对象
......
......@@ -264,9 +264,7 @@
},
//刷新列表
refreshStudentPage() {
console.log("2222");
this.$emit("success");
},
//客户情况信息的修改
consultsuccess(data) {
......
......@@ -463,7 +463,7 @@
this.isShowZujuanBillForm = false;
this.isShowExamBillForm = false;
this.isShowVipCourseForm = false;
this.isShowAssessmentForm=false;
this.isShowAssessmentForm = false;
this.billObj = {};
this.getStuBackBill();
},
......
......@@ -164,6 +164,10 @@
<!-- 显示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>
......@@ -185,6 +189,7 @@
import stopbillForm from '../../components/sale/stopbill-form';
import temporaryClassForm from '../../components/sale/temporaryClassbill-form';
import vipcoursebillForm from "../../components/sale/vipcoursebill-form.vue";
import assessmentbillForm from "../../components/sale/assessmentbill-form.vue";
export default {
meta: {
title: "教务单据查询"
......@@ -195,7 +200,8 @@
ordertransForm,
stopbillForm,
temporaryClassForm,
vipcoursebillForm
vipcoursebillForm,
assessmentbillForm,
},
data() {
return {
......@@ -294,6 +300,7 @@
isShowStopBillForm: false, //是否显示停课订单详情
isShowTemporaryClass: false, //是否显示临时上课邀请订单详情
isShowVipCourseForm: false, //是否显示Vip课程申请详情
isShowAssessmentForm: false, //是否显示教师考核详情
}
},
created() {
......@@ -340,11 +347,11 @@
this.isShowStopBillForm = false;
this.isShowTemporaryClass = false;
this.isShowVipCourseForm = false;
this.isShowAssessmentForm = false;
this.billObj = {};
},
//显示表单
showBillForm(item, type) {
//调课
if (item.ReceiptType == 1) {
this.isShowChangeBillForm = true;
......@@ -365,10 +372,14 @@
else if (item.ReceiptType == 4) {
this.isShowTemporaryClass = true;
}
//临时上课邀
//Vip课程申
else if (item.ReceiptType == 11) {
this.isShowVipCourseForm = true;
}
//教师考核申请
else if (item.ReceiptType == 12) {
this.isShowAssessmentForm = true;
}
this.showType = type;
this.billObj = item;
this.isShowEdit = false;
......@@ -409,6 +420,7 @@
this.isShowBackBillForm = false;
this.isShowChangeBillForm = 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