Commit 7e03b1ba authored by huangyuanyuan's avatar huangyuanyuan
parents 14481bc4 59c4661a
...@@ -396,6 +396,7 @@ ...@@ -396,6 +396,7 @@
.groupTourOrder_tickets_black { .groupTourOrder_tickets_black {
color: #000000; color: #000000;
text-decoration: underline; text-decoration: underline;
display: inline-block;
} }
.RegistrationList { .RegistrationList {
...@@ -880,6 +881,23 @@ ...@@ -880,6 +881,23 @@
margin: 5px; margin: 5px;
text-align: center; text-align: center;
} }
.rgsureBtn{
color: #fff;
padding: 0 15px;
height: 25px;
background: #297BEF;
border: 1px solid #297BEF;
cursor: pointer;
border-radius: 15px;
margin-left: 10px;
}
.rgsureBtn:hover{
background-color: #297BEF;
}
.rgComTips{
text-align:left;font-size:12px;
margin-left:10px;
}
</style> </style>
<template> <template>
...@@ -1729,13 +1747,13 @@ ...@@ -1729,13 +1747,13 @@
<p class="RL-redType RL-remarkCon">{{item.Remarks}}</p> <p class="RL-redType RL-remarkCon">{{item.Remarks}}</p>
</div> </div>
</td> </td>
<td colspan="5" class="groupTourOrder_remarks" style="height: 40px;"> <td colspan="6" class="groupTourOrder_remarks" style="height: 40px;">
<div class="clearfix RL-MARK"> <div class="clearfix RL-MARK">
<span class="RL-opremarkTitle">OP备注:</span> <span class="RL-opremarkTitle">OP备注:</span>
<p class="RL-redType RL-remarkCon">{{item.OP_Remarks ? item.OP_Remarks : '无'}}</p> <p class="RL-redType RL-remarkCon">{{item.OP_Remarks ? item.OP_Remarks : '无'}}</p>
</div> </div>
</td> </td>
<td colspan="5" style="height: 40px;cursor: pointer;" <td colspan="4" style="height: 40px;cursor: pointer;"
@click="goUrlSFD('SalesFinancialDetail', '销售财务单据', item)"> @click="goUrlSFD('SalesFinancialDetail', '销售财务单据', item)">
<div> <div>
<span>财务单据:</span> <span>财务单据:</span>
...@@ -1998,21 +2016,23 @@ ...@@ -1998,21 +2016,23 @@
</div> </div>
</td> </td>
<td colspan="5" class="groupTourOrder_remarks" style="height: 40px;"> <td colspan="6" style="height: 40px;">
<div class="clearfix RL-MARK" style="width:75%;float:left;"> <div class="clearfix RL-MARK" style="width:75%;float:left;">
<span class="RL-opremarkTitle">OP备注:</span> <span class="RL-opremarkTitle">OP备注:</span>
<span class="RL-redType RL-remarkCon" style="width:80%;display:inline-block;">{{childItem.OP_Remarks ? childItem.OP_Remarks : '无'}}</span> <span class="RL-redType RL-remarkCon" style="width:80%;display:inline-block;">{{childItem.OP_Remarks ? childItem.OP_Remarks : '无'}}</span>
</div> </div>
<div style="float:right;" v-if="childItem.IsCanClear==0"> <div style="float:right;" v-if="childItem.IsCanClear==0">
<input type="button" value="确认订单" class="normalBtn" @click="clearSeat(childItem,1)" style="display:block;"/> <input type="button" value="确认订单" class="rgsureBtn" @click="clearSeat(childItem,1)" style="display:block;"/>
<div style="width:85px;color:red;">该订单未确认会被系统自动清位</div> <div class="rgComTips">该订单<span style="color:red;">未确认</span></div>
<div class="rgComTips">被系统自动清位</div>
</div> </div>
<div style="float:right;" v-else> <div style="float:right;" v-else>
<input type="button" value="取消订单" class="normalBtn" @click="clearSeat(childItem,2)" style="display:block;"/> <input type="button" value="取消确认" class="normalBtn" @click="clearSeat(childItem,2)" style="display:block;padding:0 15px;height:25px;"/>
<div style="width:85px;color:red;text-align:left;">该订单已确认不会被系统清位</div> <div class="rgComTips">该订单<span style="color:green">已确认</span></div>
<div class="rgComTips">会被系统清位</div>
</div> </div>
</td> </td>
<td colspan="5" style="height: 40px;cursor: pointer;" <td colspan="4" style="height: 40px;cursor: pointer;"
@click="goUrlSFD('SalesFinancialDetail', '销售财务单据', childItem)"> @click="goUrlSFD('SalesFinancialDetail', '销售财务单据', childItem)">
<div> <div>
<span>财务单据:</span> <span>财务单据:</span>
...@@ -2299,13 +2319,13 @@ ...@@ -2299,13 +2319,13 @@
</span> </span>
</div> </div>
</td> </td>
<td colspan="5" class="groupTourOrder_remarks" style="height: 40px;"> <td colspan="6" class="groupTourOrder_remarks" style="height: 40px;">
<div class="clearfix RL-MARK"> <div class="clearfix RL-MARK">
<span class="RL-opremarkTitle">OP备注:</span> <span class="RL-opremarkTitle">OP备注:</span>
<span class="RL-redType RL-remarkCon">{{item.OP_Remarks ? item.OP_Remarks : '无'}}</span> <span class="RL-redType RL-remarkCon">{{item.OP_Remarks ? item.OP_Remarks : '无'}}</span>
</div> </div>
</td> </td>
<td colspan="5" style="height: 40px;cursor: pointer;" <td colspan="4" style="height: 40px;cursor: pointer;"
@click="goUrlSFD('SalesFinancialDetail', '销售财务单据', item)"> @click="goUrlSFD('SalesFinancialDetail', '销售财务单据', item)">
<div> <div>
<span>财务单据:</span> <span>财务单据:</span>
...@@ -4727,27 +4747,15 @@ ...@@ -4727,27 +4747,15 @@
}, },
//清位 //清位
clearSeat(item,type){ clearSeat(item,type){
let msg={};
if(type==1){ if(type==1){
let msg = { msg.IsCanClear = 1;
IsCanClear:1, msg.OrderId = item.OrderId
OrderId:item.OrderId
}
this.apipost('sellorder_post_SetOrderIsCanClear',msg,
res => {
if (res.data.resultCode == 1) {
this.Success(res.data.message)
this.getList();
} else {
this.Error(res.data.message)
}
},
err => {})
}else{ }else{
let msg = { msg.IsCanClear = 0;
IsCanClear:0, msg.OrderId = item.OrderId
OrderId:item.OrderId }
} this.apipost('sellorder_post_SetOrderIsCanClear',msg,
this.apipost('sellorder_post_SetOrderIsCanClear',msg,
res => { res => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.Success(res.data.message) this.Success(res.data.message)
...@@ -4758,7 +4766,6 @@ ...@@ -4758,7 +4766,6 @@
}, },
err => {}) err => {})
} }
}
}, },
mounted() { mounted() {
let userInfo = this.getLocalStorage(); let userInfo = this.getLocalStorage();
......
...@@ -484,6 +484,10 @@ ...@@ -484,6 +484,10 @@
<a style="corsor:pointer;" <a style="corsor:pointer;"
:href="domainManager().ViittoFileUrl+item.WordPath">{{$t('Operation.Op_downLoadword')}}</a> :href="domainManager().ViittoFileUrl+item.WordPath">{{$t('Operation.Op_downLoadword')}}</a>
</p> </p>
<p class="travelnowrap" v-if="item.ClearOrderHour>0">
<span>已设定清位</span>
<span class="TCL-greenType">{{item.ClearOrderHour}}小时</span>
</p>
</div> </div>
</div> </div>
<div class="el-col" style="width:190px;"> <div class="el-col" style="width:190px;">
......
...@@ -163,8 +163,7 @@ ...@@ -163,8 +163,7 @@
<div v-for="subItem in item.FlightList"> <div v-for="subItem in item.FlightList">
<span style="height:25px; line-height:25px;"> <span style="height:25px; line-height:25px;">
<a style="color: #ff0066;font-weight: bold;">{{subItem.Flight_number}}</a> {{subItem.FlightDateStr}} <a style="color: #ff0066;font-weight: bold;">{{subItem.Flight_number}}</a> {{subItem.FlightDateStr}}
{{subItem.Departure_time}} {{subItem.DepartureName}} {{subItem.TicketArrivalTime}} {{subItem.Departure_time}} {{subItem.dName}} {{subItem.TicketArrivalTime}} {{subItem.aName}}
{{subItem.ArrivalCityName}}
</span> </span>
</div> </div>
</td> </td>
......
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