From e358d69fc18870584dd2d9f531910b7838ea27d9 Mon Sep 17 00:00:00 2001 From: wangting <wangting@vci-tech.com> Date: 星期四, 02 一月 2025 09:58:53 +0800 Subject: [PATCH] 调整行点击后的回调 --- Source/plt-web/plt-web-ui/src/App.vue | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/Source/plt-web/plt-web-ui/src/App.vue b/Source/plt-web/plt-web-ui/src/App.vue index 20bdc54..e32eb14 100644 --- a/Source/plt-web/plt-web-ui/src/App.vue +++ b/Source/plt-web/plt-web-ui/src/App.vue @@ -5,6 +5,9 @@ </div> </template> <script> +import {getIcons} from "@/api/UI/Icons"; +import store from "@/store"; + export default { name: "app", data() { @@ -12,7 +15,10 @@ }, watch: {}, created() { - + //鑾峰彇鎵�鏈夊浘鏍囷紝瀛樺湪session + getIcons().then(res => { + store.dispatch("setIcons", res.data.data); + }) }, methods: {}, computed: {} -- Gitblit v1.9.3