Skip to content

Commit

Permalink
1.3.34 20240319
Browse files Browse the repository at this point in the history
打印页面相关调整
  • Loading branch information
wangraoji committed Mar 19, 2024
1 parent ee6565a commit 139ee1c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/store/modules/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const useCommonStore = defineStore('commonStore', () => {
let processEntityList = ref([]);
// 系统配置
let publicSetting = ref({
webVer: "1.3.33 20240318"
webVer: "1.3.34 20240319"
});
const getEntityList = () => {
return new Promise(async (resolve, reject) => {
Expand Down
9 changes: 7 additions & 2 deletions src/views/customize-menu/components/Printer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,11 @@ const initVfromCom = async () => {
vFormRef.value.reloadOptionData();
}
vFormRef.value.setReadMode();
// window.print();
Print('.printer-content')
//
setTimeout(() => {
Print('.printer-content')
// window.print();
}, 500);
// printMe();
});
}
Expand All @@ -84,6 +87,8 @@ const initVfromCom = async () => {
}
.printer {
padding-top: 30px;
background: #FFF;
min-height: 100%;
.printer-content {
width: 52%;
margin: 0 auto;
Expand Down

0 comments on commit 139ee1c

Please sign in to comment.