| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <!--pages/mine/mine.wxml-->
- <view class="mine-container">
- <t-navbar title="我的" t-class-title="nav-title" />
- <scroll-view
- class="page-scroll__container mine-box"
- type="list"
- scroll-y
- style="height: calc(100vh - 180rpx); padding-bottom: calc(100rpx + env(safe-area-inset-bottom));"
- >
- <view class="head-container">
- <view class="head-box">
- <t-avatar class="avatar-example" size="70px">W</t-avatar>
- <view class="name-box">
- <view class="name">{{patient ? patient.name : '未登录'}}</view>
- <view class="phone" wx:if="{{phone}}">{{phone}}</view>
- </view>
- </view>
- <view class="image-box" catch:tap="toHealthPage">
- <image src="../../assets/bg/health-file.bg.png" class="health-img" />
- </view>
- </view>
- <view class="knowledge-box">
- <view class="title">知识查询</view>
- <view class="content-container">
- <view class="content-box" catch:tap="toDietTeaPage">
- <view><image src="../../assets/bg/icon_tea@3x.png" class="icon-img" /></view>
- <view class="content-title">茶饮</view>
- </view>
- <view class="content-box" catch:tap="toDietTonicPage">
- <view><image src="../../assets/bg/icon_diet@3x.png" class="icon-img" /></view>
- <view class="content-title">药膳</view>
- </view>
- </view>
- </view>
- </scroll-view>
- <view class="tabbar-container">
- <tabbar tabbarValue="{{tabbarValue}}" patientId="{{patient.patientId || ''}}"></tabbar>
- </view>
- </view>
-
|