Commit 60e2a48e5b7f26dfdf2d39823874076020344e4b

Authored by fengwotao
1 parent a7dbd7ac

pref:优化测试地址样式

... ... @@ -4,14 +4,16 @@
4 4 <a-row>
5 5 <Button @click="handleExcute" type="primary"> 执行测试请求 </Button>
6 6 </a-row>
7   - <a-row class="mt-8" type="flex" justify="center" align="middle">
8   - <a-col :span="2"> 测试地址 </a-col>
9   - <a-col :span="22">
10   - <Tag color="blue" style="width: 31.6vw; white-space: normal; height: auto">
11   - {{ apiUrl?.split('{?')[0] }}
12   - </Tag>
13   - </a-col>
14   - </a-row>
  7 + <div style="display: flex; justify-content: space-between">
  8 + <a-row class="mt-8" type="flex" justify="center" align="middle">
  9 + <a-col :span="3"> 测试地址 </a-col>
  10 + <a-col :span="21">
  11 + <Tag color="blue" style="width: 31.6vw; white-space: normal; height: auto">
  12 + {{ apiUrl?.split('{?')[0] }}
  13 + </Tag>
  14 + </a-col>
  15 + </a-row>
  16 + </div>
15 17 </div>
16 18 <div class="mt-8">
17 19 <a-row type="flex" justify="center">
... ...