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
591 B

<view class="circle">
<view class="nav">
<image src="../../../images/addy.png"></image>
创建我自己的标签
</view>
<view class="content">
<checkbox-group bindchange="checkboxChange">
<label class="contentText" wx:for="{{items}}" wx:key="{{item.value}}">
<view class="contentbox">{{item.name}}</view>
<view class="contentbox">
<checkbox value="{{item.value}}" checked="{{item.checked}}"/>
</view>
</label>
</checkbox-group>
</view>
<view class="sava">
保存
</view>
</view>