From 54e63a095a18cb77e514e593917dcde738ab3955 Mon Sep 17 00:00:00 2001 From: xiangheng <11675084@qq.com> Date: Fri, 10 May 2024 15:03:50 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8D=87=E7=BA=A7=E4=BE=9D=E8=B5=96=EF=BC=8C?= =?UTF-8?q?=E4=BC=98=E5=8C=96=E9=83=A8=E5=88=86ts=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- admin/package.json | 24 +++++++++---------- .../verifition/Verify/VerifyPoints.vue | 10 ++++---- .../default/components/sidebar/menu.vue | 11 +++++---- .../default/components/sidebar/side.vue | 10 ++++++-- admin/src/stores/modules/user.ts | 4 ++-- .../flow/flow_apply/components/ViewForm.vue | 12 ++++++++-- admin/src/views/flow/flow_apply/finish.vue | 5 ---- .../flow/flow_history/components/ViewForm.vue | 17 +++++++++---- admin/src/views/flow/flow_history/done.vue | 1 - admin/src/views/monitor_project/edit.vue | 20 ++++++++-------- admin/src/views/monitor_project/index.vue | 4 ++-- .../views/setting/permission/menu/edit.vue | 7 +++--- server/README.md | 5 ++++ 13 files changed, 77 insertions(+), 53 deletions(-) diff --git a/admin/package.json b/admin/package.json index 889105f..2912c83 100644 --- a/admin/package.json +++ b/admin/package.json @@ -14,9 +14,9 @@ "dependencies": { "@element-plus/icons-vue": "^2.3.1", "@highlightjs/vue-plugin": "^2.1.0", - "@logicflow/core": "^1.2.26", - "@logicflow/extension": "^1.2.26", - "@vue/shared": "^3.4.23", + "@logicflow/core": "^1.2.27", + "@logicflow/extension": "^1.2.27", + "@vue/shared": "^3.4.27", "@vueuse/core": "^10.9.0", "@wangeditor/editor": "^5.1.23", "@wangeditor/editor-for-vue": "^5.1.12", @@ -25,16 +25,16 @@ "crypto-js": "^4.2.0", "css-color-function": "^1.3.3", "echarts": "^5.5.0", - "element-plus": "^2.7.0", + "element-plus": "^2.7.2", "highlight.js": "^11.9.0", "lodash-es": "^4.17.21", "nprogress": "^0.2.0", "pinia": "^2.1.7", "query-string": "^9.0.0", "vform3-builds": "^3.0.10", - "vue": "^3.4.23", + "vue": "^3.4.27", "vue-clipboard3": "^2.0.0", - "vue-echarts": "^6.6.9", + "vue-echarts": "^6.7.2", "vue-router": "^4.3.2", "vue3-video-play": "^1.3.2", "vuedraggable": "^4.1.0" @@ -42,7 +42,7 @@ "devDependencies": { "@rushstack/eslint-patch": "^1.10.2", "@types/lodash-es": "^4.17.12", - "@types/node": "^20.12.7", + "@types/node": "^20.12.11", "@types/nprogress": "^0.2.3", "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", @@ -51,21 +51,21 @@ "@vue/tsconfig": "^0.5.1", "autoprefixer": "^10.4.19", "eslint": "^8.57.0", - "eslint-plugin-vue": "^9.25.0", + "eslint-plugin-vue": "^9.26.0", "execa": "^8.0.1", "fs-extra": "^11.2.0", "postcss": "^8.4.38", "prettier": "^3.2.5", "rollup-plugin-visualizer": "^5.12.0", - "sass": "^1.75.0", + "sass": "^1.77.0", "tailwindcss": "^3.4.3", "typescript": "~5.4.5", "unplugin-auto-import": "^0.17.5", - "unplugin-vue-components": "^0.26.0", - "vite": "^5.2.9", + "unplugin-vue-components": "^0.27.0", + "vite": "^5.2.11", "vite-plugin-compression": "^0.5.1", "vite-plugin-style-import": "^2.0.0", "vite-plugin-svg-icons": "^2.0.1", - "vue-tsc": "^2.0.13" + "vue-tsc": "^2.0.16" } } diff --git a/admin/src/components/verifition/Verify/VerifyPoints.vue b/admin/src/components/verifition/Verify/VerifyPoints.vue index 71828cf..93fba7b 100644 --- a/admin/src/components/verifition/Verify/VerifyPoints.vue +++ b/admin/src/components/verifition/Verify/VerifyPoints.vue @@ -40,8 +40,8 @@ 'line-height': '20px', 'border-radius': '50%', position: 'absolute', - top: parseInt(tempPoint.y - 10) + 'px', - left: parseInt(tempPoint.x - 10) + 'px' + top: tempPoint.y - 10 + 'px', + left: tempPoint.x - 10 + 'px' }" > {{ index + 1 }} @@ -62,7 +62,7 @@ -