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
df28a168
Commit
df28a168
authored
May 22, 2025
by
gengchunlei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
医生端 v1.2 1、个人详情慢特病随访 冒泡事件bug修复
parent
d252294c
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
9 deletions
+9
-9
IframePage.vue
src/components/iframePage/IframePage.vue
+0
-1
Doctor.vue
src/doctor/Doctor.vue
+1
-1
FormCont.vue
src/doctor/followUp/slowSpecialFU/form/FormCont.vue
+3
-3
Index.vue
src/doctor/followUp/slowSpecialFU/form/Index.vue
+0
-1
List.vue
...doctor/patientDetail/components/slowSpecialVisit/List.vue
+5
-3
No files found.
src/components/iframePage/IframePage.vue
View file @
df28a168
...
...
@@ -37,7 +37,6 @@ export default {
watch
:
{
src
:
{
handler
()
{
debugger
this
.
load
()
},
immediate
:
true
...
...
src/doctor/Doctor.vue
View file @
df28a168
...
...
@@ -66,7 +66,7 @@ export default {
if
(
!
token
)
{
token
=
sessionStorage
.
getItem
(
'token'
)
if
(
process
.
env
.
NODE_ENV
!==
'production'
)
{
token
=
'
c7bd708b-d0a2-467d-a506-91544d5186fc
'
token
=
'
8ae0fcf4-068a-4b1c-9344-a5bef4f1030d
'
}
}
if
(
token
)
{
...
...
src/doctor/followUp/slowSpecialFU/form/FormCont.vue
View file @
df28a168
...
...
@@ -4,8 +4,7 @@
<div
class=
'font-semibold'
>
随访信息
</div>
<div
class=
'doc-form-label'
>
医保目录代码
</div>
<van-field
:modelValue=
'form.medicalDirectoryCode'
name=
'currentAge'
type=
'digit'
name=
'medicalDirectoryCode'
placeholder=
'请输入医保目录代码'
readonly
>
...
...
@@ -429,8 +428,9 @@ export default {
watch
:
{
info
:
{
handler
(
info
)
{
debugger
this
.
form
=
defaultForm
(
info
)
this
.
form
.
medicalDirectoryCode
=
this
.
info
.
medicalInsuranceCode
this
.
form
.
medicalDirectoryCode
=
this
.
info
.
medicalInsuranceCode
||
this
.
info
.
medicalDirectoryCode
if
(
this
.
form
.
drugName
)
{
let
list
=
[]
this
.
form
.
drugName
.
split
(
","
).
forEach
(
item
=>
{
...
...
src/doctor/followUp/slowSpecialFU/form/Index.vue
View file @
df28a168
...
...
@@ -88,7 +88,6 @@ export default {
this
.
baseInfo
=
this
.
slowSpecialInfo
.
residentsRecord
}
else
{
if
(
this
.
residentInfoId
)
{
debugger
let
res
=
await
getChronicResidentsId
(
this
.
residentInfoId
)
this
.
baseInfo
=
res
.
data
||
{}
this
.
slowSpecialInfo
.
residentInfoId
=
this
.
residentInfoId
...
...
src/doctor/patientDetail/components/slowSpecialVisit/List.vue
View file @
df28a168
...
...
@@ -43,10 +43,10 @@
</div>
<div
class=
"divider"
></div>
<div
class=
"bt-group"
>
<van-button
round
size=
"small"
class=
"doc-btn-primary"
@
click=
"toDetail(item)"
>
详情
</van-button>
<van-button
round
size=
"small"
class=
"doc-btn-primary"
@
click=
"editBtn(item)"
<van-button
round
size=
"small"
class=
"doc-btn-primary"
@
click
.
stop
=
"toDetail(item)"
>
详情
</van-button>
<van-button
round
size=
"small"
class=
"doc-btn-primary"
@
click
.
stop
=
"editBtn(item)"
v-if=
"item.allowUpdate == 1"
>
修改
</van-button>
<van-button
round
size=
"small"
class=
"doc-btn-red"
@
click=
"delBtn(item)"
<van-button
round
size=
"small"
class=
"doc-btn-red"
@
click
.
stop
=
"delBtn(item)"
v-if=
"item.allowDelete ==1"
>
删除
</van-button>
</div>
</div>
...
...
@@ -116,6 +116,7 @@ export default {
this
.
load
(
false
)
},
toDetail
(
record
)
{
debugger
if
(
!
record
)
return
if
(
record
.
id
==
null
)
{
this
.
$message
.
info
(
'暂时无法查看 详情信息'
)
...
...
@@ -129,6 +130,7 @@ export default {
})
},
editBtn
(
record
)
{
debugger
this
.
$router
.
push
({
path
:
'/doctor/followUp/slowSpecialFU/add'
,
query
:
{
residentInfoId
:
this
.
residentInfoId
,
id
:
record
.
id
}
...
...
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