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
f7f5ae98
Commit
f7f5ae98
authored
Dec 07, 2024
by
gengchunlei
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'chronic-dev' of
http://gitlab.yiboshi.com/nightkis1995/frontend-h5
into chronic-dev
Conflicts: src/doctor/Doctor.vue
parents
3e5b20a2
75b3812a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
4 deletions
+7
-4
ScreenInfo.vue
src/resident/screening/first/form/ScreenInfo.vue
+7
-4
No files found.
src/resident/screening/first/form/ScreenInfo.vue
View file @
f7f5ae98
...
@@ -524,15 +524,15 @@ export default {
...
@@ -524,15 +524,15 @@ export default {
},
},
resultHandle
()
{
resultHandle
()
{
const
{
currentAge
,
height
=
0
,
weight
=
0
,
waistline
,
familyHistory
=
[],
isSmoking
,
gender
,
const
{
currentAge
,
height
=
0
,
weight
=
0
,
waistline
,
familyHistory
=
[],
isSmoking
,
gender
,
pressureOneSbp
,
pressureOneDbp
,
pressureTwoSbp
,
pressureTwoDbp
,
fastingGlucose
,
ldlCholesterin
}
=
this
.
form
pressureOneSbp
,
pressureOneDbp
,
pressureTwoSbp
,
pressureTwoDbp
,
fastingGlucose
,
ldlCholesterin
,
serumCholesterin
}
=
this
.
form
let
list
=
[]
let
list
=
[]
if
(
currentAge
>=
50
)
{
if
(
currentAge
>=
50
)
{
list
.
push
(
1
)
list
.
push
(
1
)
}
}
let
bmi
=
parseFloat
(
this
.
bmi
)
let
bmi
=
parseFloat
(
this
.
bmi
)
if
((
bmi
>=
24
)
||
if
((
bmi
>=
24
)
||
(
gender
==
2
&&
waistline
>=
8
5
)
||
(
gender
==
2
&&
waistline
>=
8
0
)
||
(
gender
==
1
&&
waistline
>=
90
)
){
(
gender
==
1
&&
waistline
>=
85
)
){
list
.
push
(
2
)
list
.
push
(
2
)
}
}
if
(
isSmoking
==
1
)
{
if
(
isSmoking
==
1
)
{
...
@@ -550,7 +550,10 @@ export default {
...
@@ -550,7 +550,10 @@ export default {
if
(
fastingGlucose
>=
6.1
)
{
if
(
fastingGlucose
>=
6.1
)
{
list
.
push
(
6
)
list
.
push
(
6
)
}
}
if
(
ldlCholesterin
>=
3.4
)
{
// if (ldlCholesterin >= 3.4) {
// list.push(7)
// }
if
(
serumCholesterin
>=
5.2
)
{
list
.
push
(
7
)
list
.
push
(
7
)
}
}
list
=
Array
.
from
(
new
Set
(
list
))
list
=
Array
.
from
(
new
Set
(
list
))
...
...
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