Commit 468cda1e98c293b3f3816115e45d93fd6a41409d

Authored by 谭毅彬
1 parent 24143618

添加 Http Code 查询条件

Signed-off-by: TanYibin <5491541@qq.com>
ant-design-vue-jeecg/src/views/system/monitor/ApiLogList.vue
... ... @@ -63,6 +63,11 @@
63 63 </a-form-item>
64 64 </a-col>
65 65 <a-col :xl="6" :lg="7" :md="8" :sm="24">
  66 + <a-form-item label="Http Code">
  67 + <a-input placeholder="请输入 Http Code" v-model="queryParam.httpCode"></a-input>
  68 + </a-form-item>
  69 + </a-col>
  70 + <a-col :xl="6" :lg="7" :md="8" :sm="24">
66 71 <a-form-item label="响应耗时(毫秒)">
67 72 <a-input placeholder="请输入大于响应耗时" v-model="queryParam.duration_begin"></a-input>
68 73 </a-form-item>
... ... @@ -71,10 +76,6 @@
71 76 <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
72 77 <a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
73 78 <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
74   - <a @click="handleToggleSearch" style="margin-left: 8px">
75   - {{ toggleSearchStatus ? '收起' : '展开' }}
76   - <a-icon :type="toggleSearchStatus ? 'up' : 'down'"/>
77   - </a>
78 79 </span>
79 80 </a-col>
80 81 </a-row>
... ...