|
@@ -4,6 +4,9 @@
|
|
|
<div class="communal-title">
|
|
|
<div>签证费用标准</div>
|
|
|
<div class="communal-box">
|
|
|
+ <el-select style="width: 150px;margin-right: 10px;" @change="visaFeeTypechange" v-model="visaFeeType" placeholder="签证费用类型">
|
|
|
+ <el-option v-for="(item,index) in visaFeeTypearr" :key="index" :label="item.label" :value="item.value"></el-option>
|
|
|
+ </el-select>
|
|
|
<el-input placeholder="国家" v-model="input" clearable style="width: 350px;">
|
|
|
</el-input>
|
|
|
<el-button @click="Inquireclick()" type="primary" style="margin-left: 10px;">搜 索</el-button>
|
|
@@ -119,6 +122,13 @@ export default {
|
|
|
userId: 0,
|
|
|
total: 0, // 总数据条数
|
|
|
visaFeeType:0,
|
|
|
+ visaFeeTypearr:[{
|
|
|
+ label: '因公',
|
|
|
+ value: 0
|
|
|
+ }, {
|
|
|
+ label: '因私',
|
|
|
+ value: 1
|
|
|
+ }],
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
@@ -161,6 +171,10 @@ export default {
|
|
|
that.$message.error("数据加载失败,请稍联系信息部!");
|
|
|
});
|
|
|
},
|
|
|
+ visaFeeTypechange(){
|
|
|
+ this.currentPage = 1;
|
|
|
+ this.QueryVisaCountryFeeCosts();
|
|
|
+ },
|
|
|
HotelData() {
|
|
|
this.QueryVisaCountryFeeCosts();
|
|
|
},
|