| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <view class="bg">
- <view class="newAddress-top"></view>
- <view class="newAddress-line">
- <view class="newAddress-title">收货人</view>
- <input maxlength="11" class="nameText" placeholder="请填写收件人姓名" placeholder-class="text-placeholder" bindinput="bindName" value="{{name}}"/>
- <view class="clean"></view>
- </view>
- <view class="newAddress-line">
- <view class="newAddress-title">联系电话</view>
- <input type="number" maxlength="12" class="nameText" placeholder="请填写收件人联系电话" placeholder-class="text-placeholder" bindinput="bindTel" value="{{tel!=0?tel:''}}"/>
- <view class="clean"></view>
- </view>
- <!-- <picker mode="region" bindchange="bindRegionChange" value="{{region}}">
- <view class="newAddress-line">
- <view class="newAddress-title">所在地区</view>
- <view class="newAddress-picker ">
- <image class="newAddress-picker__icon" src="http://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/user/right.png"></image>
- <view class="ellipsis newAddress-picker__text">{{address}}</view>
- </view>
- <view class="clean"></view>
- </view>
- </picker> -->
- <view class="section">
- <picker mode="multiSelector" bindchange="bindMultiPickerChange" bindcolumnchange="bindMultiPickerColumnChange" value="{{multiIndex}}" range="{{multiArray}}">
- <view class="newAddress-line">
- <view class="newAddress-title">所在地区</view>
- <view class="newAddress-picker ">
- <image class="newAddress-picker__icon" src="http://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/user/right.png"></image>
- <view class="ellipsis newAddress-picker__text">{{address}}</view>
- </view>
- <view class="clean"></view>
- </view>
- </picker>
- </view>
- <view class="newAddress-more">
- <view class="newAddress-more__title">详细地址</view>
- <textarea maxlength="120" class="textarea" auto-height placeholder="请填写详细的收件地址" placeholder-class="text-placeholder" bindinput="bindMore" value="{{more}}"/>
- </view>
- <view class="newAddress-tip">
- <view class="tip-title">温馨提示</view>
- <view class="tip-in">自2018年9月1日起,国家安全局规定禁用<text class="tip-color">X先生 、</text><text class="tip-color">X小姐</text>等模糊信息作为收件人,请填写完整的收件人信息,否则不允发货。</view>
- </view>
- <form bindsubmit="save" report-submit="{{true}}" class="newAddress-form">
- <button formType="submit" class="newAddress-btn">
- 保存
- </button>
- </form>
- </view>
|