Commit 888b7bf8 authored by zhengke's avatar zhengke

修改

parent df53cdfa
This diff is collapsed.
...@@ -118,6 +118,8 @@ ...@@ -118,6 +118,8 @@
<stopbill-form v-if="isShowStopBillForm" :seting-obj="billObj" :showType="showType" @close="closeBillForm" <stopbill-form v-if="isShowStopBillForm" :seting-obj="billObj" :showType="showType" @close="closeBillForm"
@success="refreshPage"> @success="refreshPage">
</stopbill-form> </stopbill-form>
<!-- 订单转班-查看 -->
<ordertrans-form v-if="isShowClassTrans" :seting-obj="billObj" :showType="showType" @close="closeBillForm"></ordertrans-form>
</div> </div>
</div> </div>
</template> </template>
...@@ -132,6 +134,8 @@ ...@@ -132,6 +134,8 @@
import changebillForm from '../../components/sale/changebill-form'; import changebillForm from '../../components/sale/changebill-form';
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';
export default { export default {
meta: { meta: {
title: "退课单据" title: "退课单据"
...@@ -140,7 +144,8 @@ ...@@ -140,7 +144,8 @@
backbillForm, backbillForm,
createbackbillForm, createbackbillForm,
changebillForm, changebillForm,
stopbillForm stopbillForm,
ordertransForm
}, },
data() { data() {
return { return {
...@@ -227,7 +232,7 @@ ...@@ -227,7 +232,7 @@
showType: 1, //1-查看,2-审核 showType: 1, //1-查看,2-审核
OrderTypeList: [], OrderTypeList: [],
isShowStopBillForm:false, isShowStopBillForm:false,
isShowClassTrans:false, //是否显示订单转班详情
} }
}, },
created() { created() {
...@@ -260,7 +265,8 @@ ...@@ -260,7 +265,8 @@
this.isShowBillForm = false; this.isShowBillForm = false;
this.isShowChangeBillForm = false; this.isShowChangeBillForm = false;
this.isShowCreateBillForm = false; this.isShowCreateBillForm = false;
this.isShowStopBillForm=false this.isShowStopBillForm=false;
this.isShowClassTrans = false;
this.billObj = {}; this.billObj = {};
}, },
//显示表单 //显示表单
...@@ -277,6 +283,10 @@ ...@@ -277,6 +283,10 @@
else if (item.ReceiptType == 3) { else if (item.ReceiptType == 3) {
this.isShowStopBillForm = true; this.isShowStopBillForm = true;
} }
//转班
else if (item.ReceiptType == 5){
this.isShowClassTrans =true;
}
this.showType = type; this.showType = type;
this.billObj = item; this.billObj = item;
console.log(item,'item'); console.log(item,'item');
......
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