Commit e129233c authored by 黄奎's avatar 黄奎

页面修改

parent a31ca5d9
......@@ -280,7 +280,7 @@
<li>
<span>
<em>{{ $t("system.quety_area") }}</em>
<el-select v-model="msg.QCountry" clearable class="w150" filterable
<el-select v-model="msg.QCountry" clearable class="w150" filterable :disabled="isDisableCountry"
@change="getProvinceList(msg.QCountry, 1)" :placeholder="$t('hotel.hotel_country')">
<el-option v-for="item in countryList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option>
</el-select>
......@@ -561,6 +561,7 @@
QFileEndDate: "", //报价上传结束日期
IsUpFile: 0, //是否上传报价(1-已上传,2-未上传)
},
isDisableCountry: false, //是否禁用国家查询
};
},
methods: {
......@@ -864,11 +865,12 @@
},
mounted() {
this.userInfo = this.getLocalStorage();
this.getEmployeeList();
this.GetHotelPirceStockAuth();
this.getCountryList();
this.GetHotelTypeList();
this.GetHotelPirceTypeList();
if (this.userInfo.EmployeeId == 2604 || this.userInfo.EmployeeId == 2739 || this.userInfo.EmployeeId == 2758 ||
this.userInfo.EmployeeId == 2773) {
this.msg.QCountry = 651;
this.isDisableCountry = true;
}
this.selectResource();
},
created() {
if (this.$route.query.hasOwnProperty("cache")) {
......@@ -894,7 +896,11 @@
if (id) {
this.msg.ID = id;
}
this.selectResource();
this.getEmployeeList();
this.GetHotelPirceStockAuth();
this.getCountryList();
this.GetHotelTypeList();
this.GetHotelPirceTypeList();
},
};
......
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