Commit a3f7c9d3 authored by 我在何方's avatar 我在何方

异常列表优化

parent 1ecbfeec
......@@ -294,9 +294,9 @@ export default {
queryParams: {
page: 1,
rows: 10,
orderNoKey:'eq',
marksKey:'eq',
goodsNameKey:'eq'
orderNoKey:'in',
marksKey:'in',
goodsNameKey:'in'
},
tradeCityList:[],
warehouseList:[],
......
......@@ -117,7 +117,9 @@
{{parseTime(handlerParams.handlerTime)}}
</el-descriptions-item>
<el-descriptions-item :label="$t('处理结果')">
{{handlerParams.handlerResult=='general_cargo'?$t('设为普货'):$t('设为已处理')}}
<span v-if="handlerParams.handlerResult=='general_cargo'">{{$t('设为普货')}}</span>
<span v-else-if="handlerParams.handlerResult=='process'">{{$t('设为已处理')}}</span>
<span v-else>{{$t('设为半抛')}}</span>
</el-descriptions-item>
<el-descriptions-item :label="$t('备注')">
{{handlerParams.handlerRemark||"无"}}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment