Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
frontend-h5
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
songrui
frontend-h5
Commits
b78cdb83
Commit
b78cdb83
authored
Feb 28, 2025
by
songrui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
高血压随访 添加运动强度说明
parent
1e0bbeeb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
5 deletions
+24
-5
MovementTip.vue
src/doctor/components/movementTip/MovementTip.vue
+17
-3
HypertensionForm.vue
.../followUp/separateFU/form/components/HypertensionForm.vue
+7
-2
No files found.
src/doctor/components/movementTip/MovementTip.vue
View file @
b78cdb83
...
@@ -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
>
src/doctor/followUp/separateFU/form/components/HypertensionForm.vue
View file @
b78cdb83
...
@@ -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=
"label-title"
required
style=
"color: #262626; font-size: 14px"
>
运动强度
</div>
<div
class=
"flex"
>
<MovementTip
class=
"mr-2 mb-1"
/>
<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
:
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment