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
52c85d36
Commit
52c85d36
authored
Dec 07, 2024
by
gengchunlei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
居民端小程序 v1.2 通用随访 模板选择bug修复
parent
1b326190
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
3 deletions
+12
-3
BaseInfo.vue
src/doctor/followUp/generalFU/form/BaseInfo.vue
+2
-1
GuideTextVideo.vue
src/doctor/followUp/generalFU/form/GuideTextVideo.vue
+10
-1
Record.vue
src/doctor/patientDetail/components/screening/Record.vue
+0
-1
No files found.
src/doctor/followUp/generalFU/form/BaseInfo.vue
View file @
52c85d36
...
...
@@ -193,7 +193,8 @@
@
click=
'showGroupsArrays= true'
>
<
template
#
input
>
<span
class=
'text-end'
>
{{
form
.
groupsArraysName
}}
</span>
<span
class=
'text-end'
v-if=
'form.groupsArraysName'
>
{{
form
.
groupsArraysName
}}
</span>
<span
class=
'text-end'
v-if=
'!form.groupsArraysName'
style=
'color: #dfdfe1'
>
请选择
</span>
</
template
>
</van-field>
<van-popup
v-model:show=
'showGroupsArrays'
position=
'bottom'
>
...
...
src/doctor/followUp/generalFU/form/GuideTextVideo.vue
View file @
52c85d36
...
...
@@ -275,7 +275,7 @@ export default {
handler
()
{
this
.
contentSelectChange
()
}
}
}
,
},
methods
:
{
//指导和宣教赋值
...
...
@@ -344,6 +344,15 @@ export default {
// 选择的模板内容变化
contentSelectChange
()
{
const
cont
=
this
.
form
.
contentList
||
[]
let
val
=
this
.
checkContentSelect
const
delValue
=
cont
.
filter
(
i
=>
!
val
.
includes
(
i
.
templateMode
)).
map
(
e
=>
e
.
templateMode
)
if
(
delValue
.
length
)
{
this
.
form
.
contentList
=
this
.
form
.
contentList
.
filter
(
e
=>
!
delValue
.
includes
(
e
.
templateMode
))
// 药物指导处理
if
(
delValue
.
includes
(
5
))
{
this
.
form
.
drugsList
=
[]
}
}
const
addValue
=
this
.
checkContentSelect
.
filter
(
e
=>
!
cont
.
find
(
i
=>
i
.
templateMode
===
e
))
if
(
addValue
.
length
)
{
addValue
.
forEach
(
e
=>
{
...
...
src/doctor/patientDetail/components/screening/Record.vue
View file @
52c85d36
...
...
@@ -155,7 +155,6 @@ export default {
},
//专病筛查
toSecondDetail
(
record
)
{
debugger
if
(
!
record
)
return
if
(
record
.
id
==
null
)
{
showToast
(
'暂时无法查看 详情信息'
)
...
...
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