Browse Source

修改

null_safety
哈哈哈 4 years ago
parent
commit
8bbf1f350e
  1. 2
      lib/integral_store/integral_store_details_page.dart

2
lib/integral_store/integral_store_details_page.dart

@ -325,7 +325,7 @@ class _IntegralStoreDetailsPage extends State {
),
);
},
itemCount: goods == null ? 1 : goods.viceImgPaths.length,
itemCount: (goods == null || goods.viceImgPaths == null) ? 1 : goods.viceImgPaths.length,
),
),
);

Loading…
Cancel
Save