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
495457dc
Commit
495457dc
authored
Sep 11, 2024
by
songrui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tab修改
parent
197395d2
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
4 deletions
+6
-4
Doctor.vue
src/doctor/Doctor.vue
+1
-1
List.vue
src/doctor/followUp/List.vue
+3
-2
Visit.vue
src/doctor/resident/Visit.vue
+2
-1
No files found.
src/doctor/Doctor.vue
View file @
495457dc
...
...
@@ -52,7 +52,7 @@ export default {
if
(
!
token
)
{
token
=
sessionStorage
.
getItem
(
'token'
)
if
(
process
.
env
.
NODE_ENV
!==
'production'
)
{
token
=
'
42339af6-efab-400d-bda6-2f6f61535d1c
'
token
=
'
6ebc3364-2296-4d3d-bd30-51102bcff396
'
}
}
if
(
token
)
{
...
...
src/doctor/followUp/List.vue
View file @
495457dc
...
...
@@ -22,7 +22,7 @@
<div
class=
'mt-10 white-back p-16'
v-for=
'item in activeData'
:key=
"item.id"
>
<div
class=
'flex items-center'
>
<div
class=
'base-title'
>
{{ item.residentName }}
</div>
<div
class=
'second-title plr-8'
>
{{
item
.age }}岁
</div>
<div
class=
'second-title plr-8'
>
{{
getInfoByIdCard(item.idCard)
.age }}岁
</div>
<div
class=
'second-title plr-6'
>
{{ item.genderName }}
</div>
</div>
<div
class=
'mt-3 flex items-center'
>
...
...
@@ -80,7 +80,7 @@
import
dayjs
from
'dayjs'
import
{
getVisitAll
}
from
'@/api/doctor/generalFU.js'
import
ChronicTag
from
'@/doctor/components/chronicTag/ChronicTag.vue'
import
{
backHome
}
from
'@/utils/common'
import
{
backHome
,
getInfoByIdCard
}
from
'@/utils/common'
export
default
{
name
:
'List'
,
...
...
@@ -125,6 +125,7 @@ export default {
})
},
methods
:
{
getInfoByIdCard
,
init
()
{
this
.
load
()
},
...
...
src/doctor/resident/Visit.vue
View file @
495457dc
<
template
>
<div
class=
"h-full flex flex-col visit"
>
<van-tabs
v-model:active=
'activeTab'
class=
"shrink-0"
v-if=
"tabList.length"
@
change=
"tabChange"
>
@
change=
"tabChange"
shrink
>
<van-tab
v-for=
'item in tabList'
:key=
"item.name"
:title=
'item.title'
:name=
'item.name'
></van-tab>
</van-tabs>
...
...
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