Commit 5ed41b7a authored by 黄奎's avatar 黄奎

酒店查询修改

parent 4050c970
......@@ -55,11 +55,13 @@
</div>
<div class="cm_hotelTitle">
地区筛选:
<el-select filterable v-model="ProvinceId" @change="getCheckHotel()" :placeholder="$t('pub.pleaseSel')">
<el-select filterable v-model="qMsg.ProvinceId" :placeholder="$t('pub.pleaseSel')">
<el-option label="不限" :value='0'></el-option>
<el-option v-for="item in ProvinceList" :label='item.Name' :value='item.ID' :key='item.ID'>
</el-option>
</el-select>
酒店名称: <input type="text" v-model="qMsg.Name" @keyup.enter="getList" placeholder="请输入关键字"/>
<input type="button" value="查询" @click="getCheckHotel()" />
</div>
<div>
<el-tabs type="border-card" v-loading="loading" v-if="IsShow" >
......@@ -85,7 +87,10 @@
loading:false,
dataList: [],
ProvinceList: [],
ProvinceId: 0, //选择个省份编号
qMsg:{
ProvinceId: 0, //选择个省份编号
Name:"",//酒店名称
},
IsShow:false,
ckedHotel:{}
};
......@@ -101,7 +106,8 @@
IsMoreThanZero: 0,
Country: "651",
IsAllHotel: 1,
Province: this.ProvinceId,
Province: this.qMsg.ProvinceId,
Name:this.qMsg.Name,
sDate: this.UseDate
}, res => {
this.loading=false;
......
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