Commit b78cdb83 authored by songrui's avatar songrui

高血压随访 添加运动强度说明

parent 1e0bbeeb
...@@ -6,8 +6,10 @@ ...@@ -6,8 +6,10 @@
<doc-icon type="doc-info-circle" /> <doc-icon type="doc-info-circle" />
</slot> </slot>
</span> </span>
<van-popup v-model:show="visible" closeable> <!-- <van-popup v-model:show="visible" round style="height: 70%;"> -->
<div class="p-3 panel"> <van-overlay :show="visible" @click="visible = false"
class="p-4 flex items-center">
<div class="p-3 panel" @click.stop>
<div class="title mb-2">确定有氧运动强度的常用方法</div> <div class="title mb-2">确定有氧运动强度的常用方法</div>
<table> <table>
<tr> <tr>
...@@ -40,7 +42,10 @@ ...@@ -40,7 +42,10 @@
</tr> </tr>
</table> </table>
</div> </div>
</van-popup> <doc-icon type="close-circle" class="close-btn" @click="visible = false"/>
</van-overlay>
<!-- </van-popup> -->
</div> </div>
</template> </template>
...@@ -59,6 +64,9 @@ export default { ...@@ -59,6 +64,9 @@ export default {
background-color: #fff; background-color: #fff;
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1); box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
color: #262626; color: #262626;
max-height: 80%;
overflow-y: auto;
border-radius: 8px;
.title { .title {
color: #262626; color: #262626;
font-size: 16px; font-size: 16px;
...@@ -80,4 +88,10 @@ table { ...@@ -80,4 +88,10 @@ table {
text-align: left; text-align: left;
} }
} }
.close-btn {
position: absolute;
top: 24px;
right: 24px;
font-size: 24px;
}
</style> </style>
...@@ -472,7 +472,11 @@ ...@@ -472,7 +472,11 @@
</van-field> </van-field>
</div> </div>
<div v-if="form.regularExercise === 1" class="bg-fa mt-2"> <div v-if="form.regularExercise === 1" class="bg-fa mt-2">
<div class="flex">
<MovementTip class="mr-2 mb-1"/>
<div class="label-title" required style="color: #262626; font-size: 14px">运动强度</div> <div class="label-title" required style="color: #262626; font-size: 14px">运动强度</div>
</div>
<van-field :rules="rules.exerciseStrength" style="padding: 0"> <van-field :rules="rules.exerciseStrength" style="padding: 0">
<template #input> <template #input>
<van-radio-group <van-radio-group
...@@ -899,12 +903,13 @@ import DocImageUpload from '@/doctor/components/docImageUpload/DocImageUpload.vu ...@@ -899,12 +903,13 @@ import DocImageUpload from '@/doctor/components/docImageUpload/DocImageUpload.vu
import DocUnit from '@/doctor/components/docUnit/DocUnit.vue' import DocUnit from '@/doctor/components/docUnit/DocUnit.vue'
import DocOffice from '@/doctor/components/docOffice/DocOffice.vue' import DocOffice from '@/doctor/components/docOffice/DocOffice.vue'
import DocOfficeDoctor from '@/doctor/components/docOfficeDoctor/DocOfficeDoctor.vue' import DocOfficeDoctor from '@/doctor/components/docOfficeDoctor/DocOfficeDoctor.vue'
import MovementTip from '@/doctor/components/movementTip/MovementTip.vue'
import Inspect from '../../components/Inspect.vue' import Inspect from '../../components/Inspect.vue'
import TreatmentPlan from '../../components/TreatmentPlan.vue' import TreatmentPlan from '../../components/TreatmentPlan.vue'
import dayjs from 'dayjs' import dayjs from 'dayjs'
export default { export default {
components: { CheckBtn, BloodPressurePanel, BloodPressureBt, DocImageUpload, DocUnit, DocOffice, DocOfficeDoctor, Inspect, TreatmentPlan }, components: { CheckBtn, BloodPressurePanel, BloodPressureBt, DocImageUpload, DocUnit, DocOffice, DocOfficeDoctor, Inspect, TreatmentPlan, MovementTip },
inject: ['pressureObj'], inject: ['pressureObj'],
props: { props: {
diseaseInfo: { diseaseInfo: {
......
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