From 71a590f029a7c4470c98ade60c5c739ca0e649c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9B=B9=E7=A3=8A?= <45566618@qq.com> Date: Mon, 2 Mar 2026 17:38:15 +0800 Subject: [PATCH] =?UTF-8?q?=E6=91=84=E5=83=8F=E5=A4=B4=E3=80=81=E6=B8=A9?= =?UTF-8?q?=E6=B9=BF=E5=BA=A6=E8=AE=A1=E3=80=81=E6=B0=B4=E8=A1=A8=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/iot/tplink/camera/camera.data.ts | 12 +- .../camera/components/CameraInfoForm.vue | 2 +- .../camera/components/ConfigInfoForm.vue | 4 +- .../network/components/ConfigInfoForm.vue | 2 +- src/views/iot/tplink/network/network.data.ts | 11 +- src/views/iot/tq/water/index.vue | 11 +- src/views/iot/tq/water/water.data.ts | 121 +++++++++++------- src/views/iot/yiweilian/humid/humid.api.ts | 8 ++ src/views/iot/yiweilian/humid/humid.data.ts | 52 ++++++-- src/views/iot/yiweilian/humid/index.vue | 21 ++- 10 files changed, 181 insertions(+), 63 deletions(-) diff --git a/src/views/iot/tplink/camera/camera.data.ts b/src/views/iot/tplink/camera/camera.data.ts index dd549f3..d0a3e91 100644 --- a/src/views/iot/tplink/camera/camera.data.ts +++ b/src/views/iot/tplink/camera/camera.data.ts @@ -4,6 +4,11 @@ import dayjs from 'dayjs'; //列表数据 export const columns: BasicColumn[] = [ + { + title: '序号', + align: "center", + dataIndex: 'id' + }, { title: '设备序号', align: "center", @@ -19,6 +24,11 @@ export const columns: BasicColumn[] = [ align: "center", dataIndex: 'deviceModel' }, + { + title: '设备维度', + align: "center", + dataIndex: 'dimension' + }, { title: '设备类型', align: "center", @@ -264,7 +274,7 @@ export const formSchema: FormSchema[] = [ } }, { - label: 'FTP用户', + label: 'FTP账户', field: 'ftpUsername', component: 'Input', show: ({model})=>{ diff --git a/src/views/iot/tplink/camera/components/CameraInfoForm.vue b/src/views/iot/tplink/camera/components/CameraInfoForm.vue index 75f33d1..c84cba8 100644 --- a/src/views/iot/tplink/camera/components/CameraInfoForm.vue +++ b/src/views/iot/tplink/camera/components/CameraInfoForm.vue @@ -75,7 +75,7 @@ - + diff --git a/src/views/iot/tplink/camera/components/ConfigInfoForm.vue b/src/views/iot/tplink/camera/components/ConfigInfoForm.vue index 2704800..74e2618 100644 --- a/src/views/iot/tplink/camera/components/ConfigInfoForm.vue +++ b/src/views/iot/tplink/camera/components/ConfigInfoForm.vue @@ -12,7 +12,7 @@ - + @@ -40,7 +40,7 @@ - + diff --git a/src/views/iot/tplink/network/components/ConfigInfoForm.vue b/src/views/iot/tplink/network/components/ConfigInfoForm.vue index a450e08..8d02338 100644 --- a/src/views/iot/tplink/network/components/ConfigInfoForm.vue +++ b/src/views/iot/tplink/network/components/ConfigInfoForm.vue @@ -40,7 +40,7 @@ - + diff --git a/src/views/iot/tplink/network/network.data.ts b/src/views/iot/tplink/network/network.data.ts index 330e41e..4b67788 100644 --- a/src/views/iot/tplink/network/network.data.ts +++ b/src/views/iot/tplink/network/network.data.ts @@ -1,9 +1,13 @@ import {BasicColumn} from '/@/components/Table'; import {FormSchema} from '/@/components/Table'; -import dayjs from 'dayjs'; //列表数据 export const columns: BasicColumn[] = [ + { + title: '序号', + align: "center", + dataIndex: 'id' + }, { title: '设备序号', align: "center", @@ -19,6 +23,11 @@ export const columns: BasicColumn[] = [ align: "center", dataIndex: 'deviceModel' }, + { + title: '设备维度', + align: "center", + dataIndex: 'dimension' + }, { title: '设备类型', align: "center", diff --git a/src/views/iot/tq/water/index.vue b/src/views/iot/tq/water/index.vue index 9afbb1c..ccf8cf2 100644 --- a/src/views/iot/tq/water/index.vue +++ b/src/views/iot/tq/water/index.vue @@ -6,6 +6,7 @@