Commit 10f618fd authored by youjie's avatar youjie

no message

parent 2dec9e69
......@@ -78,6 +78,8 @@
</span>
</li>
<li>
<input v-if="HOTEL_memorandum" type="button" class="normalBtn" value="备忘录"
@click="goUrl('memorandumList')" />
<input type="button" class="normalBtn" value="温馨提示"
@click="showNotice=true,resetPageIndex(),GetHotelTipList()" />
<input type="button" class="normalBtn" value="查询" @click="getList()" />
......@@ -345,9 +347,19 @@
]
}
},
HOTEL_memorandum: true
};
},
methods: {
goUrl(name, id) {
this.$router.push({
name: name,
query: {
blank: "y",
tab: "备忘录"
}
});
},
// 获取供应商
initSupplier() {
this.apipost("supplier_post_GetAllList", {
......@@ -606,6 +618,11 @@
},
},
mounted() {
let userinfo = this.getLocalStorage();
let ActionMenuCode = userinfo.ActionMenuCode;
if (ActionMenuCode.indexOf("HOTEL_memorandum") != -1) {
this.HOTEL_memorandum = true;
}
this.initSupplier();
this.getBranchList();
this.getProvinceList("651", 1);
......
This diff is collapsed.
......@@ -942,6 +942,13 @@ export default {
meta: {
title: '酒店查询统计'
},
}, {
path: '/memorandumList', //酒店查询统计
name: 'memorandumList',
component: resolve => require(['@/components/Hotel/memorandum/memorandumList'], resolve),
meta: {
title: '备忘录'
},
},
{
path: '/HotelWorkList', //酒店工作表
......
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