Commit 606d5bbb authored by youjie's avatar youjie

no message

parent 104a10c9
......@@ -755,8 +755,8 @@ Vue.component("TCNUMJump", {
<span style="cursor: pointer;text-decoration:underline" v-if="rowData.DataType===9" @click="goHotelOrder('HotelOrderTotal',rowData)">{{rowData.TCNUM}}</span>
<span style="cursor: pointer;text-decoration:underline" v-if="rowData.DataType===10" @click="goHotelOrder('ScenTicketOrder',rowData)">{{rowData.TCNUM}}</span>
<span style="cursor: pointer;text-decoration:underline" v-if="rowData.DataType===11" @click="goHotelOrder('FoodOrder',rowData)">{{rowData.TCNUM}}</span>
<span style="cursor: pointer;text-decoration:underline" v-if="rowData.DataType===15" @click="goHand('JumpReport',rowData)">{{rowData.TCNUM}}</span>
<span style="cursor: pointer;text-decoration:underline" v-if="rowData.DataType===16" @click="goHand('JumpReport',rowData)">{{rowData.TCNUM}}</span>
<span style="cursor: pointer;text-decoration:underline" v-if="rowData.DataType===15" @click="goHand('JumpReport',rowData,15)">{{rowData.TCNUM}}</span>
<span style="cursor: pointer;text-decoration:underline" v-if="rowData.DataType===16" @click="goHand('planeTicketOrder',rowData,16)">{{rowData.TCNUM}}</span>
</div>`,
props: {
rowData: {
......@@ -770,14 +770,33 @@ Vue.component("TCNUMJump", {
}
},
methods: {
goHand(path,rowData){
let TCID=rowData.TCID;
let BranchId=rowData.OutBranchId;
this.$router.push({
path: "/" + path,
query: {'ReTCID':TCID,"BranchId":BranchId,blank: "y"}
});
goHand(path,rowData,type){
if(type==15){
let TCID=rowData.TCID;
let BranchId=rowData.OutBranchId;
this.$router.push({
path: "/" + path,
query: {'ReTCID':TCID,"BranchId":BranchId,blank: "y"}
});
}if(type==16){
this.planeTicketOrder(path,rowData)
}
},
// crm核算统计
planeTicketOrder(path,item){
let data = [
{
path: path,
OrderId: item.TCID
},
];
let href = this.domainManager().crmRoutingUrl +
"automaticLogin?token=" +
this.getLocalStorage().token +
"&data=" +
JSON.stringify(data);
window.open(href);
},
goHotelOrder(path,rowData){
let TCID=rowData.TCID;
if(rowData.DataType==9){
......
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