Commit e129233c authored by 黄奎's avatar 黄奎

页面修改

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