123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- <view class="wrapper">
- <view class="form-item">
- <label>
- <text>姓名</text>
- </label>
- <view class="value">
- <input
- value="{{form.product_title}}"
- placeholder="请输入姓名"
- placeholder-class="placeholder"
- data-formkey="product_title"
- bind:input="setFormValue"></input>
- </view>
- </view>
- <view class="form-item">
- <label>
- <text>身份证</text>
- </label>
- <view class="value">
- <input
- value="{{form.product_title}}"
- placeholder="请输入身份证号码"
- placeholder-class="placeholder"
- data-formkey="product_title"
- bind:input="setFormValue"></input>
- </view>
- </view>
- <view class="form-item">
- <label>
- <text>手机号</text>
- </label>
- <view class="value">
- <input
- value="{{form.product_title}}"
- placeholder="请输入手机号"
- placeholder-class="placeholder"
- data-formkey="product_title"
- bind:input="setFormValue"></input>
- </view>
- </view>
- <view class="form-item">
- <label>
- <text>村信息</text>
- </label>
- <view class="value">
- <input
- value="{{form.product_title}}"
- placeholder="请输入村信息"
- placeholder-class="placeholder"
- data-formkey="product_title"
- bind:input="setFormValue"></input>
- </view>
- </view>
- <view class="form-item">
- <label>
- <text>个人二维码</text>
- </label>
- <view class="value">
- <view
- class="van-uploader-wrap">
- <van-uploader
- file-list="{{ form.wx_code }}"
- max-count="{{1}}"
- multiple="{{false}}"
- accept="image"
- data-formkey="wx_code"
- bind:click-preview="uploadImg"
- bind:after-read="afterRead"
- bind:delete="delete"/>
- </view>
- </view>
- </view>
- <view class="form-item">
- <label>
- <text>微信号</text>
- </label>
- <view class="value">
- <input
- value="{{form.product_title}}"
- placeholder="请输入微信号"
- placeholder-class="placeholder"
- data-formkey="product_title"
- bind:input="setFormValue"></input>
- </view>
- </view>
- <view class="form-item">
- <label>
- <text>详细地址</text>
- </label>
- <view class="value">
- <input
- value="{{form.product_title}}"
- placeholder="请输入详细地址"
- placeholder-class="placeholder"
- data-formkey="product_title"
- bind:input="setFormValue"></input>
- </view>
- </view>
- <view class="form-item" style="padding-left: 0; border-bottom: none;">
- <label>
- <text>备注</text>
- </label>
- <view class="value">
- <textarea
- value=""
- placeholder="请输入备注"
- placeholder-class="placeholder"
- maxlength="{{200}}"
- auto-height="{{true}}"
- data-formkey="product_desc"
- bind:input="setFormValue"></textarea>
- <view class="words-limit">{{form.product_desc.length}}/200</view>
- </view>
- </view>
- <view class="explain">*政府后台会审核村民信息是否真实,通过后就可发布</view>
- <button type="primary">成为农户</button>
- </view>
|