You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.0 KiB
34 lines
1.0 KiB
<view class="page"> |
|
<view class="list"> |
|
<view class="total"> |
|
已记录剂量处方 |
|
<text class="red">{{total}}</text> |
|
次 |
|
</view> |
|
<view |
|
class="list-card" |
|
wx:for="{{list}}" |
|
bind:tap="handleEdit" |
|
data-id="{{item.recordId}}" |
|
data-period="{{item.period}}" |
|
> |
|
<view class="item"> |
|
<view class="item-title">用药时间</view> |
|
<view class="item-content">{{item.recordDate}}</view> |
|
</view> |
|
<view class="item"> |
|
<view class="item-title">药物名称</view> |
|
<view class="item-content">{{item.drugName}}</view> |
|
</view> |
|
<view class="item"> |
|
<view class="item-title">用药方式</view> |
|
<view class="item-content">{{item.typeName}}</view> |
|
</view> |
|
<view class="item"> |
|
<view class="item-title">用药剂量</view> |
|
<view class="item-content">{{item.dosage}}{{item.dosageUnitName}}</view> |
|
</view> |
|
</view> |
|
<pagination pagination="{{pagination}}"></pagination> |
|
</view> |
|
</view>
|
|
|