123456789101112131415161718192021222324252627282930313233343536373839 |
- <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 {{login.state ? 'text-bold' : ''}}">
- <text wx:if="{{login.state}}">{{login.name}}</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>
- <view class="cu-bar tabbar bg-white shadow foot">
- <view class="action" bindtap="NavChange" data-path="pages/index/index">
- <view class='cuIcon-cu-image'>
- <image src="../../assets/tabber/menu_copy1.png"></image>
- </view>
- <view class="text-black">首页</view>
- </view>
- <view class="action" bindtap="NavChange" data-path="pages/add/index">
- <view class='cuIcon-cu-image'>
- <image src="../../assets/tabber/add_copy1.png"></image>
- </view>
- <view class="text-black">新增填报</view>
- </view>
- <view class="action" bindtap="NavChange" data-active="true" data-path="pages/login/index">
- <view class='cuIcon-cu-image'>
- <image src="../../assets/tabber/my_copy.png"></image>
- </view>
- <view class="text-blue">我的</view>
- </view>
- </view>
- <van-dialog id="van-dialog" bind:getphonenumber="getphonenumber" />
|