Commit 301369a8 authored by zhengke's avatar zhengke

修改订房查询及订房管理

parent c297895b
...@@ -117,7 +117,7 @@ ...@@ -117,7 +117,7 @@
<th>备注</th> <th>备注</th>
</tr> </tr>
<tr v-if="list.length==0"> <tr v-if="list.length==0">
<td colspan="10">暂无数据</td> <td colspan="11">暂无数据</td>
</tr> </tr>
<tbody v-for="(outItem,outindex) in list" :class="{roomReservationsSplitTrCss:outindex%2!=0}"> <tbody v-for="(outItem,outindex) in list" :class="{roomReservationsSplitTrCss:outindex%2!=0}">
<template v-for="(item,index) in outItem.StaticsReportList"> <template v-for="(item,index) in outItem.StaticsReportList">
......
...@@ -5,6 +5,12 @@ ...@@ -5,6 +5,12 @@
margin: 5px auto; margin: 5px auto;
font-size: 12px; font-size: 12px;
} }
.rq_importNote {
color: red;
}
.rq_disImNote {
color: #ea6d6d;
}
</style> </style>
...@@ -294,7 +300,9 @@ ...@@ -294,7 +300,9 @@
<tr v-if="subItem.SupplierToDmcRemarks"> <tr v-if="subItem.SupplierToDmcRemarks">
<td width="70" style="text-align:right;">供应商对地接备注:</td> <td width="70" style="text-align:right;">供应商对地接备注:</td>
<td> <td>
<span :class="{'rq_disImNote':subItem.SupplierToDmcHotelStatus==1&&DateMinus(subItem.SupplierToDmcHotelStatusTime)<=5,'rq_importNote':subItem.SupplierToDmcHotelStatus==2&&DateMinus(subItem.SupplierToDmcHotelStatusTime)<=5}">
{{subItem.SupplierToDmcRemarks}} {{subItem.SupplierToDmcRemarks}}
</span>
</td> </td>
</tr> </tr>
</table> </table>
...@@ -330,6 +338,7 @@ ...@@ -330,6 +338,7 @@
</div> </div>
</template> </template>
<script> <script>
import moment from 'moment'
import comCheckHotel from "../commonPage/comCheckHotel.vue"; import comCheckHotel from "../commonPage/comCheckHotel.vue";
export default { export default {
data() { data() {
...@@ -388,6 +397,14 @@ ...@@ -388,6 +397,14 @@
let str = `comCheckHotel${index}${subIndex}` let str = `comCheckHotel${index}${subIndex}`
this.$refs[str][0].getCheckHotel(); this.$refs[str][0].getCheckHotel();
}, },
DateMinus(sDate) {
var newDate = moment(sDate).format("YYYY-MM-DD");
var sdate = new Date(newDate.replace(/-/g, "/"));
var now = new Date();
var days = now.getTime() - sdate.getTime();
var day = Math.abs(parseInt(days / (1000 * 60 * 60 * 24)));
return day;
},
getItem(index, subIndex) { getItem(index, subIndex) {
this.checkedIndex = index this.checkedIndex = index
this.checkedsubIndex = subIndex this.checkedsubIndex = subIndex
...@@ -528,6 +545,7 @@ ...@@ -528,6 +545,7 @@
}) })
}); });
this.list = list; this.list = list;
console.log(this.list,'listttt');
this.$forceUpdate(); this.$forceUpdate();
} }
} else { } else {
......
...@@ -65,8 +65,42 @@ ...@@ -65,8 +65,42 @@
{{item.LeaderName}} <template v-if="item.LeaderTel">(电话: {{item.LeaderTel}})</template> {{item.LeaderName}} <template v-if="item.LeaderTel">(电话: {{item.LeaderTel}})</template>
</td> </td>
<td> <td>
<el-tooltip class="item" effect="dark" content="酒店信息" placement="top-start"> <a class="hotelLink" slot="reference" @click="getHotelList(item.TCID,item.NewCombinationNum),hotelUseDetail=true">酒店使用情况</a>
<el-popover placement="bottom" width="800" trigger="click" popper-class="rq_HotelDetails"> <a class="hotelLink" slot="reference" @click="getClickItem(item),dijieDialog=true">备注</a>
</td>
</tr>
<tr>
<td colspan="8" style="text-align:left;padding-left:5px;">
<div class="rq_remark" v-if="item.IsBookTeam==2&&item.Numbers>=0">
<span class="rq_reSpan">取消团体提醒</span>
<span class="rQ_HtList">
<span v-for="subItem in item.Numbers"></span>
</span>
</div>
<div class="rq_remark" v-if="item.SupplierHotelStatus==1||item.SupplierHotelStatus==2&&item.Numbers>=0">
<span class="rq_reSpan">酒店提醒</span>
<span class="rQ_HTremark">
<span v-for="subItem in item.Numbers"></span>
</span>
</div>
<div><span class="rq_reSpan">注意事项</span> {{item.SupplierRemarks}}</div>
</td>
</tr>
<tr>
<td colspan="8" style="text-align:left;padding-left:5px;">
对地接备注: {{item.SupplierToDmcRemarks}}
</td>
</tr>
</tbody>
</table>
</div>
<transition name="el-zoom-in-top">
<div class="page-component-up" v-show="top>100" @click="goTop">
<i class="el-icon-arrow-up"></i>
</div>
</transition>
<el-dialog custom-class='w800' title="酒店信息" :visible.sync="hotelUseDetail" center>
<table class="rq_HotelTable" v-loading="hotelLoading"> <table class="rq_HotelTable" v-loading="hotelLoading">
<tr> <tr>
<th width="120"> <th width="120">
...@@ -151,21 +185,14 @@ ...@@ -151,21 +185,14 @@
</template> </template>
</tbody> </tbody>
</template> </template>
<tfoot>
<tr>
<td colspan="7">
<input type="button" value="保存" @click="saveSupplierjourneyorder(HotelList)"
class="normalBtn SaveR_Btn" />
</td>
</tr>
</tfoot>
</table> </table>
<a class="hotelLink" slot="reference" <div slot="footer" class="dialog-footer">
@click="getHotelList(item.TCID,item.NewCombinationNum)">酒店使用情况</a> <button class="hollowFixedBtn"
</el-popover> @click="hotelUseDetail = false">{{$t('pub.cancelBtn')}}</button> &nbsp;
</el-tooltip> <input type="button" value="保存" @click="saveSupplierjourneyorder(HotelList)" class="normalBtn" />
<el-tooltip class="item" effect="dark" content="酒店信息" placement="top-start"> </div>
<el-popover placement="bottom" width="400" trigger="click" popper-class="rq_HotelDetails"> </el-dialog>
<el-dialog custom-class='w500' title="对地接备注" :visible.sync="dijieDialog" center>
<table> <table>
<tr> <tr>
<td class="SP_RemarkTitle"> <td class="SP_RemarkTitle">
...@@ -176,47 +203,13 @@ ...@@ -176,47 +203,13 @@
</el-input> </el-input>
</td> </td>
</tr> </tr>
<tr>
<td colspan="2">
<input type="button" value="保存" @click="saveSupplierToDmcRemarks" class="normalBtn SaveR_Btn" />
</td>
</tr>
</table>
<a class="hotelLink" slot="reference" @click="getClickItem(item)">备注</a>
</el-popover>
</el-tooltip>
</td>
</tr>
<tr>
<td colspan="8" style="text-align:left;padding-left:5px;">
<div class="rq_remark" v-if="item.IsBookTeam==2&&item.Numbers>=0">
<span class="rq_reSpan">取消团体提醒</span>
<span class="rQ_HtList">
<span v-for="subItem in item.Numbers"></span>
</span>
</div>
<div class="rq_remark" v-if="item.SupplierHotelStatus==1||item.SupplierHotelStatus==2&&item.Numbers>=0">
<span class="rq_reSpan">酒店提醒</span>
<span class="rQ_HTremark">
<span v-for="subItem in item.Numbers"></span>
</span>
</div>
<div><span class="rq_reSpan">注意事项</span> {{item.SupplierRemarks}}</div>
</td>
</tr>
<tr>
<td colspan="8" style="text-align:left;padding-left:5px;">
对地接备注: {{item.SupplierToDmcRemarks}}
</td>
</tr>
</tbody>
</table> </table>
<div slot="footer" class="dialog-footer">
<button class="hollowFixedBtn"
@click="dijieDialog = false">{{$t('pub.cancelBtn')}}</button> &nbsp;
<input type="button" value="保存" @click="saveSupplierToDmcRemarks" class="normalBtn" />
</div> </div>
<transition name="el-zoom-in-top"> </el-dialog>
<div class="page-component-up" v-show="top>100" @click="goTop">
<i class="el-icon-arrow-up"></i>
</div>
</transition>
</div> </div>
</template> </template>
<script> <script>
...@@ -225,6 +218,8 @@ ...@@ -225,6 +218,8 @@
return { return {
loading: false, loading: false,
hotelLoading: false, hotelLoading: false,
hotelUseDetail:false,
dijieDialog:false,
total: 0, total: 0,
top:0, top:0,
msg: { msg: {
...@@ -294,6 +289,7 @@ ...@@ -294,6 +289,7 @@
this.hotelLoading = false; this.hotelLoading = false;
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.Success(res.data.message) this.Success(res.data.message)
this.hotelUseDetail=false;
this.getList(); this.getList();
} else { } else {
this.Error(res.data.message) this.Error(res.data.message)
...@@ -313,7 +309,6 @@ ...@@ -313,7 +309,6 @@
} }
}) })
} }
console.log(this.dataList,'data');
} else { } else {
this.Error(res.data.message) this.Error(res.data.message)
} }
...@@ -350,9 +345,12 @@ ...@@ -350,9 +345,12 @@
}, },
//保存供应商对地接备注 //保存供应商对地接备注
saveSupplierToDmcRemarks() { saveSupplierToDmcRemarks() {
this.loading=true
this.ApiPost2('dmcstatistics_post_SetSupplierToDmcRemarksService', this.RemarkObj, res => { this.ApiPost2('dmcstatistics_post_SetSupplierToDmcRemarksService', this.RemarkObj, res => {
this.hotelLoading = false; this.loading = false;
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.Success(res.data.message);
this.dijieDialog=false;
this.getList(); this.getList();
} else { } else {
this.Error(res.data.message); this.Error(res.data.message);
......
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