check.wxml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <view class="main">
  2. <view class="one">
  3. 审核用户
  4. </view>
  5. <view class="two">
  6. <form bindsubmit="formSubmit" bindreset="formReset">
  7. <view class="forminput">
  8. <text class="label">注册账号</text>
  9. <input type='number' name="mobile" value="{{form.mobile}}" placeholder='注册账号' disabled></input>
  10. </view>
  11. <view class="forminput">
  12. <text class="label">号码归属省</text>
  13. <input type='text' name="province" value="{{form.province}}" placeholder='号码归属省' disabled></input>
  14. </view>
  15. <view class="forminput">
  16. <text class="label">号码归属市</text>
  17. <input type='text' name="city" value="{{form.city}}" placeholder='号码归属市' disabled></input>
  18. </view>
  19. <view class="forminput">
  20. <text class="label">套餐</text>
  21. <input type='text' name="set" value="{{form.set}}" placeholder='套餐' disabled></input>
  22. </view>
  23. <view class="forminput">
  24. <text class="label">姓名</text>
  25. <input type='text' name="name" value="{{form.name}}" placeholder='姓名' disabled></input>
  26. </view>
  27. <view class="forminput">
  28. <text class="label">身份证号</text>
  29. <input type='text' name="id_card" value="{{form.id_card}}" maxlength="18" placeholder='身份证号' disabled></input>
  30. </view>
  31. <view class="forminput">
  32. <text class="label">微信账号</text>
  33. <input type='text' name="wxaccount" value="{{form.wxaccount}}" placeholder='微信账号' disabled></input>
  34. </view>
  35. <view class="forminput">
  36. <text class="label">推荐人</text>
  37. <input type='text' name="recommend" value="{{form.recommend}}" placeholder='推荐人' disabled></input>
  38. </view>
  39. <view class="forminput">
  40. <text class="label">推荐人电话</text>
  41. <input type='number' name="r_mobile" value="{{form.r_mobile}}" placeholder='推荐人电话' disabled></input>
  42. </view>
  43. <view class="forminput">
  44. <text class="label">状态</text>
  45. <view class="page-section page-section-gap">
  46. <radio-group name="status">
  47. <label>
  48. <radio value="0" />审核通过</label>
  49. <label>
  50. <radio value="-1" />审核拒绝</label>
  51. </radio-group>
  52. </view>
  53. </view>
  54. <view class="save">
  55. <button form-type="submit">提交</button>
  56. </view>
  57. </form>
  58. </view>
  59. </view>