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.
37 lines
1.0 KiB
37 lines
1.0 KiB
1 week ago
|
<page-meta page-style="{{ popupShow ? 'overflow: hidden;' : '' }}" />
|
||
|
|
||
|
<view class="page">
|
||
|
<view class="card">
|
||
|
<view class="row" bind:tap="handleDrug">
|
||
|
<view class="label">药物名称</view>
|
||
|
<view class="container">{{drugName}}</view>
|
||
|
</view>
|
||
|
<view class="row">
|
||
|
<view class="label">用药方式</view>
|
||
|
<view class="container">{{typeName}}</view>
|
||
|
</view>
|
||
|
<view class="row">
|
||
|
<view class="label">使用剂量</view>
|
||
|
<view class="container">
|
||
|
<view class="input-wrap">{{dosage}}{{dosageUnitName}}</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="row">
|
||
|
<view class="label">用药时间</view>
|
||
|
<view class="container">{{recordDate}}</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="footer">
|
||
|
<view class="cancel" bind:tap="handleDel">删除</view>
|
||
|
<view class="submit" bind:tap="handleSubmit">编辑</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
|
||
|
<popup
|
||
|
show="{{popupShow}}"
|
||
|
type="{{popupType}}"
|
||
|
params="{{popupParams}}"
|
||
|
bind:ok="handlePopupOk"
|
||
|
bind:cancel="handlePopupCancel"
|
||
|
></popup>
|