mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
21 lines
524 B
Plaintext
21 lines
524 B
Plaintext
<view
|
|
bindtap="cellTap"
|
|
class="zan-cell {{ isLastCell ? 'last-cell' : '' }} {{ isLink ? 'zan-cell--access' : '' }}">
|
|
|
|
<view class="zan-cell__icon">
|
|
<slot name="icon"></slot>
|
|
</view>
|
|
|
|
<view class="zan-cell__bd">
|
|
<view class="zan-cell__text">{{ title }}</view>
|
|
<view class="zan-cell__desc">{{ label }}</view>
|
|
<slot></slot>
|
|
</view>
|
|
|
|
<view catchtap="navigateTo" class="zan-cell__ft">
|
|
{{ value }}
|
|
<block wx:if="{{ !value }}">
|
|
<slot name="footer"></slot>
|
|
</block>
|
|
</view>
|
|
</view> |