Commit 97ea51e652df9558f9935e2b95c7ff0ad1426f38

Authored by 谭毅彬
1 parent d995a320

优化操作日志页及操作日志页显示

Signed-off-by: TanYibin <5491541@qq.com>
ant-design-vue-jeecg/src/views/system/monitor/ApiLogList.vue
... ... @@ -27,7 +27,12 @@
27 27 </a-col>
28 28 <a-col :xl="6" :lg="7" :md="8" :sm="24">
29 29 <a-form-item label="业务响应码">
30   - <a-input placeholder="请输入业务响应码" v-model="queryParam.retCode"></a-input>
  30 + <j-input placeholder="请输入业务响应码" v-model="queryParam.retCode"></j-input>
  31 + </a-form-item>
  32 + </a-col>
  33 + <a-col :xl="6" :lg="7" :md="8" :sm="24">
  34 + <a-form-item label="请求内容">
  35 + <j-input placeholder="请输入请求内容" v-model="queryParam.requestBody"></j-input>
31 36 </a-form-item>
32 37 </a-col>
33 38 <a-col :xl="12" :lg="14" :md="16" :sm="24">
... ...
ant-design-vue-jeecg/src/views/system/monitor/OperationLog.vue
... ... @@ -11,7 +11,7 @@
11 11 </a-col>
12 12 <a-col :xl="6" :lg="7" :md="8" :sm="24">
13 13 <a-form-item label="业务类型">
14   - <j-dict-select-tag placeholder="请选择业务类型" v-model="queryParam.bizType" dictCode="operation_log_type"/>
  14 + <j-input placeholder="请选择业务类型" v-model="queryParam.bizType" />
15 15 </a-form-item>
16 16 </a-col>
17 17 <a-col :xl="6" :lg="7" :md="8" :sm="24">
... ...