Commit 39416fbd5aecd72a69887de126bc9e0800ef91c9

Authored by 王强
1 parent e8133aab

iOS 13 系统右侧不显示图片问题搞定~

src/components/columnListBox/columnListBox.less
@@ -7,15 +7,15 @@ @@ -7,15 +7,15 @@
7 } 7 }
8 } 8 }
9 .box { 9 .box {
10 - // display: flex;  
11 - // flex-direction: row;  
12 - // justify-content: space-between;  
13 - // align-items: flex-start;  
14 - // flex-wrap: wrap;  
15 - column-count: 2;  
16 - column-width: 330px;  
17 - column-gap: 30px;  
18 - margin: 0 auto; 10 + display: flex;
  11 + flex-direction: row;
  12 + justify-content: space-between;
  13 + align-items: flex-start;
  14 + flex-wrap: wrap;
  15 + // column-count: 2;
  16 + // column-width: 330px;
  17 + // column-gap: 30px;
  18 + // margin: 0 auto;
19 padding-bottom: 18px; 19 padding-bottom: 18px;
20 width: 690px; 20 width: 690px;
21 .left-box { 21 .left-box {
src/components/goodsItem_7/goodsItem_7.vue
@@ -5,7 +5,7 @@ @@ -5,7 +5,7 @@
5 <img v-lazy="item.simg + SIGN.MIDDLE" class="img" /> 5 <img v-lazy="item.simg + SIGN.MIDDLE" class="img" />
6 6
7 <!-- 补货中按钮 --> 7 <!-- 补货中按钮 -->
8 - <div v-show="item.stock == 0" class="goods_active"> 8 + <div v-if="item.stock == 0" class="goods_active">
9 已售罄 9 已售罄
10 </div> 10 </div>
11 </div> 11 </div>