123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <view class="containt">
- <view class="userinfo">
- <block wx:if="{{!hasUserInfo}}">
- <image class="userinfo-avatar" src="http://ro7r875ut.hn-bkt.clouddn.com/default-icon.png" mode="cover"></image>
- <button class="login-btn" open-type="getUserInfo" bindtap="getUserProfile" style="margin:20rpx;padding: 0;height: 128rpx;line-height: 128rpx;text-align: left;" bindgetuserinfo="getUserInfo">
- 点击登录</button>
- </block>
- <block wx:else>
- <image bindtap="bindViewTap" class="userinfo-avatar" src="{{userInfo.avatar}}" mode="cover"></image>
- <view class="userphone">
- <view>
- <text class="nick_name">{{userInfo.nick_name}}</text>
- <image class="authentication" wx:if="{{authentication}}" src="http://ro7r875ut.hn-bkt.clouddn.com/authentication.png" />
- <image class="authentication" wx:else="" src="http://ro7r875ut.hn-bkt.clouddn.com/unverified.png" />
- </view>
- <text class="user_phone">{{phone}}</text>
- </view>
- </block>
- </view>
- <view class="content-wrapper">
- <view class='order-group-wrapper'>
- 基本信息
- </view>
- <view class="order_list">
- <block wx:for="{{basicList}}" wx:key="name">
- <navigator url="{{item.url}}">
- <image src="{{item.image}}" class="basicPic" />
- <text>{{item.name}}</text>
- </navigator>
- </block>
- </view>
- </view>
- <view class="otherList">
- <navigator class="otherItem" wx:for="{{otherList}}" wx:key="name" url="{{item.url}}">
- <image src="{{item.image}}" class="otherPic" />
- <view class="otherText">
- <text>{{item.name}}</text>
- <t-icon prefix="wr" name="arrow_right" size="36rpx" />
- </view>
- </navigator>
- <button open-type="contact" style="margin-left:4%;margin-right: 4%;width: 42%;padding: 0;" bindcontact="handleContact" session-from="sessionFrom" class="otherItem">
- <image src="http://ro7r875ut.hn-bkt.clouddn.com/callservice.png" class="otherPic" style="display: flex;" />
- <view class="otherText">
- <text>联系客服</text>
- <t-icon prefix="wr" name="arrow_right" size="36rpx" />
- </view>
- </button>
- </view>
- </view>
- <tabbar tabbar="{{tabbar}}" unreadCount="{{unreadCountMine}}">
- </tabbar>
|