From 231f038235d0a784130292a05cf3abc103c26f17 Mon Sep 17 00:00:00 2001 From: zhaokai Date: Wed, 20 Aug 2025 10:10:38 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E4=B8=8A=E6=B8=B8=E5=B9=B3=E5=8F=B0?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E7=BD=91=E7=BB=9C=E7=B1=BB=E5=9E=8B=E5=AD=97?= =?UTF-8?q?=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/editDialog.vue | 12 ++++++++++++ .../components/infoDialog.vue | 13 +++++++++++++ 2 files changed, 25 insertions(+) diff --git a/src/views/database/superior_platform_management/components/editDialog.vue b/src/views/database/superior_platform_management/components/editDialog.vue index dc7904e..5661e98 100644 --- a/src/views/database/superior_platform_management/components/editDialog.vue +++ b/src/views/database/superior_platform_management/components/editDialog.vue @@ -77,6 +77,11 @@ const frequencyOptions = [ { name: "每周", id: 2 }, { name: "每月", id: 3 }, ]; +const networkTypeOptions = [ + { name: "公网", id: 1 }, + { name: "内网", id: 2 }, + { name: "专线", id: 3 }, +]; const options = [ { key: "platformName", label: "平台名称" }, { key: "platformCode", label: "平台编码" }, @@ -105,6 +110,13 @@ const options = [ valueKey: "id", options: frequencyOptions, }, + { + key: "networkType", + label: "网络类型", + type: "select", + valueKey: "id", + options: networkTypeOptions, + }, ]; const fnGetData = async () => { if (!props.corpInfoId) return; diff --git a/src/views/database/superior_platform_management/components/infoDialog.vue b/src/views/database/superior_platform_management/components/infoDialog.vue index c2de0de..9f66a71 100644 --- a/src/views/database/superior_platform_management/components/infoDialog.vue +++ b/src/views/database/superior_platform_management/components/infoDialog.vue @@ -66,6 +66,11 @@ const frequencyOptions = [ { name: "每周", id: 2 }, { name: "每月", id: 3 }, ]; +const networkTypeOptions = [ + { name: "公网", id: 1 }, + { name: "内网", id: 2 }, + { name: "专线", id: 3 }, +]; const options = [ { key: "platformName", label: "平台名称", disabled: true }, { key: "platformCode", label: "平台编码", disabled: true }, @@ -98,6 +103,14 @@ const options = [ options: frequencyOptions, disabled: true, }, + { + key: "networkType", + label: "网络类型", + type: "select", + valueKey: "id", + options: networkTypeOptions, + disabled: true, + }, ]; const fnGetData = async () => { if (!props.corpInfoId) return; From 8efde7fc270973d441e57063ff7a4bf821a5476a Mon Sep 17 00:00:00 2001 From: zhaokai Date: Wed, 20 Aug 2025 14:39:03 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E4=B8=8A=E6=B8=B8=E5=B9=B3=E5=8F=B0?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E7=BD=91=E7=BB=9C=E7=B1=BB=E5=9E=8B=E5=AD=97?= =?UTF-8?q?=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../superior_platform_management/components/editDialog.vue | 4 ++-- .../superior_platform_management/components/infoDialog.vue | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/database/superior_platform_management/components/editDialog.vue b/src/views/database/superior_platform_management/components/editDialog.vue index 5661e98..e3ec837 100644 --- a/src/views/database/superior_platform_management/components/editDialog.vue +++ b/src/views/database/superior_platform_management/components/editDialog.vue @@ -78,8 +78,8 @@ const frequencyOptions = [ { name: "每月", id: 3 }, ]; const networkTypeOptions = [ - { name: "公网", id: 1 }, - { name: "内网", id: 2 }, + { name: "互联网", id: 1 }, + { name: "专网", id: 2 }, { name: "专线", id: 3 }, ]; const options = [ diff --git a/src/views/database/superior_platform_management/components/infoDialog.vue b/src/views/database/superior_platform_management/components/infoDialog.vue index 9f66a71..f172a25 100644 --- a/src/views/database/superior_platform_management/components/infoDialog.vue +++ b/src/views/database/superior_platform_management/components/infoDialog.vue @@ -67,8 +67,8 @@ const frequencyOptions = [ { name: "每月", id: 3 }, ]; const networkTypeOptions = [ - { name: "公网", id: 1 }, - { name: "内网", id: 2 }, + { name: "互联网", id: 1 }, + { name: "专网", id: 2 }, { name: "专线", id: 3 }, ]; const options = [