Commit 9b1acc8c authored by 黄奎's avatar 黄奎

1111

parent a5a69829
...@@ -1750,14 +1750,8 @@ ...@@ -1750,14 +1750,8 @@
</div> </div>
<div class="groupTourOrderSearch clearfix"> <div class="groupTourOrderSearch clearfix">
<div class="RL_leftTitle"> <div class="RL_leftTitle">
<span class="RL_Title" style="cursor: pointer; color: blue" @click=" <span class="RL_Title" style="cursor: pointer; color: blue"
goUrlTravelControl( @click=" gotoTCList( ConfigData.Config ) ">{{ ConfigData.Config.LtName }} {{ ConfigData.Config.TCNUM }}({{
'团控列表',
'TravelControlList',
ConfigData.Config.TCID,
ConfigData.Config.TCNUM
)
">{{ ConfigData.Config.LtName }} {{ ConfigData.Config.TCNUM }}({{
ConfigData.Config.TCID ConfigData.Config.TCID
}})</span> }})</span>
<span class="RL_CompanyName" v-if="ConfigData.Config.OutBranchName">{{ <span class="RL_CompanyName" v-if="ConfigData.Config.OutBranchName">{{
...@@ -2684,8 +2678,7 @@ ...@@ -2684,8 +2678,7 @@
@click="goToPassenger2(msg.TCID, fourthItem.OrderId, 2)">{{ fourthItem.userName }} @click="goToPassenger2(msg.TCID, fourthItem.OrderId, 2)">{{ fourthItem.userName }}
<span style="color:#f56c6c">{{fourthItem.VisaType==1?'(个签)':''}} <span style="color:#f56c6c">{{fourthItem.VisaType==1?'(个签)':''}}
</span> </span>
<span v-if="fourthItem.TicketOutType==1" <span v-if="fourthItem.TicketOutType==1" style="color:#409EFF;">{{fourthItem.TicketOutTypeStr}}
style="color:#409EFF;">{{fourthItem.TicketOutTypeStr}}
</span> </span>
<span v-else-if="fourthItem.TicketOutType==2" <span v-else-if="fourthItem.TicketOutType==2"
style="color:#67C23A">{{fourthItem.TicketOutTypeStr}} style="color:#67C23A">{{fourthItem.TicketOutTypeStr}}
...@@ -5059,6 +5052,7 @@ ...@@ -5059,6 +5052,7 @@
}, },
goUrlTravelControl(name, path, id, tcmun) { goUrlTravelControl(name, path, id, tcmun) {
this.$router.push({ this.$router.push({
name: path, name: path,
query: { query: {
...@@ -5069,6 +5063,26 @@ ...@@ -5069,6 +5063,26 @@
}, },
}); });
}, },
//
gotoTCList(item) {
var path = "TravelControlList";
if (item.TeamType == 0) {
path = "TravelControlList";
} else if (item.TeamType == 1) {
path = "TravelControlListSale";
} else if (item.TeamType == 2) {
path = "oneDayTrip";
}
this.$router.push({
name: path,
query: {
id: item.TCID,
tcmun: item.TCNUM,
blank: "y",
tab: "团控列表",
},
});
},
//判断是否显示取消按钮 //判断是否显示取消按钮
getDelShow(obj) { getDelShow(obj) {
if (obj.MiniAppUserId > 0 && obj.Income > 0) { if (obj.MiniAppUserId > 0 && obj.Income > 0) {
......
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