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

业务单据调整

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