refactor(wms): 优化订单查询功能
- 在 WmsOrder 模型中添加 customerId 字段 - 更新 WmsOrderBo 和 WmsOrderVo 以包含 customerId - 修改订单查询相关方法,支持按客户 ID 查询 -优化订单列表展示,使用 images 字段替代 ossIds
This commit is contained in:
@@ -101,7 +101,7 @@
|
||||
<el-table-column label="收发货详情" align="center" prop="reportDetail" />
|
||||
<el-table-column label="图片概况" align="center" prop="ossIds" width="100">
|
||||
<template slot-scope="scope">
|
||||
<image-preview :src="scope.row.ossIds" :width="50" :height="50"/>
|
||||
<image-preview :src="scope.row.images" :width="50" :height="50"/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="备注" align="center" prop="remark" />
|
||||
@@ -578,7 +578,7 @@ export default {
|
||||
},
|
||||
/** 查看图片详情 */
|
||||
handleImageDetail(row) {
|
||||
this.imageList = row.ossIds;
|
||||
this.imageList = row.images;
|
||||
this.imageDrawer = true;
|
||||
this.getImageList()
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user