mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-06-24 13:21:59 +08:00
28 lines
835 B
Plaintext
28 lines
835 B
Plaintext
<view class="van-goods-action">
|
|
<block wx:for="{{ btnList }}" wx:key="{{ index }}">
|
|
<van-goods-action-mini-btn
|
|
wx:if="{{ item.type === 'mini' }}"
|
|
bind:click="onClick"
|
|
class="van-goods-action-mini-btn van-hairline"
|
|
icon-class="icon-class"
|
|
icon="{{ item.icon }}"
|
|
text="{{ item.text }}"
|
|
info="{{ item.info }}"
|
|
url="{{ item.url }}"
|
|
replace="{{ item.replace }}"
|
|
bind-click-event-name="{{ item.bindClickEventName }}"
|
|
/>
|
|
|
|
<van-goods-action-big-btn
|
|
wx:elif="{{ item.type === 'big' }}"
|
|
bind:click="onClick"
|
|
class="van-goods-action-big-btn"
|
|
primary="{{ item.primary }}"
|
|
text="{{ item.text }}"
|
|
url="{{ item.url }}"
|
|
replace="{{ item.replace }}"
|
|
bind-click-event-name="{{ item.bindClickEventName }}"
|
|
/>
|
|
</block>
|
|
</view>
|