Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
V
vue-composition-api
Overview
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
宁路鹏
vue-composition-api
Commits
5ad871fb
Commit
5ad871fb
authored
Jul 15, 2024
by
Licx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加病例监控跳转
parent
35d94932
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
5 deletions
+26
-5
src/router/index.js
+1
-0
src/views/outHistorygrouping.vue
+20
-0
src/views/patientinfo.vue
+5
-5
No files found.
src/router/index.js
View file @
5ad871fb
...
...
@@ -64,6 +64,7 @@ const router = new Router({
},
{
path
:
'/patientinfo'
,
name
:
'patientinfo'
,
component
:
(
resolve
)
=>
require
([
'@/views/patientinfo.vue'
],
resolve
)
}
]
...
...
src/views/outHistorygrouping.vue
View file @
5ad871fb
...
...
@@ -30,6 +30,15 @@
>
<el-button
class=
"outsetgrouping_button_Searchbtn"
v-if=
"$route.query.patientInfo"
style=
"margin-left: 10px"
size=
"mini"
type=
"primary"
@
click=
"topage3"
>
病例监控
</el-button
>
<el-button
class=
"outsetgrouping_button_Searchbtn"
style=
"margin-left: 10px"
size=
"mini"
type=
"primary"
...
...
@@ -1189,6 +1198,17 @@ export default {
this
.
$router
.
push
(
'/medicalRecordImport'
)
window
.
open
(
data
.
message
)
},
topage3
()
{
http
.
get
(
`/medical/get/HisPatientInfo?regCode=
${
this
.
casehisObj
.
regCode
}
`
,
{}
)
.
then
((
data
)
=>
{
window
.
open
(
data
.
message
)
})
.
catch
((
error
)
=>
{})
}
}
}
...
...
src/views/patientinfo.vue
View file @
5ad871fb
...
...
@@ -799,12 +799,12 @@ export default {
.
get
(
`/screen/hos/GetDeptList`
,
{})
.
then
((
data
)
=>
{
this
.
deptList
=
data
this
.
deptList
.
map
((
item
)
=>
{
if
(
item
.
deptCode
==
this
.
$route
.
query
.
ApplyDept
)
{
this
.
b16C
=
this
.
$route
.
query
.
ApplyDept
||
''
}
})
const
deptName
=
this
.
$route
.
query
.
deptName
if
(
deptName
&&
data
&&
data
.
length
)
{
const
item
=
data
.
find
((
w
)
=>
w
.
deptName
==
deptName
)
this
.
b16C
=
item
.
deptCode
}
this
.
getList
()
})
.
catch
((
error
)
=>
{
...
...
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