mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
29 lines
1.0 KiB
Plaintext
29 lines
1.0 KiB
Plaintext
<view
|
|
class="custom-class van-cell {{ center ? 'van-cell--center' : '' }} {{ required ? 'van-cell--required' : '' }} {{ isLink || tapable ? 'van-cell--tapable' : '' }} {{ border ? 'van-hairline' : '' }}"
|
|
style="{{ customStyle }}"
|
|
bind:tap="onTap"
|
|
>
|
|
<van-icon wx:if="{{ icon }}" custom-class="van-cell__left-icon left-icon-class" name="{{ icon }}" />
|
|
<slot wx:else name="icon" />
|
|
|
|
<view wx:if="{{ title }}" class="van-cell__title title-class" style="{{ titleWidth ? 'max-width: ' + titleWidth + ';min-width: ' + titleWidth : '' }}">
|
|
{{ title }}
|
|
<view wx:if="{{ label }}" class="van-cell__label label-class">{{ label }}</view>
|
|
</view>
|
|
<slot name="title" />
|
|
|
|
<view class="van-cell__value value-class">
|
|
<view wx:if="{{ value }}">{{ value }}</view>
|
|
<slot wx:else />
|
|
</view>
|
|
|
|
<van-icon
|
|
wx:if="{{ isLink }}"
|
|
name="arrow"
|
|
custom-class="van-cell__right-icon right-icon-class {{ arrowDirection ? 'van-cell__right-icon--' + arrowDirection : '' }}"
|
|
/>
|
|
<slot wx:else name="right-icon" />
|
|
|
|
<slot name="extra" />
|
|
</view>
|