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.
 
 

25 lines
762 B

<view class="container">
<view>
<view class="weui-cell weui-check_input">
<input value="{{inputedValue}}" bind:input="keyInput" class="weui-input" maxlength="50" placeholder="请输入待办事项" />
</view>
<view class="line"></view>
<button bind:tap="inputSubmit" class="weui-btn" type="default" style="color: gray;">提交</button>
</view>
<view class="weui-cells weui-cells_after-title">
<checkbox-group bind:change="checkboxChange">
<label class="weui-cell weui-check__label" wx:for="{{items}}" wx:key="id">
<view class="weui-cell__hd">
<checkbox value="{{item.id}}" checked="{{item.checked}}" />
</view>
<view class="weui-cell__hd">
{{item.content}}
</view>
</label>
</checkbox-group>
</view>
</view>