Commit 27c1e85c authored by zhengke's avatar zhengke

no message

parent dc0c1e74
...@@ -384,7 +384,7 @@ export default { ...@@ -384,7 +384,7 @@ export default {
// 点击单号 // 点击单号
clickSingleNumber(item) { clickSingleNumber(item) {
this.currentOrder = item; this.currentOrder = item;
this.orderDrawer = true; // this.orderDrawer = true;
}, },
closeOrderDrawerHandler() { closeOrderDrawerHandler() {
this.currentOrder = null; this.currentOrder = null;
......
...@@ -1379,23 +1379,23 @@ ...@@ -1379,23 +1379,23 @@
}, 50); }, 50);
this.form.GuestId = this.GuestId this.form.GuestId = this.GuestId
if (this.name == "编辑机票订单") { if (this.name == "编辑机票订单") {
this.checkList = this.obj.OrderType.split(',') this.checkList = this.obj.OrderType!=null&&this.obj.OrderType.split(',')
if (this.obj.OrderType.indexOf(1) != -1) { if (this.obj.OrderType&&this.obj.OrderType.indexOf(1) != -1) {
this.AirTicketsShow = false this.AirTicketsShow = false
} else { } else {
this.AirTicketsShow = true this.AirTicketsShow = true
} }
if (this.obj.OrderType.indexOf(2) != -1) { if (this.obj.OrderType&&this.obj.OrderType.indexOf(2) != -1) {
this.visaShow = false this.visaShow = false
} else { } else {
this.visaShow = true this.visaShow = true
} }
if (this.obj.OrderType.indexOf(3) != -1) { if (this.obj.OrderType&&this.obj.OrderType.indexOf(3) != -1) {
this.groundShow = false this.groundShow = false
} else { } else {
this.groundShow = true this.groundShow = true
} }
if (this.obj.OrderType.indexOf(4) != -1) { if (this.obj.OrderType&&this.obj.OrderType.indexOf(4) != -1) {
this.comboShow = false this.comboShow = false
} else { } else {
this.comboShow = true this.comboShow = true
...@@ -1786,7 +1786,8 @@ ...@@ -1786,7 +1786,8 @@
this.BillMaking.vorcherInos=[] this.BillMaking.vorcherInos=[]
this.form.Voucher.forEach(item=>{ this.form.Voucher.forEach(item=>{
let Content ={ let Content ={
Content:item Content:item,
type: 3
} }
this.BillMaking.vorcherInos.push(Content) this.BillMaking.vorcherInos.push(Content)
}) })
...@@ -1806,7 +1807,8 @@ ...@@ -1806,7 +1807,8 @@
// }); // });
this.Voucher.push(data) this.Voucher.push(data)
let Content ={ let Content ={
Content:data Content:data,
type:3
} }
this.BillMaking.vorcherInos.push(Content) this.BillMaking.vorcherInos.push(Content)
this.form.Voucher.push(url); this.form.Voucher.push(url);
...@@ -2044,7 +2046,7 @@ ...@@ -2044,7 +2046,7 @@
this.$message.warning('请选择汇款时间'); this.$message.warning('请选择汇款时间');
return return
} }
if(!this.BillMaking.TradeDate){ if(!this.BillMaking.AccountNumber){
this.$message.warning('请输入流水号'); this.$message.warning('请输入流水号');
return return
} }
......
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