From 0fe40860cfe3484a9b3566ac34df05c2b7df2dc1 Mon Sep 17 00:00:00 2001 From: roger_mac Date: Thu, 28 Dec 2023 22:01:14 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=BA=E8=B6=85=E6=97=B6=E5=94=AE=E7=A5=A8?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E6=B7=BB=E5=8A=A0=E8=AF=B4=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/mock/index.vue | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/src/views/mock/index.vue b/src/views/mock/index.vue index 061cccf..67f0f22 100644 --- a/src/views/mock/index.vue +++ b/src/views/mock/index.vue @@ -306,7 +306,7 @@ const json_data = computed( // 处理开始和停止按键的逻辑 const running = ref(false) -const disableAll= ref(false) +const disableAll = ref(false) const startBtn_disable = ref(false) const startBtn_loading = ref(false) @@ -326,7 +326,7 @@ const handleStart = () => { const params = {ip: selectIp.value} let mock_config = {} mockConfigItems.forEach((item) => { - mock_config[item]= checkedMockConfig.value.indexOf(item) >= 0 + mock_config[item] = checkedMockConfig.value.indexOf(item) >= 0 }) console.log(mock_config) const data = JSON.stringify({mock_config: mock_config, json_data: allJsonData.value}) @@ -366,7 +366,8 @@ onMounted( > - + {{ api.name }} + + + @@ -495,4 +510,7 @@ div.api_desc { font-size: 14px; } +.el-icon { + font-size: 14px; +}