1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| <t-popup
| close-on-overlay-click="{{true}}"
| visible="{{show}}"
| placement="bottom"
| z-index="{{zIndex}}"
| >
| <view class="specs-popup">
| <view>
| <goods-card data="{{goods}}" layout="horizontal-wrap" thumb-mode="{{thumbMode}}" />
| <view class="section">
| <view class="title">已选规格</view>
| <view class="options">
| <view
| wx:for="{{specs}}"
| wx:for-item="spec"
| wx:key="spec"
| class="option"
| >{{spec}}
| </view>
| </view>
| </view>
| </view>
| <view class="bottom-btn" hover-class="bottom-btn--active" bindtap="onClose">我知道了</view>
| </view>
| </t-popup>
|
|