1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <view class="main">
- <view class="one">
- 审核用户
- </view>
- <view class="two">
- <form bindsubmit="formSubmit" bindreset="formReset">
- <view class="forminput">
- <text class="label">注册账号</text>
- <input type='number' name="mobile" value="{{form.mobile}}" placeholder='注册账号' disabled></input>
- </view>
- <view class="forminput">
- <text class="label">号码归属省</text>
- <input type='text' name="province" value="{{form.province}}" placeholder='号码归属省' disabled></input>
- </view>
- <view class="forminput">
- <text class="label">号码归属市</text>
- <input type='text' name="city" value="{{form.city}}" placeholder='号码归属市' disabled></input>
- </view>
- <view class="forminput">
- <text class="label">套餐</text>
- <input type='text' name="set" value="{{form.set}}" placeholder='套餐' disabled></input>
- </view>
- <view class="forminput">
- <text class="label">姓名</text>
- <input type='text' name="name" value="{{form.name}}" placeholder='姓名' disabled></input>
- </view>
- <view class="forminput">
- <text class="label">身份证号</text>
- <input type='text' name="id_card" value="{{form.id_card}}" maxlength="18" placeholder='身份证号' disabled></input>
- </view>
- <view class="forminput">
- <text class="label">微信账号</text>
- <input type='text' name="wxaccount" value="{{form.wxaccount}}" placeholder='微信账号' disabled></input>
- </view>
- <view class="forminput">
- <text class="label">推荐人</text>
- <input type='text' name="recommend" value="{{form.recommend}}" placeholder='推荐人' disabled></input>
- </view>
- <view class="forminput">
- <text class="label">推荐人电话</text>
- <input type='number' name="r_mobile" value="{{form.r_mobile}}" placeholder='推荐人电话' disabled></input>
- </view>
- <view class="forminput">
- <text class="label">状态</text>
- <view class="page-section page-section-gap">
- <radio-group name="status">
- <label>
- <radio value="0" />审核通过</label>
- <label>
- <radio value="-1" />审核拒绝</label>
- </radio-group>
- </view>
- </view>
- <view class="save">
- <button form-type="submit">提交</button>
- </view>
- </form>
- </view>
- </view>
|