chore: 更新依赖包,对应兼容处理

This commit is contained in:
xiaoxian521 2024-03-05 15:36:07 +08:00
parent 131d1e8ada
commit 91bebdae94
3 changed files with 378 additions and 142 deletions

View File

@ -49,7 +49,7 @@
},
"dependencies": {
"@amap/amap-jsapi-loader": "^1.0.1",
"@howdyjs/mouse-menu": "2.0.9",
"@howdyjs/mouse-menu": "^2.1.3",
"@logicflow/core": "^1.2.22",
"@logicflow/extension": "^1.2.22",
"@pureadmin/descriptions": "^1.2.0",
@ -78,7 +78,7 @@
"path": "^0.12.7",
"pinia": "^2.1.7",
"pinyin-pro": "^3.19.6",
"plus-pro-components": "^0.0.1",
"plus-pro-components": "^0.0.2",
"qrcode": "^1.5.3",
"qs": "^6.11.2",
"responsive-storage": "^2.2.0",
@ -91,7 +91,7 @@
"vue": "^3.4.21",
"vue-i18n": "^9.10.1",
"vue-json-pretty": "^2.3.0",
"vue-pdf-embed": "1.2.1",
"vue-pdf-embed": "^2.0.2",
"vue-router": "^4.3.0",
"vue-tippy": "^6.4.1",
"vue-types": "^5.1.1",
@ -122,11 +122,11 @@
"@types/qrcode": "^1.5.5",
"@types/qs": "^6.9.12",
"@types/sortablejs": "^1.15.8",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@vitejs/plugin-vue": "^5.0.4",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"autoprefixer": "^10.4.17",
"autoprefixer": "^10.4.18",
"boxen": "^7.1.1",
"cloc": "^2.11.0",
"cssnano": "^6.0.5",
@ -147,14 +147,14 @@
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.71.1",
"stylelint": "^16.2.1",
"stylelint-config-recess-order": "^4.6.0",
"stylelint-config-recess-order": "^5.0.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-prettier": "^5.0.0",
"svgo": "^3.2.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vite": "^5.1.5",
"vite-plugin-cdn-import": "^0.3.5",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-fake-server": "^2.1.1",

501
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -21,7 +21,7 @@ const source =
const handleDocumentRender = () => {
loading.value = false;
pageCount.value = pdfRef.value.pageCount;
pageCount.value = pdfRef.value.doc.numPages;
};
const showAllPagesChange = () => {
@ -29,6 +29,7 @@ const showAllPagesChange = () => {
};
const onPrint = () => {
//
pdfRef.value.print();
};
</script>