12345678910111213141516171819202122232425262728293031323334 |
- <import src="../../../../public/pages/public-view.wxml"/>
- <form bindsubmit="formSubmit">
- <view style="width:100%;height:24prx;"></view>
- <view class="row">
- <text>收货人</text>
- <input placeholder-class="input-placeholder" placeholder="收货人姓名" maxlength="16" name="u_name" value="{{data.u_name}}"></input>
- </view>
- <template is="right-line" />
- <view class="row">
- <text>联系电话</text>
- <input placeholder-class="input-placeholder" placeholder="收货人联系电话" type="phone" maxlength="11" name="phone" value="{{data.phone}}"></input>
- </view>
- <template is="right-line" />
- <picker mode="region" bindchange="pickerChange">
- <view class="row">
- <text>所在地区</text>
- <input placeholder-class="input-placeholder" placeholder="省份 城市 区县" disabled="true" name="area" value="{{area}}"></input>
- </view>
- </picker>
- <template is="right-line" />
- <view class="textarea">
- <textarea placeholder-class="textarea-placeholder" placeholder="请填写详细地址" maxlength="50" name="address" value="{{data.address}}"></textarea>
- </view>
- <button form-type="submit" hover-class="none" style="border-color: rgba(0, 0, 0, 0)">保存</button>
- </form>
|