You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
578 B
19 lines
578 B
2 years ago
|
<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>
|