refactor(wms): 优化订单查询功能

- 在 WmsOrder 模型中添加 customerId 字段
- 更新 WmsOrderBo 和 WmsOrderVo 以包含 customerId
- 修改订单查询相关方法,支持按客户 ID 查询
-优化订单列表展示,使用 images 字段替代 ossIds
This commit is contained in:
JR
2025-08-12 15:19:34 +08:00
parent fedcdc1e1e
commit 3882cae28b
7 changed files with 64 additions and 15 deletions

View File

@@ -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()
},