权限控制

This commit is contained in:
季圣华
2021-05-18 20:18:30 +08:00
parent ba4819f3a8
commit a3a1d64c26
52 changed files with 424 additions and 206 deletions

View File

@@ -11,6 +11,9 @@
wrapClassName="ant-modal-cust-warp"
style="top:5%;height: 100%;overflow-y: hidden">
<template slot="footer">
<a-button key="print" type="primary" @click="handlePrint">
打印
</a-button>
<a-button key="back" @click="handleCancel">
取消
</a-button>
@@ -1011,6 +1014,9 @@
close() {
this.$emit('close');
this.visible = false;
},
handlePrint() {
window.print();
}
}
}