Commit a821af40 authored by youjie's avatar youjie

no message

parent f3992fd7
......@@ -929,6 +929,7 @@ export default {
},
// 上传旅客名单
uploadHandleChange(){
if(this.loading) return
let msg = {
OrderId: this.uploadOrderId,
GuestFileList: [this.GuestFile]
......@@ -937,8 +938,8 @@ export default {
this.apipost(
"dict_post_SetSaleOrderGuestFile",msg,
res => {
if (res.data.resultCode == 1) {
this.loading = false;
if (res.data.resultCode == 1) {
this.Success(res.data.message);
this.uploadOrderId=0
this.GuestFile=''
......
......@@ -262,7 +262,7 @@
<div class="content-header">
<span>{{ x.key }}</span>
<div>
<i class="el-icon-plus"></i>
<i class="el-icon-plus" @click="chosenNewHotel(x.key)"></i>
<i class="el-icon-delete-solid" @click="removeHotelHandler(xi, -1)"></i>
</div>
</div>
......@@ -320,7 +320,7 @@
</div>
<div class="content-Car content-picker-text">
<div>
<span @click="showChoose">选择酒店</span>
<span @click="chosenNewHotel('')">选择酒店</span>
</div>
<div v-if="!newDate">
<span>*<span>请先选择需要预定的日期</span></span>
......@@ -637,8 +637,10 @@
}
this.cancelHotelCount()
},
showChoose(){
chosenNewHotel(key) {
if(key){
this.newDate = key
}
if(!this.newDate) return this.Error('请先选择日期')
this.showChosenHotel = true
},
......
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