From 936816316bc546839853a952a038dbecc57df8c3 Mon Sep 17 00:00:00 2001 From: chaiyapeng <3535863041@qq.com> Date: Sat, 31 Aug 2024 19:43:16 +0800 Subject: [PATCH 1/9] =?UTF-8?q?=E5=89=8D=E5=8F=B0=E5=88=86=E7=A6=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/settings.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/settings.js b/src/settings.js index 6a0b09f..8d4fd2b 100644 --- a/src/settings.js +++ b/src/settings.js @@ -7,12 +7,12 @@ module.exports = { /** * 是否系统布局配置 */ - showSettings: false, + showSettings: true, /** * 是否显示顶部导航 */ - topNav: false, + topNav: true, /** * 是否显示 tagsView @@ -22,7 +22,7 @@ module.exports = { /** * 是否固定头部 */ - fixedHeader: false, + fixedHeader: true, /** * 是否显示logo @@ -32,7 +32,7 @@ module.exports = { /** * 是否显示动态标题 */ - dynamicTitle: false, + dynamicTitle: true, /** * @type {string | array} 'production' | ['production', 'development'] From 660fc0b7390cb49f607afb2aa13107a1cbf3b378 Mon Sep 17 00:00:00 2001 From: chaiyapeng <3535863041@qq.com> Date: Sun, 1 Sep 2024 10:53:49 +0800 Subject: [PATCH 2/9] =?UTF-8?q?=E8=B4=AD=E4=B9=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/port/port/employee.vue | 40 +++++++++++++++++++++++++++++++- 1 file changed, 39 insertions(+), 1 deletion(-) diff --git a/src/views/port/port/employee.vue b/src/views/port/port/employee.vue index a6897fd..24660f1 100644 --- a/src/views/port/port/employee.vue +++ b/src/views/port/port/employee.vue @@ -5,7 +5,7 @@

{{connector.connectorName}}

- 购买 + 购买
产品图片:

@@ -143,6 +143,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -235,12 +266,14 @@ export default { news:"", reason:"", }, + buyForm:{}, // IP查询归属地 dialogFormVisible:false, dialogFormVisible1:false, dialogFormVisible2:false, dialogFormVisible3:false, dialogFormVisible4:false, + dialogFormVisible5:false, dialogTableVisible:false, }; }, @@ -257,6 +290,11 @@ export default { watch: {}, //方法集合", methods: { + //购买 + buy(connector){ + this.buyForm=connector; + this.dialogFormVisible5=true; + }, // 气象预警 testWeather(){ From 1ab469fa88e1c287c84b4714f426f3e77a0bb31a Mon Sep 17 00:00:00 2001 From: chaiyapeng <3535863041@qq.com> Date: Sun, 1 Sep 2024 16:20:46 +0800 Subject: [PATCH 3/9] =?UTF-8?q?=E8=B4=AD=E4=B9=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/port/port/index.js | 9 +++++++++ src/views/port/port/employee.vue | 24 +++++++++++++++++++++++- src/views/port/port/index.vue | 16 ++++++++++++---- 3 files changed, 44 insertions(+), 5 deletions(-) diff --git a/src/api/port/port/index.js b/src/api/port/port/index.js index 2b74f23..827af15 100644 --- a/src/api/port/port/index.js +++ b/src/api/port/port/index.js @@ -70,3 +70,12 @@ export function getWeather() { method: 'GET' }) } + +//购买 +export function doBuyInterface(data) { + return request({ + url: '/system/buy/doBuyInterface', + method: 'post', + data:data + }) +} diff --git a/src/views/port/port/employee.vue b/src/views/port/port/employee.vue index 24660f1..0dad770 100644 --- a/src/views/port/port/employee.vue +++ b/src/views/port/port/employee.vue @@ -1,5 +1,6 @@