vant-weapp/dist/cell/index.wxml
2018-08-07 15:10:21 +08:00

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>