index.wxml 600 B

1234567891011121314
  1. <t-popup visible="{{show}}" placement="bottom" z-index="{{zIndex}}" bind:visible-change="onClose">
  2. <view class="specs-popup">
  3. <view>
  4. <goods-card data="{{goods}}" layout="horizontal-wrap" thumb-mode="{{thumbMode}}" />
  5. <view class="section">
  6. <view class="title">已选规格</view>
  7. <view class="options">
  8. <view wx:for="{{specs}}" wx:for-item="spec" wx:key="spec" class="option">{{spec}} </view>
  9. </view>
  10. </view>
  11. </view>
  12. <view class="bottom-btn" hover-class="bottom-btn--active" bindtap="onClose">我知道了</view>
  13. </view>
  14. </t-popup>