13404089107
2025-05-08 51cca32d236262be90f2d39b8889fa343f1adfa1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!--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>