Helius
2021-04-07 c1ec923c1c303efa339ef7bec6d675bc55aadb6e
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<view class="user_container">
  <view class="user_header">
    <view>
      <image src='/image/bg.png' class='gbg'></image>
    </view>
    <view class="bg">
      <view class="user_box">
        
        <block wx:if="{{hasName}}">
          <view bindtap="lookUserInfo">
            <image class='avatarUrl' src='{{userInfo.avatarUrl}}'></image>
            <text class="user_name">{{userInfo.nickName}}</text>
          </view>
          <view class="modify_info" bindtap="lookUserInfo">
            <text>查看个人信息</text>
            <view class="iconfont icon-youbian"></view>
          </view>
        </block>
        <block wx:if="{{!hasName}}" >
          <view class="btn" bindtap="login" >登录授权</view>
        </block>
 
 
 
        <view class="user_order">
          <view class="wait_pay wait" bindtap="onStatusEvent" data-status="1">
            <text class="carts-icon-num" wx:if="{{WAIT_PAY>0}}" >{{WAIT_PAY}}</text>
            <image src='/image/qb.png' class='order-pay'></image>
            <text>待付款</text>
          </view>
          <view class='wait_delivery wait' bindtap="onStatusEvent" data-status="2">
          <text class="carts-icon-num" wx:if="{{WAIT_SEND>0}}" >{{WAIT_SEND}}</text>
            <image src='/image/fh.png' class='order-delivery'></image>
            <text>待配送</text>
          </view>
          <view class='wait_goods wait' bindtap="onStatusEvent" data-status="3">
          <text class="carts-icon-num" wx:if="{{WAIT_RECEIVE>0}}" >{{WAIT_RECEIVE}}</text>
            <image src='/image/gwc.png' class='order-goods'></image>
            <text>待收货</text>
          </view>
          <view class="refund wait" bindtap="refundStatus" data-status="3">
          <text class="carts-icon-num" wx:if="{{APPLY_MONEYBACK>0}}" >{{APPLY_MONEYBACK}}</text>
            <image src='/image/tc.png' class='order-refund'></image>
            <text>退款</text>
          </view>
        </view>
      </view>
    </view>
  </view>
  <view class='section'>
    <view class="collected form_groun" bindtap='myCollect'>
      <view class="iconfont iconshijian"></view>
      <text>我的预约</text>
      <view class="iconfont iconright"></view>
    </view>
   <view class="form_groun coupon" bindtap='intoCoupon' >
      <view class='iconfont iconyouhuiquan'></view>
      <text>我的优惠券</text>
      <view class="iconfont iconright"></view>
    </view>
     <view class="form_groun" bindtap='checkRecord'>
      <view class="iconfont iconxiangmu"></view>
      <text>检测记录</text>
      <view class=" iconfont iconright"></view>
    </view> 
  <!--
    <view class="form_groun coupon" bind:tap="integral" wx:if="{{userInfo.userVip ==1}}">
      <view class='iconfont icon-wodejifen'></view>
      <text>我的积分</text>
      <view class="iconfont iconright"></view>
    </view>
    <view class="form_groun coupon" wx:if="{{userInfo.userVip ==1}}" bind:tap="myWallet">
      <view class='iconfont icon-credit1'></view>
      <text>积分兑换</text>
      <view class="iconfont iconright"></view>
    </view>-->
    <view class="address form_groun" bindtap='addressJumpEvent'>
      <view class="iconfont iconlocation1"></view>
      <text>收货地址</text>
      <view class="iconfont iconright"></view>
    </view>
    <view class='service form_groun'>
      <view class='contact_list'>
        <button open-type='contact'>
          <view class="iconfont iconkefu"></view>
          <text>在线客服</text>
          <view class="iconfont iconright"></view>
        </button>
      </view>
    </view>
    <!-- <view class=" form_groun" bind:tap="commonQuestion">
      <view class="iconfont icon-wenti-m"></view>
        常见问题
      <view class="iconfont icon-youbian"></view>
    </view> -->
    <view class="question">
      <block wx:for="{{questionList}}" wx:key="ids">
        <view class="form_groun question-container" data-artypeid="{{item.artypeId}}" bind:tap="questionEvent">
          <image src='{{item.artypeImgurl}}' class='qusetion-image'></image>
          <text class='threeblack'>{{item.artypeName}}</text>
          <view class='iconfont icon-youbian'></view>
        </view>
      </block>
    </view>
  </view>
</view>