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.
21 lines
760 B
21 lines
760 B
4 years ago
|
<mp-cell
|
||
|
has-footer="{{!multi}}"
|
||
|
has-header="{{multi}}"
|
||
|
bindtap="checkedChange"
|
||
|
ext-class="weui-check__label {{outerClass}} {{extClass}} {{!multi ? '^weui-cell_radio' : '^weui-cell_checkbox'}}"
|
||
|
ext-hover-class="weui-active">
|
||
|
|
||
|
<view slot="icon" wx:if="{{multi}}">
|
||
|
<checkbox value="{{value}}" checked="{{checked}}" disabled="{{disabled}}" color="{{color}}" class="weui-check">
|
||
|
</checkbox>
|
||
|
<!-- 未勾选 -->
|
||
|
<icon class="weui-icon-checked"></icon>
|
||
|
</view>
|
||
|
<view>{{label}}</view>
|
||
|
<view slot="footer" wx:if="{{!multi}}">
|
||
|
<radio value="{{value}}" checked="{{checked}}" disabled="{{disabled}}" color="{{color}}" class="weui-check"></radio>
|
||
|
<!-- 已勾选 -->
|
||
|
<icon class="weui-icon-checked"></icon>
|
||
|
</view>
|
||
|
</mp-cell>
|