123456789101112131415161718192021222324252627282930 |
- <!--pages/my/my.wxml-->
- <view class="my-content">
- <view class="top my-info ittflex">
- <view class="main-info ittflex-jcb">
- <view class="left-con ittflex-jcs">
- <view class="avatar ittflex" bindtap="getUserProfile">
- <van-icon wx:if="{{avatarUrl == ''}}" name="contact" size="60rpx" color="#999"/>
- <image wx:else class="image-ac" src="{{avatarUrl}}"></image>
- </view>
- <text class="username" bindtap="getUserProfile">{{name}}</text>
- </view>
- <view class="right-con">
- <view class="check-count">
- <text class="noraltext">检测机会:</text>
- <text class="boldtext">{{count}}</text>
- <text class="noraltext">次</text>
- </view>
- <view class="appoin-btn ittflex" bindtap="handleAppoint">立即预约</view>
- </view>
- </view>
- </view>
- <view class="my-grid">
- <van-grid column-num="3" border="{{ false }}">
- <van-grid-item use-slot wx:for="{{gridList}}" wx:key="index" data-url="{{item.url}}" bindtap="handleNavTo">
- <image class="image-icon" src="{{item.imgUrl}}"></image>
- <text class="desc">{{item.title}}</text>
- </van-grid-item>
- </van-grid>
- </view>
- </view>
|