From 963828e3b5070928470cb8e79ae8c051a53d926d Mon Sep 17 00:00:00 2001 From: 潘志宝 <979469083@qq.com> Date: 星期三, 20 十一月 2024 10:05:19 +0800 Subject: [PATCH] VITE_STATIC_DIR --- src/views/data/channel/opcda/tag/index.vue | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/views/data/channel/opcda/tag/index.vue b/src/views/data/channel/opcda/tag/index.vue index 17d4011..53b3a4a 100644 --- a/src/views/data/channel/opcda/tag/index.vue +++ b/src/views/data/channel/opcda/tag/index.vue @@ -153,7 +153,6 @@ import {ref,reactive} from "vue"; import TagImportForm from '../../common/tag/TagImportForm.vue' import {onBeforeUnmount, onMounted} from "vue"; - import * as OpcdaTagApi from "@/api/data/channel/opcda/tag"; defineOptions({name: 'ModBusTag'}) @@ -170,7 +169,7 @@ pageSize: 10, serverId: undefined, tagName: undefined, - serverName: undefined + serverName: undefined, currentValue:false, }) const queryFormRef = ref() // 搜索的表单 @@ -272,7 +271,7 @@ // 创建定时器 intervalId = setInterval(async () => { if(queryParams.currentValue){ - const page = await OpcdaTagApi.getOpcdaTagPage(queryParams) + const page = await OpcDaTagApi.getOpcdaTagPage(queryParams) list.value = page.list total.value = page.total } -- Gitblit v1.9.3