Commit cc969d15 authored by 罗超's avatar 罗超

1

parent 6b2bd6ae
......@@ -122,6 +122,10 @@
<ordertrans-form v-if="isShowClassTrans" :seting-obj="billObj" :showType="showType" @close="closeBillForm"
@success="refreshPage">
</ordertrans-form>
<!-- 订单临时上课邀请-查看 -->
<temporaryClass-form v-if="isShowTemporaryClass" :seting-obj="billObj" :showType="showType" @close="closeBillForm"
@success="refreshPage">
</temporaryClass-form>
</div>
</div>
</template>
......@@ -137,6 +141,7 @@
import stopbillForm from '../../components/sale/stopbill-form';
import createbackbillForm from '../../components/sale/createbackbill-form';
import ordertransForm from '../../components/sale/ordertrans-form';
import temporaryClassForm from '../../components/sale/temporaryClassbill-form';
export default {
meta: {
title: "退课单据"
......@@ -146,7 +151,8 @@
createbackbillForm,
changebillForm,
stopbillForm,
ordertransForm
ordertransForm,
temporaryClassForm
},
data() {
return {
......@@ -232,8 +238,9 @@
billObj: {}, //单据信息
showType: 1, //1-查看,2-审核
OrderTypeList: [],
isShowStopBillForm:false,
isShowStopBillForm:false,//是否显示停课订单详情
isShowClassTrans:false, //是否显示订单转班详情
isShowTemporaryClass:false,//是否显示临时上课邀请订单详情
}
},
created() {
......@@ -268,6 +275,7 @@
this.isShowCreateBillForm = false;
this.isShowStopBillForm=false;
this.isShowClassTrans = false;
this.isShowTemporaryClass = false;
this.billObj = {};
},
//显示表单
......@@ -283,6 +291,10 @@
//停课
else if (item.ReceiptType == 3) {
this.isShowStopBillForm = true;
}
//临时上课邀请
else if (item.ReceiptType == 4){
this.isShowTemporaryClass =true;
}
//转班
else if (item.ReceiptType == 5){
......
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