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
9c01d57f
Commit
9c01d57f
authored
Oct 17, 2024
by
Lowry
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
高血压专病随访
parent
b2ddd492
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
2 deletions
+14
-2
visit.js
src/api/residentWX/visit.js
+6
-0
List.vue
src/residentWX/visit/List.vue
+2
-2
SeparateFUDetail.vue
src/residentWX/visit/detail/SeparateFUDetail.vue
+0
-0
index.js
src/router/index.js
+6
-0
No files found.
src/api/residentWX/visit.js
View file @
9c01d57f
...
...
@@ -8,3 +8,8 @@ export function queryVisitList(params) {
export
function
queryGeneralFUDetail
(
params
)
{
return
fetchBase
({
url
:
`/chronic-resident/v1/chronic-visit-record/currency-detail`
,
body
:
params
,
loading
:
true
})
}
// 查询专病随访详情
export
function
querySeparateFUDetail
(
params
)
{
return
fetchBase
({
url
:
`/chronic-resident/v1/chronic-visit-record/specialized-detail`
,
body
:
params
,
loading
:
true
})
}
\ No newline at end of file
src/residentWX/visit/List.vue
View file @
9c01d57f
...
...
@@ -163,8 +163,8 @@ export default {
if
(
item
.
serveType
==
5
)
{
path
=
`GeneralFUDetail/
${
item
.
relationId
}
`
}
if
(
item
.
serveType
==
3
||
item
.
serveType
==
4
){
if
(
item
.
serveType
==
3
||
item
.
serveType
==
4
)
{
path
=
`SeparateFUDetail/
${
item
.
relationId
}
/
${
item
.
diseaseType
}
`
}
this
.
$router
.
push
({
path
,
...
...
src/residentWX/visit/detail/SeparateFUDetail.vue
0 → 100644
View file @
9c01d57f
This diff is collapsed.
Click to expand it.
src/router/index.js
View file @
9c01d57f
...
...
@@ -118,6 +118,12 @@ const routes = [
name
:
'resident-visit-GeneralFUDetail'
,
component
:
()
=>
import
(
/* webpackChunkName: "residentWX-screening" */
'@/residentWX/visit/detail/GeneralFUDetail.vue'
)
},
// 专病随访详情
{
path
:
'visit/SeparateFUDetail/:relationId/:diseaseType'
,
name
:
'resident-visit-SeparateFUDetail'
,
component
:
()
=>
import
(
/* webpackChunkName: "residentWX-screening" */
'@/residentWX/visit/detail/SeparateFUDetail.vue'
)
},
// 健康指导宣教
{
path
:
'guide/list'
,
...
...
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