Commit c842fd2f authored by youjie's avatar youjie

no message

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