Commit c842fd2f authored by youjie's avatar youjie

no message

parent 49a8ed9b
...@@ -646,23 +646,43 @@ ...@@ -646,23 +646,43 @@
this.$viewer.show() this.$viewer.show()
}, },
goUrlO: function (OrderId) { goUrlO: function (OrderId) {
if (this.$route.query.InvoiceApplyType && this.$route.query.InvoiceApplyType == 4) { let query2 = {
this.$router.push({ OrderId: OrderId,
name: 'CRMTicketOrderOP', OrderType: 0,
query: { blank: 'y',
OrderId: OrderId, tab: ''
blank: 'y', }
tab: '单机票详情' if(this.$route.query.InvoiceApplyType){
} if(this.$route.query.InvoiceApplyType == 1) query2.OrderType = 2 // 团队
}); if(this.$route.query.InvoiceApplyType == 2) query2.OrderType = 6 // 签证
} else { if(this.$route.query.InvoiceApplyType == 4) query2.OrderType = 1 // 机票
if(this.$route.query.InvoiceApplyType == 5) query2.OrderType = 5 // 车
if(this.$route.query.InvoiceApplyType == 6) query2.OrderType = 3 // 酒店
if(this.$route.query.InvoiceApplyType == 7) query2.OrderType = 4 // 门票
}else{
query2.OrderType = 2
}
query2.tab = '订单详情'
this.$router.push({
name: 'erpCustomerOrderDay',
query: query2
});
return
let query = {
id: OrderId,
blank: 'y',
tab: '报名统计'
}
if(this.$route.query.InvoiceApplyType&&this.$route.query.InvoiceApplyType == 4){
query.tab = '单机票详情'
this.$router.push({
name: 'CRMTicketOrderOP',
query: query
});
}else {
this.$router.push({ this.$router.push({
name: 'enrollTotal', name: 'enrollTotal',
query: { query: query
id: OrderId,
blank: 'y',
tab: '报名统计'
}
}); });
} }
}, },
......
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