Commit aad08fb9 authored by zhengke's avatar zhengke

修改

parent 6930bb6e
...@@ -793,12 +793,24 @@ ...@@ -793,12 +793,24 @@
.groupts .leftSetInfo,.groupts .GO_TPright{ .groupts .leftSetInfo,.groupts .GO_TPright{
float:left; float:left;
} }
.KT_Scenic{
width:400px;
max-height: 400px;
overflow: auto;
}
.KT_Scenic table th{
height:30px;
}
.KT_Scenic table td{
padding:0 5px!important;
}
._TravelPricePopover .GOScenicDiv{ ._TravelPricePopover .GOScenicDiv{
width: 500px; width: 500px;
max-height: 400px; max-height: 400px;
overflow: auto; overflow: auto;
} }
._TravelPricePopover table { ._TravelPricePopover table,.KT_Scenic table{
padding: 10px 0 0 20px; padding: 10px 0 0 20px;
background-color: #ededed; background-color: #ededed;
border-collapse: collapse; border-collapse: collapse;
...@@ -808,13 +820,13 @@ ...@@ -808,13 +820,13 @@
width: 100%; width: 100%;
} }
._TravelPricePopover table ._color_666 { ._TravelPricePopover table ._color_666 ,.KT_Scenic table ._color_666{
background-color: #ededed; background-color: #ededed;
color: #666666; color: #666666;
padding: 5px; padding: 5px;
} }
._TravelPricePopover table td { ._TravelPricePopover table td,.KT_Scenic table td{
background-color: #ffffff; background-color: #ffffff;
padding: 9px 0; padding: 9px 0;
color: #333333; color: #333333;
...@@ -1751,7 +1763,7 @@ ...@@ -1751,7 +1763,7 @@
<th width="200">操作</th> <th width="200">操作</th>
</tr> </tr>
<tr> <tr>
<td v-show="list.length==0" colspan="16" align="center">暂无数据</td> <td v-show="list.length==0" colspan="17" align="center">暂无数据</td>
</tr> </tr>
<template v-for="op in list"> <template v-for="op in list">
<tbody class="not_border"> <tbody class="not_border">
...@@ -2113,7 +2125,24 @@ ...@@ -2113,7 +2125,24 @@
<!-- <span>暂无名单</span>--> <!-- <span>暂无名单</span>-->
<!-- </span>--> <!-- </span>-->
<span style="display: block">房间信息<span v-if="item.oneSex>0" <span style="display: block">房间信息<span v-if="item.oneSex>0"
style="color: #e95252">({{item.oneSex==1?'单男':'单女'}})</span>:{{item.orderGuestHouseStr}}</span> style="color: #e95252">({{item.oneSex==1?'单男':'单女'}})</span>
{{item.orderGuestHouseStr}}
<el-popover trigger="click" popper-class="KT_Scenic">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr class="_color_666" style="text-align:center;">
<th width="150">景点名称</th>
<th width="60">人数</th>
<th width="60">退款金额</th>
</tr>
<tr v-for="fItem in item.orderBackScenicList" style="text-align:center;">
<td style="text-align:left;">{{fItem.couponsName}}</td>
<td>{{fItem.number}}</td>
<td>{{fItem.backMoney}}</td>
</tr>
</table>
<span slot="reference" v-if="item.orderBackScenicList&&item.orderBackScenicList.length>0" style="color:#f56c6c;margin-left:20px;cursor:pointer;">退景点</span>
</el-popover>
</span>
<!-- <span v-if="item.tipMoney" style="color:red">(小费:{{item.tipMoney}})</span> --> <!-- <span v-if="item.tipMoney" style="color:red">(小费:{{item.tipMoney}})</span> -->
<div> <div>
<span v-if="item.opTipMoney==''&&item.tipMoney!=''" style="color:red">(小费:{{item.tipMoney}})</span> <span v-if="item.opTipMoney==''&&item.tipMoney!=''" style="color:red">(小费:{{item.tipMoney}})</span>
...@@ -3497,10 +3526,7 @@ ...@@ -3497,10 +3526,7 @@
this.getTicheng(); this.getTicheng();
}, },
getScenicRefund(TCID,OrderId) { getScenicRefund(TCID,OrderId) {
console.log(TCID,'TCID');
console.log(OrderId,'OrderId');
this.OrderId = OrderId; this.OrderId = OrderId;
this.ScenicRefundList=[];
let msg = { let msg = {
TCID:TCID, TCID:TCID,
OrderId:OrderId OrderId:OrderId
...@@ -3509,7 +3535,6 @@ ...@@ -3509,7 +3535,6 @@
"sellorder_get_GetScenicRefundList", msg, "sellorder_get_GetScenicRefundList", msg,
res => { res => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
console.log(res,'resss');
this.ScenicRefundList = res.data.data; this.ScenicRefundList = res.data.data;
this.getGOScenictWO(); this.getGOScenictWO();
} }
...@@ -3538,8 +3563,6 @@ ...@@ -3538,8 +3563,6 @@
this.addMsg.OrderBackScenicList.push(obj); this.addMsg.OrderBackScenicList.push(obj);
} }
}) })
console.log(this.SciencNameList,'SciencNameList');
console.log(this.addMsg.OrderBackScenicList,'ScenicRefundList');
}, },
platformOrderMethods() { platformOrderMethods() {
...@@ -3600,7 +3623,6 @@ ...@@ -3600,7 +3623,6 @@
}, },
// 点击修改 // 点击修改
getDetail(obj) { getDetail(obj) {
console.log(obj,'objjjj');
this.goLVurl.orderId = obj.orderId; this.goLVurl.orderId = obj.orderId;
this.goLVurl.tcid = obj.tcid; this.goLVurl.tcid = obj.tcid;
this.goLVurl.tcnum = obj.tcnum; this.goLVurl.tcnum = obj.tcnum;
...@@ -3611,6 +3633,10 @@ ...@@ -3611,6 +3633,10 @@
this.getMinPrice(obj.orderId); this.getMinPrice(obj.orderId);
this.addMsg.OrderId = obj.orderId; this.addMsg.OrderId = obj.orderId;
this.IsChargeLossOrders = obj.isChargeLossOrders; this.IsChargeLossOrders = obj.isChargeLossOrders;
//zk-点击修改清空景点
this.ScenicRefundList=[];
this.SciencNameList=[];
this.apipost( this.apipost(
"sellorder_post_GetOrderEntity", { "sellorder_post_GetOrderEntity", {
ID: obj.orderId ID: obj.orderId
...@@ -4397,7 +4423,6 @@ ...@@ -4397,7 +4423,6 @@
Number(this.addMsg.AirticketNum); Number(this.addMsg.AirticketNum);
this.addMsg.IsChildrenTour = this.IsChildrenTour; this.addMsg.IsChildrenTour = this.IsChildrenTour;
this.addMsg.IsBirdDiscount = this.addObj.IsBirdDiscount; this.addMsg.IsBirdDiscount = this.addObj.IsBirdDiscount;
this.getGOScenictWO();
this.apipost( this.apipost(
"sellorder_post_SetOrderInfo_02", "sellorder_post_SetOrderInfo_02",
this.addMsg, this.addMsg,
......
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