Commit 888b7bf8 authored by zhengke's avatar zhengke

修改

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