Commit 39bbbaff authored by 华国豪's avatar 华国豪 🙄

1

parent 41a504bc
<style> <style>
.heightauto .el-input{
height: auto !important;
}
.addPassenger .btmTitle { .addPassenger .btmTitle {
padding: 0 10px; padding: 0 10px;
margin: 20px 0 20px 0; margin: 20px 0 20px 0;
...@@ -366,6 +369,16 @@ ...@@ -366,6 +369,16 @@
</el-option> </el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item label="景点">
<el-select v-model="addMsg.CouponsIds" multiple placeholder="请选择" class="heightauto">
<el-option
v-for="item in JingDianList"
:key="item.CouponsId"
:label="item.CouponsName"
:value="item.CouponsId">
</el-option>
</el-select>
</el-form-item>
</li> </li>
<li v-for='(item,index) in EconomicCapabilityS'> <li v-for='(item,index) in EconomicCapabilityS'>
<el-form-item :label="item.Name" v-if='item.isShow' :key='index'> <el-form-item :label="item.Name" v-if='item.isShow' :key='index'>
...@@ -664,6 +677,7 @@ ...@@ -664,6 +677,7 @@
SafeReplaceId: "0", SafeReplaceId: "0",
VisaState: 0, //签证状态 VisaState: 0, //签证状态
HouseId:'',//房间信息 HouseId:'',//房间信息
CouponsIds: []
}, },
EconomicCapabilityS: [], EconomicCapabilityS: [],
rules: { rules: {
...@@ -780,9 +794,29 @@ ...@@ -780,9 +794,29 @@
LineId: 0, LineId: 0,
EndDateStr: '', EndDateStr: '',
guoqi: false, guoqi: false,
JingDianList: []
}; };
}, },
methods: { methods: {
getJingDIan: function (){
this.apipost(
"sellorder_post_GetGuestScenicRefundList",
{
TCID: this.addMsg.TCID,
OrderId: this.addMsg.OrderId,
GuestId: this.addMsg.Id
},
res => {
if (res.data.resultCode == 1) {
console.log(res.data.data)
this.JingDianList = res.data.data
}else{
this.$message.error('操作失败')
}
},
err => {}
);
},
CompareDate(d1, d2){ CompareDate(d1, d2){
return ((new Date(d1.replace(/-/g,"\/"))) < (new Date(d2.replace(/-/g,"\/")))); return ((new Date(d1.replace(/-/g,"\/"))) < (new Date(d2.replace(/-/g,"\/"))));
}, },
...@@ -2001,6 +2035,7 @@ ...@@ -2001,6 +2035,7 @@
} }
}, },
mounted() { mounted() {
this.getCountry(); this.getCountry();
this.getMarriageType(); this.getMarriageType();
this.getVisaDeparturesType(); this.getVisaDeparturesType();
...@@ -2027,6 +2062,7 @@ ...@@ -2027,6 +2062,7 @@
this.addMsg.PassportAddress = "湖南"; this.addMsg.PassportAddress = "湖南";
} }
this.addMsg.IssuingAuthority = "公安部出入境管理局"; this.addMsg.IssuingAuthority = "公安部出入境管理局";
this.getJingDIan();
} }
}; };
</script> </script>
...@@ -497,8 +497,11 @@ ...@@ -497,8 +497,11 @@
<commonHotelInfo :HotelObj="item.HotelOrderListReports" :showHotelObj="showHotelObj" <commonHotelInfo :HotelObj="item.HotelOrderListReports" :showHotelObj="showHotelObj"
:TCID="item.TCID" :DMCNum="item.DMCNum" :TCNUM="item.TCNUM" :TCID="item.TCID" :DMCNum="item.DMCNum" :TCNUM="item.TCNUM"
@SetShouPeiShu="SetShouPeiShu(item.TCID,item.ShouPeiStatus)"></commonHotelInfo> @SetShouPeiShu="SetShouPeiShu(item.TCID,item.ShouPeiStatus)"></commonHotelInfo>
<span slot="reference" class="price" <div slot="reference" >
style="cursor:pointer;text-decoration:underline;">酒店预订状况</span> <span class="price"
style="cursor:pointer;text-decoration:underline;">酒店预订状况</span> <span style="color: #e95252">op{{item.OpSureHouse==2 ? '已确认' : '未确认'}}分房</span>
</div>
</el-popover> </el-popover>
</p> </p>
<p class="travelnowrap" v-if="item.LineID==14 && item.IsOpenHotel==1"> <p class="travelnowrap" v-if="item.LineID==14 && item.IsOpenHotel==1">
......
...@@ -41,6 +41,11 @@ ...@@ -41,6 +41,11 @@
.PassengerList2 input.houseno:focus{ .PassengerList2 input.houseno:focus{
border-bottom: 1px solid #e95252; border-bottom: 1px solid #e95252;
} }
.tips__{
color: #e95252;
text-align: center;
margin: 10px;
}
</style> </style>
<template> <template>
...@@ -64,11 +69,12 @@ ...@@ -64,11 +69,12 @@
</table> </table>
</li> </li>
<li> <li>
<input type="button" class="normalBtn" value="分房表确认" @click="querenHotel()"> <input type="button" class="normalBtn" v-if="!allDIs" value="分房表确认" @click="querenHotel()">
<input type="button" class="normalBtn" value="导出报表" @click="exportExcel()"> <input type="button" class="normalBtn" value="导出报表" @click="exportExcel()">
</li> </li>
</ul> </ul>
</div> </div>
<p class="tips__" v-if="allDIs">op已确认分房,不能在进行任何操作</p>
<table <table
style="margin-bottom: 50px;" style="margin-bottom: 50px;"
class="travelpassengerlist" class="travelpassengerlist"
......
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