Commit 253283bf authored by 华国豪's avatar 华国豪 🙄
parents a1d56107 273ba2cf
...@@ -193,7 +193,7 @@ ...@@ -193,7 +193,7 @@
{{subItem.HotelName!=subItem.NewHotelName?""+subItem.NewHotelName:""}} {{subItem.HotelName!=subItem.NewHotelName?""+subItem.NewHotelName:""}}
</td> </td>
<td v-if="childIndex==0" :rowspan="6"> <td v-if="childIndex==0" :rowspan="6">
{{subItem.RealityHouseGuestNum}}/{{subItem.HouseStatistics.NoNeedBed}} {{subItem.HouseStatistics.NeedBed}}/{{subItem.HouseStatistics.NoNeedBed}}
</td> </td>
<td v-if="childIndex==0" :rowspan="6"> <td v-if="childIndex==0" :rowspan="6">
{{subItem.RealityHouseTypeCount}} {{subItem.RealityHouseTypeCount}}
......
...@@ -286,13 +286,22 @@ ...@@ -286,13 +286,22 @@
</tbody> </tbody>
</table> </table>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<span class="pg_checkModule" v-if="isShowSelect"> <!--吉祥航空模板-->
<span class="pg_checkModule" v-if="isShowSelect==1">
选择模板 选择模板
<el-select v-model="checkModule" filterable :placeholder="$t('system.ph_buxian')" class="w180"> <el-select v-model="checkModule" filterable :placeholder="$t('system.ph_buxian')" class="w180">
<el-option label="代理模板" :value="0"></el-option> <el-option label="代理模板" :value="0"></el-option>
<el-option label="航空公司B2B模板" :value="1"></el-option> <el-option label="航空公司B2B模板" :value="1"></el-option>
</el-select> </el-select>
</span> </span>
<!--南方航空模板-->
<span class="pg_checkModule" v-if="isShowSelect==2">
选择模板
<el-select v-model="checkModule" filterable :placeholder="$t('system.ph_buxian')" class="w180">
<el-option label="代码模板" :value="0"></el-option>
<el-option label="南航国际团队" :value="1"></el-option>
</el-select>
</span>
<button class="normalBtn" type="primary" @click="getIsSure()">确认航班信息</button> &nbsp; <button class="normalBtn" type="primary" @click="getIsSure()">确认航班信息</button> &nbsp;
<button class="hollowFixedBtn" @click="outerVisible = false">{{$t('pub.cancelBtn')}}</button> <button class="hollowFixedBtn" @click="outerVisible = false">{{$t('pub.cancelBtn')}}</button>
</div> </div>
...@@ -339,7 +348,7 @@ ...@@ -339,7 +348,7 @@
checkedGJzd: false, checkedGJzd: false,
checkedshuijin: false, checkedshuijin: false,
checkedsc: false, checkedsc: false,
isShowSelect:false, isShowSelect:0,
checkModule:0 checkModule:0
}; };
}, },
...@@ -569,9 +578,9 @@ ...@@ -569,9 +578,9 @@
this.QueryMsg.AirTicketId = this.$route.query.id; this.QueryMsg.AirTicketId = this.$route.query.id;
var alcode = this.$route.query.alcode; var alcode = this.$route.query.alcode;
if(alcode=='HO'){ if(alcode=='HO'){
this.isShowSelect = true; this.isShowSelect = 1;
}else{ }else if(alcode=="CZ"){
this.isShowSelect = false; this.isShowSelect = 2;
} }
this.msg.AirTicketId = this.$route.query.id; this.msg.AirTicketId = this.$route.query.id;
if (this.$route.query.isFromTk != undefined) { if (this.$route.query.isFromTk != undefined) {
......
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