businessApply.wxml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <view class="wrapper">
  2. <view class="form-item">
  3. <label>
  4. <text>姓名</text>
  5. </label>
  6. <view class="value">
  7. <input
  8. value="{{form.product_title}}"
  9. placeholder="请输入姓名"
  10. placeholder-class="placeholder"
  11. data-formkey="product_title"
  12. bind:input="setFormValue"></input>
  13. </view>
  14. </view>
  15. <view class="form-item">
  16. <label>
  17. <text>身份证</text>
  18. </label>
  19. <view class="value">
  20. <input
  21. value="{{form.product_title}}"
  22. placeholder="请输入身份证号码"
  23. placeholder-class="placeholder"
  24. data-formkey="product_title"
  25. bind:input="setFormValue"></input>
  26. </view>
  27. </view>
  28. <view class="form-item">
  29. <label>
  30. <text>手机号</text>
  31. </label>
  32. <view class="value">
  33. <input
  34. value="{{form.product_title}}"
  35. placeholder="请输入手机号"
  36. placeholder-class="placeholder"
  37. data-formkey="product_title"
  38. bind:input="setFormValue"></input>
  39. </view>
  40. </view>
  41. <view class="form-item">
  42. <label>
  43. <text>村信息</text>
  44. </label>
  45. <view class="value">
  46. <input
  47. value="{{form.product_title}}"
  48. placeholder="请输入村信息"
  49. placeholder-class="placeholder"
  50. data-formkey="product_title"
  51. bind:input="setFormValue"></input>
  52. </view>
  53. </view>
  54. <view class="form-item">
  55. <label>
  56. <text>个人二维码</text>
  57. </label>
  58. <view class="value">
  59. <view
  60. class="van-uploader-wrap">
  61. <van-uploader
  62. file-list="{{ form.wx_code }}"
  63. max-count="{{1}}"
  64. multiple="{{false}}"
  65. accept="image"
  66. data-formkey="wx_code"
  67. bind:click-preview="uploadImg"
  68. bind:after-read="afterRead"
  69. bind:delete="delete"/>
  70. </view>
  71. </view>
  72. </view>
  73. <view class="form-item">
  74. <label>
  75. <text>微信号</text>
  76. </label>
  77. <view class="value">
  78. <input
  79. value="{{form.product_title}}"
  80. placeholder="请输入微信号"
  81. placeholder-class="placeholder"
  82. data-formkey="product_title"
  83. bind:input="setFormValue"></input>
  84. </view>
  85. </view>
  86. <view class="form-item">
  87. <label>
  88. <text>详细地址</text>
  89. </label>
  90. <view class="value">
  91. <input
  92. value="{{form.product_title}}"
  93. placeholder="请输入详细地址"
  94. placeholder-class="placeholder"
  95. data-formkey="product_title"
  96. bind:input="setFormValue"></input>
  97. </view>
  98. </view>
  99. <view class="form-item" style="padding-left: 0; border-bottom: none;">
  100. <label>
  101. <text>备注</text>
  102. </label>
  103. <view class="value">
  104. <textarea
  105. value=""
  106. placeholder="请输入备注"
  107. placeholder-class="placeholder"
  108. maxlength="{{200}}"
  109. auto-height="{{true}}"
  110. data-formkey="product_desc"
  111. bind:input="setFormValue"></textarea>
  112. <view class="words-limit">{{form.product_desc.length}}/200</view>
  113. </view>
  114. </view>
  115. <view class="explain">*政府后台会审核村民信息是否真实,通过后就可发布</view>
  116. <button type="primary">成为农户</button>
  117. </view>