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.
18 lines
578 B
18 lines
578 B
<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>
|
|
|