修复在查询耗材流水信息里时返回的商品id为null时报错导致耗材记录列表不显示的情况

This commit is contained in:
YeMingfei666 2024-07-23 15:01:25 +08:00
parent 30b309dcf3
commit 7b679fb415
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ export default {
}); });
this.clickseetableData.loading = false; this.clickseetableData.loading = false;
this.clickseetableData.data = res.content.map(v=>{ this.clickseetableData.data = res.content.map(v=>{
const productIds=v.productId.split(',') const productIds=v.productId?v.productId.split(','):[]
return{ return{
...v, ...v,
product:productIds.map((str,index)=>{ product:productIds.map((str,index)=>{