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

1111

parent a5a69829
......@@ -1750,14 +1750,8 @@
</div>
<div class="groupTourOrderSearch clearfix">
<div class="RL_leftTitle">
<span class="RL_Title" style="cursor: pointer; color: blue" @click="
goUrlTravelControl(
'团控列表',
'TravelControlList',
ConfigData.Config.TCID,
ConfigData.Config.TCNUM
)
">{{ ConfigData.Config.LtName }} {{ ConfigData.Config.TCNUM }}({{
<span class="RL_Title" style="cursor: pointer; color: blue"
@click=" gotoTCList( ConfigData.Config ) ">{{ ConfigData.Config.LtName }} {{ ConfigData.Config.TCNUM }}({{
ConfigData.Config.TCID
}})</span>
<span class="RL_CompanyName" v-if="ConfigData.Config.OutBranchName">{{
......@@ -2684,8 +2678,7 @@
@click="goToPassenger2(msg.TCID, fourthItem.OrderId, 2)">{{ fourthItem.userName }}
<span style="color:#f56c6c">{{fourthItem.VisaType==1?'(个签)':''}}
</span>
<span v-if="fourthItem.TicketOutType==1"
style="color:#409EFF;">{{fourthItem.TicketOutTypeStr}}
<span v-if="fourthItem.TicketOutType==1" style="color:#409EFF;">{{fourthItem.TicketOutTypeStr}}
</span>
<span v-else-if="fourthItem.TicketOutType==2"
style="color:#67C23A">{{fourthItem.TicketOutTypeStr}}
......@@ -5059,6 +5052,7 @@
},
goUrlTravelControl(name, path, id, tcmun) {
this.$router.push({
name: path,
query: {
......@@ -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) {
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