mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
perf(picker): shorten template code (#3973)
This commit is contained in:
parent
600e189aa0
commit
5e1c65e52a
@ -1,28 +1,23 @@
|
|||||||
<template name="toolbar">
|
<view wx:if="{{ showToolbar }}" class="van-picker__toolbar toolbar-class">
|
||||||
<view
|
<view
|
||||||
wx:if="{{ showToolbar }}"
|
class="van-picker__cancel"
|
||||||
class="van-picker__toolbar toolbar-class"
|
hover-class="van-picker__cancel--hover"
|
||||||
|
hover-stay-time="70"
|
||||||
|
data-type="cancel"
|
||||||
|
bindtap="emit"
|
||||||
>
|
>
|
||||||
<view
|
{{ cancelButtonText }}
|
||||||
class="van-picker__cancel"
|
|
||||||
hover-class="van-picker__cancel--hover"
|
|
||||||
hover-stay-time="70"
|
|
||||||
data-type="cancel"
|
|
||||||
bindtap="emit"
|
|
||||||
>
|
|
||||||
{{ cancelButtonText }}
|
|
||||||
</view>
|
|
||||||
<view wx:if="{{ title }}" class="van-picker__title van-ellipsis">{{
|
|
||||||
title
|
|
||||||
}}</view>
|
|
||||||
<view
|
|
||||||
class="van-picker__confirm"
|
|
||||||
hover-class="van-picker__confirm--hover"
|
|
||||||
hover-stay-time="70"
|
|
||||||
data-type="confirm"
|
|
||||||
bindtap="emit"
|
|
||||||
>
|
|
||||||
{{ confirmButtonText }}
|
|
||||||
</view>
|
|
||||||
</view>
|
</view>
|
||||||
</template>
|
<view wx:if="{{ title }}" class="van-picker__title van-ellipsis">{{
|
||||||
|
title
|
||||||
|
}}</view>
|
||||||
|
<view
|
||||||
|
class="van-picker__confirm"
|
||||||
|
hover-class="van-picker__confirm--hover"
|
||||||
|
hover-stay-time="70"
|
||||||
|
data-type="confirm"
|
||||||
|
bindtap="emit"
|
||||||
|
>
|
||||||
|
{{ confirmButtonText }}
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user