<!--pages/home/integral/intergral-user/intergral-user.wxml-->
|
<view class="userInfo">
|
<view class="box">
|
<view class="userInfo-view">
|
<view class="title">收件人名称</view>
|
<input placeholder="请输入收件人名称" bindinput="getUserName" placeholder-class="placeholder"></input>
|
</view>
|
|
<view class="userInfo-view" catchtap="getQuery">
|
<view class="title">收件人地址</view>
|
<view class="address" wx:if="{{!city}}">请选择收货人地址</view>
|
<view class="address1" wx:else>{{city}}</view>
|
<image src="/img/arrows@3x.png" mode="widthFix" style="width:20rpx;transform:rotate(90deg);margin-right:20rpx"></image>
|
</view>
|
|
<view class="userInfo-view">
|
<view class="title">收件人地址</view>
|
<input placeholder="请输入收件人地址" bindinput="address" placeholder-class="placeholder"></input>
|
</view>
|
|
<view class="userInfo-view">
|
<view class="title">收件人电话</view>
|
<input placeholder="请输入收件人电话" type="number" maxlength="11" bindinput="phone" placeholder-class="placeholder"></input>
|
</view>
|
<!--备注-->
|
<view class="remake">
|
<view>备注</view>
|
<textarea placeholder="最多输入100字" bindinput="remark" maxlength="100"></textarea>
|
</view>
|
</view>
|
</view>
|
|
<view class="pull" catchtap="pull">提交</view>
|
|
<van-popup position="bottom" show="{{showArea}}" bind:close="closeArea">
|
|
<van-area area-list="{{ areaList }}" value="{{cityValues}}" columns-num="{{ 2 }}" bind:confirm="downArea" bind:cancel="closeArea" />
|
</van-popup>
|
|
|
|
|
<!--取消订单弹窗-->
|
<view class="close_view" wx:if="{{bcCLoseOrderPop}}">
|
<view class="close_btn_close">
|
<view class="close_title">提示</view>
|
<view class="close_other">您确认是否要兑换此商品!</view>
|
<view class="close_button">
|
<view class="close_no" catchtap="no">取消</view>
|
<view class="close_y" catchtap="yes">确认兑换</view>
|
</view>
|
</view>
|
</view>
|
|
|
|
<view class="pop" wx:if="{{showPop}}">
|
<view class="pop-center">
|
<view class="title11">提示</view>
|
<image src="/img/icon_close@2x.png" catchtap="closepop" style="width:32rpx"></image>
|
<view class="message">{{popMessage}}</view>
|
<view class="ok" catchtap="closepop">确定</view>
|
</view>
|
</view>
|