You cannot 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
1.1 KiB
Plaintext
25 lines
1.1 KiB
Plaintext
<form catchsubmit="formSubmit">
|
|
<view class="mt16 mb10 c6 f16 ml16">身份证</view>
|
|
<view class="weui-cells weui-cells_after-title">
|
|
<checkbox-group bindchange="checkboxChange" name="idCardType">
|
|
<label class="weui-cell weui-check__label" wx:for="{{items}}" wx:key="{{item.value}}">
|
|
<view class="weui-cell__hd">
|
|
<checkbox value="{{item.value}}" color="var(--color-be)" checked="{{item.checked}}"/>
|
|
</view>
|
|
<view class="weui-cell__bd ml4">{{item.name}}</view>
|
|
</label>
|
|
</checkbox-group>
|
|
</view>
|
|
<view class="mt16 c6 f16 ml16">其他证</view>
|
|
<view class="weui-cells__group weui-cells__group_form p010 bgf" style="margin-top: 16px;">
|
|
<view class="weui-cells weui-cells_form br8">
|
|
<view class="weui-cell" style="padding-left: 8px;">
|
|
<view class="weui-cell__bd">
|
|
<input name="otherCard" value="{{otherCard}}" class="weui-input" placeholder="请输入" placeholder-class="weui-input__placeholder" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<button type='primary' class="dtBtn" formType="submit">确定</button>
|
|
</form> |