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
7f581c64
Commit
7f581c64
authored
Dec 12, 2024
by
songrui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
专病随访修改
parent
64010734
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
15 deletions
+16
-15
Doctor.vue
src/doctor/Doctor.vue
+1
-1
Visit.vue
src/doctor/patientDetail/components/disease/Visit.vue
+7
-6
Record.vue
src/doctor/patientDetail/components/screening/Record.vue
+2
-2
Visit.vue
src/doctor/patientDetail/components/screening/Visit.vue
+6
-6
No files found.
src/doctor/Doctor.vue
View file @
7f581c64
...
...
@@ -53,7 +53,7 @@ export default {
if
(
!
token
)
{
token
=
sessionStorage
.
getItem
(
'token'
)
if
(
process
.
env
.
NODE_ENV
!==
'production'
)
{
token
=
'
7224fb00-e997-4c6e-b448-7341d5e5478a
'
token
=
'
8f0f296c-27af-4f33-aaff-cb6cc7b829a0
'
}
}
if
(
token
)
{
...
...
src/doctor/patientDetail/components/disease/Visit.vue
View file @
7f581c64
...
...
@@ -11,7 +11,7 @@
>
<div
class=
"flex flex-col"
>
<div
class=
"flex flex-col gap-y-2.5 py-3 px-4 mb-3 doc-list-card"
v-for=
'item in list'
:key=
"item.id"
>
v-for=
'item in list'
:key=
"item.id"
@
click=
"toDetail(item)"
>
<div>
<span
class=
"label"
>
服务类型
</span>
<span>
{{
item
.
serveTypeName
||
'-'
}}
</span>
...
...
@@ -48,15 +48,15 @@
<span
class=
"label"
>
随访机构
</span>
<span>
{{
item
.
serveUnitName
||
'-'
}}
</span>
</div>
<
!--
<div
class=
"divider
"
></div>
<div
class=
"bt-group"
>
<
div
class=
"divider"
v-if=
"item.serveType == 5
"
></div>
<div
class=
"bt-group"
v-if=
"item.serveType == 5"
>
<van-button
round
size=
"small"
class=
"doc-btn-primary"
@
click=
"toDetail(item)"
>
详情
</van-button>
<van-button
round
size=
"small"
class=
"doc-btn-primary"
v-if=
"item.allowUpdate == 1"
>
转诊
</van-button>
<
!--
<
van-button
round
size=
"small"
class=
"doc-btn-primary"
v-if=
"item.allowUpdate == 1"
>
转诊
</van-button>
<van-button
round
size=
"small"
class=
"doc-btn-primary"
@
click=
'editBtn(item)'
v-if=
"!(item.allowUpdate !==1 || item.serveType == 5)"
>
修改
</van-button>
<van-button
round
size=
"small"
class=
"doc-btn-red"
@
click=
"delBtn(item)"
v-if=
"!(item.allowUpdate !==1 || item.serveType == 5)"
>
删除
</van-button>
</div>
-->
v-if=
"!(item.allowUpdate !==1 || item.serveType == 5)"
>
删除
</van-button>
-->
</div>
</div>
</div>
</van-list>
...
...
@@ -161,6 +161,7 @@ export default {
},
watch
:
{
diseaseType
()
{
this
.
list
=
[]
this
.
load
()
}
}
...
...
src/doctor/patientDetail/components/screening/Record.vue
View file @
7f581c64
...
...
@@ -76,14 +76,14 @@
<span
class=
"label"
>
创建时间
</span>
<span>
{{
item
.
created
}}
</span>
</div>
<div
class=
"divider"
></div>
<
!--
<
div
class=
"divider"
></div>
<div
class=
"bt-group"
>
<van-button
round
size=
"small"
class=
"doc-btn-primary"
@
click=
"toSecondDetail(item)"
>
详情
</van-button>
<van-button
round
size=
"small"
class=
"doc-btn-primary"
@
click=
'editBtn(item)'
v-if=
"item.allowUpdate == 1"
>
修改
</van-button>
<van-button
round
size=
"small"
class=
"doc-btn-red"
@
click=
"delBtn(item)"
v-if=
"item.allowUpdate == 1"
>
删除
</van-button>
</div>
</div>
-->
</div>
</div>
</van-pull-refresh>
...
...
src/doctor/patientDetail/components/screening/Visit.vue
View file @
7f581c64
...
...
@@ -15,7 +15,7 @@
{'second-card': item.serveType == 2},
{'general-card': item.serveType == 3}]">
<div
class=
"title px-4 py-1"
>
{{
item
.
serveTypeName
}}
</div>
<div
class=
"flex flex-col gap-y-2.5 py-3 px-4 doc-list-card"
>
<div
class=
"flex flex-col gap-y-2.5 py-3 px-4 doc-list-card"
@
click=
"toDetail(item)"
>
<div>
<span
class=
"label"
>
随访日期
</span>
<span>
{{
item
.
visitDate
}}
</span>
...
...
@@ -36,14 +36,14 @@
<span
class=
"label"
>
随访机构
</span>
<span>
{{
item
.
visitUnitName
||
'-'
}}
</span>
</div>
<
!--
<div
class=
"divider
"
></div>
<div
class=
"bt-group"
>
<
div
class=
"divider"
v-if=
"item.serveType == 3
"
></div>
<div
class=
"bt-group"
v-if=
"item.serveType == 3"
>
<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=
'editBtn(item)'
v-if=
"!(item.allowUpdate !==1 || item.serveType == 3)"
>
修改
</van-button>
<van-button
round
size=
"small"
class=
"doc-btn-red"
@
click=
"delBtn(item)"
v-if=
"!(item.allowUpdate !==1 || item.serveType == 3)"
>
删除
</van-button>
</div>
-->
v-if=
"!(item.allowUpdate !==1 || item.serveType == 3)"
>
删除
</van-button>
-->
</div>
</div>
</div>
</div>
...
...
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