freshDetail.wxml 755 B

123456789101112131415
  1. <view class="c-list" wx:if="{{goodsObjact.net_quantity||goodsObjact.storage_condition||goodsObjact.expiration_date}}">
  2. <view class="c-row title b-b">规格</view>
  3. <view class="c-row b-b" wx:if="{{goodsObjact.net_quantity}}">
  4. <text class="tit">净含量</text>
  5. <text class="con t-r">{{goodsObjact.net_quantity}}</text>
  6. </view>
  7. <view class="c-row b-b" wx:if="{{goodsObjact.storage_condition}}">
  8. <text class="tit">保存条件</text>
  9. <text class="con t-r">{{goodsObjact.storage_condition}}</text>
  10. </view>
  11. <view class="c-row b-b" wx:if="{{goodsObjact.expiration_date}}">
  12. <text class="tit">保质期</text>
  13. <text class="con t-r">{{goodsObjact.expiration_date}}</text>
  14. </view>
  15. </view>