Commit cc969d15 authored by 罗超's avatar 罗超

1

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