@@ -201,7 +201,7 @@ export default {
this.total = res.total;
this.list = res.rows;
this.list.forEach((item) => {
- item.boxType = JSON.parse(item.boxType).desc;
+ item.boxType = item.boxType && JSON.parse(item.boxType).desc;
});
}
})