123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <view class="container">
- <auth bindlogin="onShow" />
-
- <lip-sync />
- <view class="userinfo">
- <image src="../../../static/images/ucenterbg.png" class="user-bg"></image>
- <view class="u-avatar" bindtap="tapByIdx" data-url="/pages/user/user">
- <!-- <button class="btn-cls" open-type="getUserInfo" bindgetuserinfo="bindGetUserInfo"></button> -->
- <image class="userinfo-avatar" src="{{ userInfo.avatarUrl }}" background-size="cover"></image>
- <text class="userinfo-nickname">{{userInfo.nickName}}</text>
- </view>
- <view class="userinfo-setting navigator" bindtap="tapByIdx" data-url="/pages/user/user">
- <image wx:if="{{imgServer}}" src="../../../static/images/c_setting.png"></image>
- </view>
- </view>
-
- <view class="order-list">
- <view wx:for="{{orderList}}" bindtap="tapByIdx" wx:key="{{item.id}}" data-url="{{'/pages/ucenter/order/order?id='+item.id}}" class="navigator a">
- <view class="icon-item">
- <image wx:if="{{imgServer}}" src="{{'/static/images/'+item.icon+'.png'}}"></image>
- <span class="count" wx:if="{{item.count}}">{{item.count}}</span>
- </view>
- <view class="txt">{{item.name}}</view>
- </view>
-
- <view class="i-line"></view>
-
- <view bindtap="tapByIdx" data-url="{{'/pages/ucenter/order/order?id='+all.id}}" class="navigator a or-a">
- <view class="icon-item">
- <image wx:if="{{imgServer}}" src="{{'/static/images/'+all.icon+'.png'}}"></image>
- </view>
- <view class="txt">{{all.name}}</view>
- </view>
- </view>
- <view class="order-list-v">
- <view wx:for="{{barList}}" bindtap="tapByIdx" wx:key="{{item.id}}" data-url="{{item.url}}" class="navigator a">
- <image wx:if="{{imgServer}}" src="{{'/static/images/'+item.icon+'.png'}}"></image>
- <view>{{item.name}}</view>
- <image src="/static/images/go.png" class="go"></image>
- </view>
- <view bindtap="toReport" class="navigator a {{ hasBrand ? '' : 'hidden'}}">
- <image src="{{'/static/images/report.png'}}"></image>
- <view>数据统计</view>
- <image src="/static/images/go.png" class="go"></image>
- </view>
- </view>
- <view class="order-list-v">
- <!-- <view bindtap="tapByIdx" data-url="/pages/ucenter/feedback/feedback" class="navigator a">
- <image wx:if="{{imgServer}}" src="/static/images/cb3.png"></image>
- <view>意见反馈</view>
- <image src="/static/images/go.png" class="go"></image>
- </view> -->
- <view class="navigator" >
- <button open-type="contact">
- <image wx:if="{{imgServer}}" src="{{imgServer+'/cb4.png'}}"></image>
- <view>联系客服</view>
- <image src="/static/images/go.png" class="go"></image>
- </button>
- </view>
- </view>
- <!-- <view class="related-goods" wx:if="{{relatedGoods.length > 0}}">
- <view class="h">
- <view class="line"></view>
- <text class="title">大家都在看</text>
- </view>
- <view class="b">
- <view class="item" wx:for="{{relatedGoods}}" wx:key="*this">
- <navigator hover-class="none" url="/pages/goods/goods?id={{item.id}}">
- <image class="img" src="{{item.list_pic_url}}" background-size="cover"></image>
- <text class="name">{{item.name}}</text>
- <text class="price">¥{{item.retail_price}}</text>
- </navigator>
- </view>
- </view>
- </view> -->
- </view>
|