From 56d13900e2d74eeb9e22a9d86dc929640a676f6f Mon Sep 17 00:00:00 2001
From: web <candymxq888@outlook.com>
Date: 星期一, 17 三月 2025 17:21:43 +0800
Subject: [PATCH] fix:修改框架,初始化项目模板

---
 src/views/facility/valveDevice/index.vue |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/views/facility/valveDevice/index.vue b/src/views/facility/valveDevice/index.vue
index bd9fac2..cc46c63 100644
--- a/src/views/facility/valveDevice/index.vue
+++ b/src/views/facility/valveDevice/index.vue
@@ -14,7 +14,7 @@
 import commonParameters from "@/api/configuration/commonParameters/index.js";
 import waterFacilityParameter from "@/api/configuration/facilityParameter/index.js";
 import {PREURL} from '@/config/index'
-import setPostParams from "../../../utils/searchParams.js";
+import setPostParams from "@/utils/searchParams.js";
 const route = useRoute();
 const preUrl = ref(PREURL);
 const {proxy} = getCurrentInstance();
@@ -39,7 +39,7 @@
 const pageParam = ref({
     total: 0,
     limit: 0,
-    page: 1,
+    page: 1,q
 })
 const tableData = ref([]);
 const inpTip = '请输入', selTip = '请选择';
@@ -103,7 +103,7 @@
 //查询监控点
 const areaList = ref();
 const getArea = async () => {
-    await areaApi().search({limit: 10000, page: 1}).then((res) => {
+    await areaApi().search({limit: 100, page: 1}).then((res) => {
         areaList.value = res.data.list
     })
 }
@@ -111,7 +111,7 @@
 //查询供应商
 const supplierList = ref();
 const getSupplier = async () => {
-    await supplierApi().search({limit: 10000, page: 1}).then((res) => {
+    await supplierApi().search({limit: 100, page: 1}).then((res) => {
         console.log("供应商" + res.data.list);
         supplierList.value = res.data.list
     })

--
Gitblit v1.9.3