mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
* add src dir && add build * add build watch && change dir name * bower ignore package.json
12 lines
531 B
Plaintext
12 lines
531 B
Plaintext
<template name="capsule">
|
|
<view class="zan-capsule zan-capsule--{{type}}">
|
|
<block wx:if="{{color}}">
|
|
<view class="zan-capsule__left" style="background: {{ color }}; border-color: {{ color }}">{{ leftText }}</view>
|
|
<view class="zan-capsule__right" style="color: {{ color }}; border-color: {{ color }}">{{ rightText }}</view>
|
|
</block>
|
|
<block wx:else>
|
|
<view class="zan-capsule__left">{{ leftText }}</view>
|
|
<view class="zan-capsule__right">{{ rightText }}</view>
|
|
</block>
|
|
</view>
|
|
</template> |