Commit 79daa453 authored by 芮自成's avatar 芮自成

高血压专病随访表单开发

parent 04cc8438
...@@ -622,6 +622,96 @@ ...@@ -622,6 +622,96 @@
</div> </div>
</div> </div>
</van-popup> --> </van-popup> -->
<div class="label-title mt-2" required>目前高血压用药及依从性</div>
<div class="bg-fa">
<div class="label-title" required style="color: #262626; font-size: 14px; line-height: 24px">您目前是否在服用降压药、降脂(如他汀类)或抗血小板(如阿司匹林)等心血管病相关药物</div>
<van-field style="padding: 0">
<template #input>
<van-radio-group
v-model="form.medicationCompliance"
shape="dot"
direction="horizontal"
class="doc-radio-group-now"
>
<van-radio
v-for="item in store.getDict('DC00001')"
:key="item.value"
:name="item.value"
label-position="left"
style="width: 48%"
>
{{ item.name }}
</van-radio>
</van-radio-group>
</template>
</van-field>
</div>
<div class="bg-fa mt-2">
<div class="label-title" required style="color: #262626; font-size: 14px; line-height: 24px">请您确认患者目前服用的降压药、降脂或抗血小板药,在下表中修改或增加,并记录上次随访以来服用的降压药物的依从性</div>
<div style="background-color: #FFF; padding: 8px; border-radius: 10px">
<van-field
label="药物名称"
v-model="form.drinkOther"
placeholder="0~3000,整数"
class="form-input"
label-width="72px"
label-class="label-mr"
>
</van-field>
<van-field
label="剂量"
v-model="form.drinkOther"
placeholder="0~3000,整数"
class="form-input mt-2"
label-width="36px"
label-class="label-mr"
>
</van-field>
<van-field
label="频次"
v-model="form.drinkOther"
placeholder="0~3000,整数"
class="form-input mt-2"
label-width="36px"
label-class="label-mr"
>
</van-field>
<van-field
label="用法"
v-model="form.drinkOther"
placeholder="0~3000,整数"
class="form-input mt-2"
label-width="36px"
label-class="label-mr"
>
</van-field>
<van-field
label="服药依从性"
v-model="form.drinkOther"
placeholder="0~3000,整数"
class="form-input mt-2"
label-width="84px"
label-class="label-mr"
>
</van-field>
<van-field
label="不依从原因"
v-model="form.drinkOther"
placeholder="0~3000,整数"
class="form-input mt-2"
label-width="84px"
label-class="label-mr"
>
</van-field>
</div>
</div>
</van-form> </van-form>
</template> </template>
<script> <script>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment