Commit 2caf3d245b3da70fb6576628006ea370156b30f4

Authored by 谭毅彬
1 parent 57cbd3c3

操作记录页面优化

Signed-off-by: TanYibin <5491541@qq.com>
ant-design-vue-jeecg/src/views/system/monitor/OperationLog.vue
... ... @@ -161,7 +161,7 @@
161 161 dataIndex: 'action',
162 162 align: "center",
163 163 fixed: "right",
164   - width: 147,
  164 + width: 80,
165 165 scopedSlots: {customRender: 'action'}
166 166 }
167 167 ],
... ...
ant-design-vue-jeecg/src/views/system/monitor/modules/OperationLogForm.vue
... ... @@ -29,11 +29,6 @@
29 29 </a-form-model-item>
30 30 </a-col>
31 31 <a-col :span="24">
32   - <a-form-model-item label="操作结果状态" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="operationStatus">
33   - <a-input-number v-model="model.operationStatus" placeholder="请输入操作结果状态" style="width: 100%" />
34   - </a-form-model-item>
35   - </a-col>
36   - <a-col :span="24">
37 32 <a-form-model-item label="操作耗时" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="operationCostTime">
38 33 <a-input-number v-model="model.operationCostTime" placeholder="请输入操作耗时" style="width: 100%" />
39 34 </a-form-model-item>
... ... @@ -53,6 +48,11 @@
53 48 <a-input v-model="model.operatorName" placeholder="请输入操作人姓名" ></a-input>
54 49 </a-form-model-item>
55 50 </a-col>
  51 + <a-col :span="24">
  52 + <a-form-model-item label="操作结果状态" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="operationStatus">
  53 + <j-dict-select-tag v-model="model.operationStatus" placeholder="请输入操作结果状态" style="width: 100%" dictCode="operation_status"/>
  54 + </a-form-model-item>
  55 + </a-col>
56 56 </a-row>
57 57 </a-form-model>
58 58 </j-form-container>
... ...