From 1826574d41fa55cc56a9682d60e10180a6cbede5 Mon Sep 17 00:00:00 2001 From: leiqiaochu Date: Thu, 30 Mar 2023 18:01:00 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20bug=20=E4=BA=A7=E5=93=81=E6=8C=89?= =?UTF-8?q?=E9=92=AE=E6=9D=83=E9=99=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../device/Product/Detail/BasicInfo/indev.vue | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/src/views/device/Product/Detail/BasicInfo/indev.vue b/src/views/device/Product/Detail/BasicInfo/indev.vue index 80ccde40..0c6ceeff 100644 --- a/src/views/device/Product/Detail/BasicInfo/indev.vue +++ b/src/views/device/Product/Detail/BasicInfo/indev.vue @@ -28,11 +28,16 @@ }} - {{ - productStore.current.accessName - ? productStore.current.accessName - : '配置接入方式' - }} + {{ + productStore.current.accessName + ? productStore.current.accessName + : '配置接入方式' + }} {{ dayjs(productStore.current.createTime).format('YYYY-MM-DD HH:mm:ss') @@ -55,6 +60,8 @@ import { useProductStore } from '@/store/product'; import Save from '../../Save/index.vue'; import dayjs from 'dayjs'; import { useRoute } from 'vue-router'; +import { useMenuStore } from '@/store/menu'; +const menuSotre = useMenuStore(); const productStore = useProductStore(); const route = useRoute(); const saveRef = ref();