<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> 
 |