Commit 45b84b09 authored by 黄奎's avatar 黄奎

页面修改

parent 92d7c9d1
......@@ -212,6 +212,7 @@
</li>
<li style="margin-right:50px;">
<button class="normalBtn" type="button" @click="GetHoltelInventory()">{{$t('pub.searchBtn')}}</button>
<button class="normalBtn" type="button" @click="DownLoadDinnerSalesBoard()" style="display:none;">下载</button>
</li>
</ul>
</div>
......@@ -385,7 +386,23 @@
err => {}
);
},
//下载餐厅统计
DownLoadDinnerSalesBoard() {
if (this.msg.DiningID <= 0) {
this.Info("请选择餐厅!");
return;
}
this.msg.loading = true;
let qMsg = {
queryMsg: this.msg,
uid: this.getLocalStorage().EmployeeId
};
let fileName = "餐厅下载" + this.$commonUtils.getCurrentDate() + ".xls";
this.GetLocalFile("dinner_get_downloadDinnerSalesBoard", qMsg, fileName,
res => {
this.msg.loading = false;
});
}
},
mounted() {
//初始化日历
......
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