Authored by zhangwenxue
Committed by shuaiguo

fix(商品详情): fix 产品列表flex在低版本ios中高度无法确定

@@ -79,8 +79,13 @@ export default { @@ -79,8 +79,13 @@ export default {
79 <style lang="scss" scoped> 79 <style lang="scss" scoped>
80 .brand-product-list .scroll-view { 80 .brand-product-list .scroll-view {
81 background: #f5f5f5; 81 background: #f5f5f5;
82 - height: 100%; 82 + height: auto;
83 overflow: auto; 83 overflow: auto;
84 -webkit-overflow-scrolling: touch; 84 -webkit-overflow-scrolling: touch;
  85 + position: absolute;
  86 + top: 0;
  87 + left: 0;
  88 + right: 0;
  89 + bottom: 0;
85 } 90 }
86 </style> 91 </style>