Authored by 李奇

fixed: 商品详情页默认显示有效状态

@@ -346,6 +346,10 @@ Page(Object.assign({ @@ -346,6 +346,10 @@ Page(Object.assign({
346 productNotForSale: res.data.attribute === 2, 346 productNotForSale: res.data.attribute === 2,
347 showBottomTipView: true 347 showBottomTipView: true
348 }); 348 });
  349 +
  350 + this.setData({
  351 + showNegative: true
  352 + });
349 } 353 }
350 }); 354 });
351 }, 355 },
@@ -133,7 +133,8 @@ @@ -133,7 +133,8 @@
133 </view> 133 </view>
134 134
135 <view class="fixed-bottom-actions"> 135 <view class="fixed-bottom-actions">
136 - <view class="invalid-tip" wx:if="{{storage_sum === 0 || productOnlyProvideByYohoAPP || productOnlyProvideByYohoStore}}"> 136 + <view class="invalid-tip"
  137 + wx:if="{{showNegative && (storage_sum === 0 || productOnlyProvideByYohoAPP || productOnlyProvideByYohoStore)}}">
137 <view class="tip-bg"></view> 138 <view class="tip-bg"></view>
138 <text class="tip-text" wx:if="{{storage_sum === 0}}">此商品已售罄,请等待后续备货!</text> 139 <text class="tip-text" wx:if="{{storage_sum === 0}}">此商品已售罄,请等待后续备货!</text>
139 <text class="tip-text" wx:if="{{productOnlyProvideByYohoAPP}}">暂不支持该商品购买,请前往Yoho!Buy有货官方应用选购!</text> 140 <text class="tip-text" wx:if="{{productOnlyProvideByYohoAPP}}">暂不支持该商品购买,请前往Yoho!Buy有货官方应用选购!</text>
@@ -146,7 +147,8 @@ @@ -146,7 +147,8 @@
146 <view class="img-action" bindtap="toShop"> 147 <view class="img-action" bindtap="toShop">
147 <image class="image" src="../../static/images/store-btn-active.png" mode="widthFix"></image> 148 <image class="image" src="../../static/images/store-btn-active.png" mode="widthFix"></image>
148 </view> 149 </view>
149 - <block wx:if="{{storage_sum === 0 || productOnlyProvideByYohoAPP || productOnlyProvideByYohoStore}}"> 150 + <block
  151 + wx:if="{{showNegative && (storage_sum === 0 || productOnlyProvideByYohoAPP || productOnlyProvideByYohoStore)}}">
150 <view class="txt-action disabled">加入购物车</view> 152 <view class="txt-action disabled">加入购物车</view>
151 <view class="txt-action buy disabled">立即购买</view> 153 <view class="txt-action buy disabled">立即购买</view>
152 </block> 154 </block>