50 lines
1.3 KiB
Plaintext
50 lines
1.3 KiB
Plaintext
<view class="header">
|
|
<t-navbar class="fixed-nav"
|
|
fixed="{{false}}" />
|
|
<view class="h-1">
|
|
<view class="left">
|
|
<view class="t-1">术后第 2 天</view>
|
|
<view class="t-2">康复进行中</view>
|
|
</view>
|
|
<view class="right flex-column-center ">
|
|
<view class="d">2</view>
|
|
<view class="c">DAYS</view>
|
|
</view>
|
|
</view>
|
|
<view class="h-2">
|
|
<view class="flex-between title">
|
|
<view>今日任务完成度</view>
|
|
<view class="num">0/5</view>
|
|
</view>
|
|
<t-progress percentage="80"
|
|
color="{{ ['white', 'white'] }}"
|
|
track-color="rgba(255, 255, 255, 0.2)"
|
|
label="" />
|
|
</view>
|
|
</view>
|
|
|
|
<view class="list">
|
|
<view class="item flex-align"
|
|
wx:for="{{5}}"
|
|
wx:key="index">
|
|
<view class="icon flex-center">
|
|
<t-icon name="apple" />
|
|
</view>
|
|
<view class="content">
|
|
<view class="flex-align">
|
|
<t-tag variant="light"
|
|
theme="success">用药</t-tag>
|
|
<view class="time">08:00</view>
|
|
</view>
|
|
<view class="title">服用抗生素</view>
|
|
<view class="desc">头孢类抗生素,饭后服用</view>
|
|
<button class="btn">标记完成</button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="tip">
|
|
<view class="title">💡 温馨提示:</view>
|
|
<view class="text"> 请按时完成康复任务,如有任何不适请及时联系医护人员</view>
|
|
</view>
|
|
<view style="height: 30rpx;"></view> |