Commit 9c468175 authored by 华国豪's avatar 华国豪 🙄

1

parent f5d93dba
...@@ -1869,7 +1869,7 @@ ...@@ -1869,7 +1869,7 @@
<el-tooltip effect="dark" content="更多" placement="top-start" style="float:left"> <el-tooltip effect="dark" content="更多" placement="top-start" style="float:left">
<el-popover width='100' trigger="hover"> <el-popover width='100' trigger="hover">
<div class="groupTourOrder_more"> <div class="groupTourOrder_more">
<div @click="">旅客名单</div> <div @click="goToPassenger(item)">旅客名单</div>
<div @click="toTrip(item)">出团通知书({{SetNoticeMsg.OutNotice==1?'OK':'暂定'}})</div> <div @click="toTrip(item)">出团通知书({{SetNoticeMsg.OutNotice==1?'OK':'暂定'}})</div>
<div v-if="isEditOrderCreate==1" @click="getSalerInfo(item)">修改业务员</div> <div v-if="isEditOrderCreate==1" @click="getSalerInfo(item)">修改业务员</div>
<div @click='zhuanLoading = true,OPRemarkMsg.OrderId = item.OrderId'>OP备注</div> <div @click='zhuanLoading = true,OPRemarkMsg.OrderId = item.OrderId'>OP备注</div>
...@@ -1896,7 +1896,7 @@ ...@@ -1896,7 +1896,7 @@
<span class="RL-remarkTitle" v-if="item.GuestList.length>0">名单:</span> <span class="RL-remarkTitle" v-if="item.GuestList.length>0">名单:</span>
<p class="RL-redType RL-remarkCon" v-if="item.GuestList.length>0"> <p class="RL-redType RL-remarkCon" v-if="item.GuestList.length>0">
<span style="color:blue !important" v-for="(childItem) in item.GuestList" <span style="color:blue !important" v-for="(childItem) in item.GuestList"
@click="">{{childItem.userName}}</span> @click="goToPassenger(childItem, 2)">{{childItem.userName}}</span>
<!-- <span style="color:blue !important" v-for="(childItem) in item.GuestList" <!-- <span style="color:blue !important" v-for="(childItem) in item.GuestList"
@click="goUrl('TravelPassengerList',msg.TCID,childItem.OrderId,'旅客名单')">{{childItem.userName}}</span> --> @click="goUrl('TravelPassengerList',msg.TCID,childItem.OrderId,'旅客名单')">{{childItem.userName}}</span> -->
</p> </p>
...@@ -2205,7 +2205,7 @@ ...@@ -2205,7 +2205,7 @@
<span class="RL-remarkTitle" v-if="childItem.GuestList.length>0">名单:</span> <span class="RL-remarkTitle" v-if="childItem.GuestList.length>0">名单:</span>
<span class="RL-redType RL-remarkCon" v-if="childItem.GuestList.length>0"> <span class="RL-redType RL-remarkCon" v-if="childItem.GuestList.length>0">
<span style="color:blue !important" v-for="(fourthItem) in childItem.GuestList" <span style="color:blue !important" v-for="(fourthItem) in childItem.GuestList"
@click="goUrl('TravelPassengerList',msg.TCID,fourthItem.OrderId,'旅客名单')">{{fourthItem.userName}}</span> @click="goToPassenger2(msg.TCID, fourthItem.OrderId, 2)">{{fourthItem.userName}}</span>
</span> </span>
<p v-if="childItem.CancelGuestList.length>0"> <p v-if="childItem.CancelGuestList.length>0">
<span class="">取消名单:</span> <span class="">取消名单:</span>
...@@ -3279,8 +3279,8 @@ ...@@ -3279,8 +3279,8 @@
PayStatus: "-1", PayStatus: "-1",
//zk新增 //zk新增
TCID: 0, TCID: 0,
downList: "",
}, },
downList: "",
//返回数据 //返回数据
currentPage: 1, currentPage: 1,
total: 0, total: 0,
...@@ -3568,7 +3568,7 @@ ...@@ -3568,7 +3568,7 @@
SetShouSunClick(OrderId, GuestNum) { SetShouSunClick(OrderId, GuestNum) {
this.shousunDialog = true; this.shousunDialog = true;
this.SetShouSunGuestNum = GuestNum this.SetShouSunGuestNum = GuestNum
this.$nextTick(() => { this.$nextTick(() => {
this.$refs.childShou.getShouSunList(OrderId); this.$refs.childShou.getShouSunList(OrderId);
}) })
}, },
...@@ -5272,6 +5272,21 @@ ...@@ -5272,6 +5272,21 @@
}); });
}, },
//跳转到旅客名单 //跳转到旅客名单
goToPassenger2(TCID, OrderID, dis) {
this.$router.push({
name: "passengerSaleList",
query: {
id: OrderID,
tcid: TCID,
tcnum: this.ConfigData.Config.TCNUM,
isOrder: 1,
blank: "y",
isDis: dis,
tab: "旅客名单"
}
});
},
//跳转到旅客名单
goToPassenger(item, dis) { goToPassenger(item, dis) {
this.$router.push({ this.$router.push({
name: "passengerSaleList", name: "passengerSaleList",
......
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