修复在查询耗材流水信息里时返回的商品id为null时报错导致耗材记录列表不显示的情况
This commit is contained in:
parent
30b309dcf3
commit
7b679fb415
|
|
@ -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)=>{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue