Commit 2ea542e7 authored by 黄奎's avatar 黄奎

页面修改

parent d00ef0ec
......@@ -58,6 +58,16 @@
</el-date-picker>
</span>
</li>
<li>
<span>
<em>供应商</em>
<el-select v-model="msg.Supplier" placeholder="请选择">
<el-option :label="$t('pub.unlimitedSel')" :value='0'></el-option>
<el-option v-for="(item,index) in SupplierList" :key="index" :label="item.Name" :value="item.ID">
</el-option>
</el-select>
</span>
</li>
<li>
<span>
<em>酒店</em>
......@@ -252,6 +262,8 @@
Star: 0,
//价格等级
PriceLevel: 0,
//供应商
Supplier: 0,
},
beforeCheck: {
disabledDate: time => {
......@@ -297,6 +309,8 @@
showHQinfo: true,
//酒店温馨提示列表
HotelTipList: [],
//供应商列表
SupplierList: [],
HotelList: [],
dataList: [],
isShow: false,
......@@ -326,6 +340,16 @@
};
},
methods: {
// 获取供应商
initSupplier() {
this.apipost("supplier_post_GetAllList", {
Type: 1
}, res => {
if (res.data.resultCode === 1) {
this.SupplierList = res.data.data;
}
}, err => {});
},
GotoHotel(HotelId) {
this.$router.push({
path: "HotelManagement",
......@@ -559,6 +583,7 @@
},
},
mounted() {
this.initSupplier();
this.getBranchList();
this.getProvinceList(651, 1);
this.GetHotelList();
......@@ -581,7 +606,7 @@
.classHong {
background-color: rgb(255, 55, 55);
color:#fff;
color: #fff;
}
.classWang {
......
......@@ -419,7 +419,6 @@
}, res => {
if (res.data.resultCode == 1) {
this.IsOperation = res.data.data.IsOperation;
console.log(res.data.data.IsOperation)
let list = res.data.data.HotelOrderListReport;
this.CreateBy = res.data.data.CreateBy;
this.CreateByPhoto = res.data.data.CreateByPhoto;
......
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