12345678910111213141516171819202122 |
- <scroll-view scroll-y class="DrawerPage ">
- <view class="header bg-blue" style="background-image: url({{waveimg}});">
- <view bindtap="{{login.state=='未登录' ? 'loginFunc' : ''}}" 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>
- </view>
- <view class="cu-list menu margin-bottom-xl shadow-lg radius">
- <view bindtap="onClickFunc" data-index="{{index}}" 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>
- <van-action-sheet show="{{ show }}" bind:getphonenumber="getphonenumber" actions="{{ actions }}" bind:close="onClose"
- bind:select="onSelect" />
|