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
76bc8b7c
Commit
76bc8b7c
authored
Sep 03, 2024
by
gengchunlei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
慢综 医生端 新增通用随访表单
parent
235d8ee9
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
17 additions
and
13 deletions
+17
-13
Doctor.vue
src/doctor/Doctor.vue
+3
-3
List.vue
src/doctor/followUp/List.vue
+5
-5
BaseInfo.vue
src/doctor/followUp/generalFU/form/BaseInfo.vue
+0
-0
Index.vue
src/doctor/followUp/generalFU/form/Index.vue
+6
-2
index.js
src/router/index.js
+3
-3
No files found.
src/doctor/Doctor.vue
View file @
76bc8b7c
...
@@ -20,9 +20,9 @@ export default {
...
@@ -20,9 +20,9 @@ export default {
return
{
return
{
visible
:
false
,
visible
:
false
,
themeVars
:
{
themeVars
:
{
primaryColor
:
'#
54CCBD
'
,
primaryColor
:
'#
607FF0
'
,
buttonPrimaryBackground
:
'#
54CCBD
'
,
buttonPrimaryBackground
:
'#
607FF0
'
,
buttonPrimaryBorderColor
:
'#
54CCBD
'
,
buttonPrimaryBorderColor
:
'#
607FF0
'
,
buttonDefaultBorderColor
:
'#BFBFBF'
,
buttonDefaultBorderColor
:
'#BFBFBF'
,
buttonNormalFontSize
:
'16px'
,
buttonNormalFontSize
:
'16px'
,
// 表单相关
// 表单相关
...
...
src/doctor/followUp/List.vue
View file @
76bc8b7c
...
@@ -57,9 +57,9 @@
...
@@ -57,9 +57,9 @@
<div
class=
'detail-left'
:style=
"{marginTop: item.diseaseList.length ? '0px': '12px'}"
>
<div
class=
'detail-left'
:style=
"{marginTop: item.diseaseList.length ? '0px': '12px'}"
>
慢病标签
慢病标签
</div>
</div>
<div
class=
'detail-right'
>
<div
class=
'detail-right'
style=
'flex: 1'
>
<div
class=
'flex items-center'
<div
class=
'flex items-center
'
style=
'flex-wrap: wrap;
justify-content: center;align-content: center
'
>
style=
'flex-wrap: wrap;'
>
<div
v-for=
'item1 in item.diseaseList'
:class=
'`mt-3 ill-tabs ill-tabs-${item1.id}`'
>
<div
v-for=
'item1 in item.diseaseList'
:class=
'`mt-3 ill-tabs ill-tabs-${item1.id}`'
>
{{ item1.name }}
{{ item1.name }}
</div>
</div>
...
@@ -197,12 +197,12 @@ export default {
...
@@ -197,12 +197,12 @@ export default {
},
},
toGeneralDetail
()
{
toGeneralDetail
()
{
this
.
$router
.
push
({
this
.
$router
.
push
({
path
:
`/followUp/generalFU/detail`
path
:
`/
doctor/
followUp/generalFU/detail`
})
})
},
},
toAddGeneral
()
{
toAddGeneral
()
{
this
.
$router
.
push
({
this
.
$router
.
push
({
path
:
`/followUp/generalFU/add`
path
:
`/
doctor/
followUp/generalFU/add`
})
})
}
}
}
}
...
...
src/doctor/followUp/generalFU/form/BaseInfo.vue
View file @
76bc8b7c
This diff is collapsed.
Click to expand it.
src/doctor/followUp/generalFU/form/Index.vue
View file @
76bc8b7c
...
@@ -2,8 +2,7 @@
...
@@ -2,8 +2,7 @@
<div>
<div>
<van-nav-bar
title=
'新增通用随访'
left-text=
''
left-arrow
>
<van-nav-bar
title=
'新增通用随访'
left-text=
''
left-arrow
>
</van-nav-bar>
</van-nav-bar>
<div
class=
'p-4 h-overflow'
>
<div
class=
'p-4'
>
<base-info
:info=
"resident"
></base-info>
<base-info
:info=
"resident"
></base-info>
</div>
</div>
</div>
</div>
...
@@ -59,4 +58,8 @@ export default {
...
@@ -59,4 +58,8 @@ export default {
:deep(.van-nav-bar .van-icon) {
:deep(.van-nav-bar .van-icon) {
color: #000000;
color: #000000;
}
}
.h-overflow {
height: calc(100vh - 60px);
overflow-y: auto;
}
</
style
>
</
style
>
\ No newline at end of file
src/router/index.js
View file @
76bc8b7c
...
@@ -19,17 +19,17 @@ const routes = [
...
@@ -19,17 +19,17 @@ const routes = [
component
:
()
=>
import
(
/* webpackChunkName: "page-resident" */
'@/doctor/Doctor'
),
component
:
()
=>
import
(
/* webpackChunkName: "page-resident" */
'@/doctor/Doctor'
),
children
:
[
children
:
[
{
{
path
:
'
/
followUp/list'
,
path
:
'followUp/list'
,
name
:
'followUp-list'
,
name
:
'followUp-list'
,
component
:
()
=>
import
(
/* webpackChunkName: "page-resident" */
'@/doctor/followUp/List'
)
component
:
()
=>
import
(
/* webpackChunkName: "page-resident" */
'@/doctor/followUp/List'
)
},
},
{
{
path
:
'
/
followUp/generalFU/detail'
,
path
:
'followUp/generalFU/detail'
,
name
:
'followUp-generalFU-detail'
,
name
:
'followUp-generalFU-detail'
,
component
:
()
=>
import
(
/* webpackChunkName: "page-resident" */
'@/doctor/followUp/generalFU/detail/Detail'
)
component
:
()
=>
import
(
/* webpackChunkName: "page-resident" */
'@/doctor/followUp/generalFU/detail/Detail'
)
},
},
{
{
path
:
'
/
followUp/generalFU/add'
,
path
:
'followUp/generalFU/add'
,
name
:
'followUp-generalFU-add'
,
name
:
'followUp-generalFU-add'
,
component
:
()
=>
import
(
/* webpackChunkName: "page-resident" */
'@/doctor/followUp/generalFU/form/Index'
)
component
:
()
=>
import
(
/* webpackChunkName: "page-resident" */
'@/doctor/followUp/generalFU/form/Index'
)
},
},
...
...
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