1234567891011121314151617181920212223242526 |
- <scroll-view scroll-y class="DrawerPage ">
- <view class="header bg-blue" style="background-image: url({{waveimg}});">
- <view class="user">
- <view class="cu-avatar xl round margin-bottom" style="background-image:url({{login.imgurl}});"></view>
- <view class="text-center text-xl text-bold">
- <text>{{login.name}}</text>
- <text class="{{login.state=='未登录' ? 'text-red' : 'padding'}}">{{login.state}}</text>
- <text wx:if="!login.usertype" class="text-black">{{login.usertype}}</text>
- </view>
- <view wx:if="{{login.state !='未登录'}}" class="text-center">
- <button bindtap="updateFunc" class="cu-btn round bg-olive marign shadow }">
- <text wx:if="{{update_lock}}" class="cuIcon-loading2 iconfont-spin"> </text>更新资料</button>
- <button bindtap="subscriberFunc" class="cu-btn round bg-olive margin shadow">
- <text wx:if="{{subscriber_lock}}" class="cuIcon-loading2 iconfont-spin"></text>订阅消息</button>
- </view>
- </view>
- </view>
- <view class="cu-list menu margin-bottom-xl shadow-lg radius">
- <view wx:for="{{items}}" wx:key="index" class="cu-item arrow">
- <view class="content" bindtap="CopyLink" data-link="https://github.com/weilanwl/ColorUI">
- <text class="cuIcon-{{item.imgurl}} text-blue"></text>
- <text class="text-black">{{item.title}}</text>
- </view>
- </view>
- </view>
- </scroll-view>
|