From 630763848a857445992dfe4831984394a1de2d82 Mon Sep 17 00:00:00 2001 From: liudianxin Date: Mon, 27 Apr 2020 12:04:52 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8A=E4=BC=A0=EF=BC=8C=E6=8B=89=E4=B8=80?= =?UTF-8?q?=E4=B8=8B=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/block-radius.vue | 2 +- src/pages/fwzc_fwcs.vue | 90 ++++++++++++++++++++++++++++----- 2 files changed, 78 insertions(+), 14 deletions(-) diff --git a/src/components/block-radius.vue b/src/components/block-radius.vue index 9c6e8c1..2548bf2 100644 --- a/src/components/block-radius.vue +++ b/src/components/block-radius.vue @@ -19,7 +19,7 @@ export default { .block_radius { background-color: #fff; border-radius: 10px; - padding: 10px; + padding: 20px; } diff --git a/src/pages/fwzc_fwcs.vue b/src/pages/fwzc_fwcs.vue index 71293c6..0520771 100644 --- a/src/pages/fwzc_fwcs.vue +++ b/src/pages/fwzc_fwcs.vue @@ -1,14 +1,32 @@ @@ -20,13 +38,26 @@ export default { blockRadius }, data: () => ({ - activeName: "second" + btnList: [ + { icon: "", text: "数据服务", id: 0 }, + { icon: "", text: "时空服务", id: 1 }, + { icon: "", text: "视频服务", id: 2 }, + { icon: "", text: "感知服务", id: 3 }, + { icon: "", text: "综合服务", id: 4 } + ], + activeBtn: 0, + input3: "", + select: "GET", + optionType: [ + { label: "GET", value: "GET" }, + { label: "POST", value: "POST" } + ] }), computed: {}, watch: {}, methods: { - handleClick(tab, event) { - console.log(tab, event); + clickBtn(val) { + this.activeBtn = val; } }, mounted() {} @@ -36,11 +67,44 @@ export default { + - -- 2.26.0