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
5c4a48c2
Commit
5c4a48c2
authored
Nov 24, 2023
by
唐玉峰
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
6ba726f8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
0 deletions
+22
-0
src/views/medicalRecordImport.vue
+22
-0
No files found.
src/views/medicalRecordImport.vue
View file @
5c4a48c2
...
@@ -5,6 +5,7 @@
...
@@ -5,6 +5,7 @@
<div
class=
"btn"
>
<div
class=
"btn"
>
<div
:class=
"type == 1 ? 'act' : ''"
@
click=
"getid(1)"
>
当前医生数据
</div>
<div
:class=
"type == 1 ? 'act' : ''"
@
click=
"getid(1)"
>
当前医生数据
</div>
<div
:class=
"type == 2 ? 'act' : ''"
@
click=
"getid(2)"
>
所属病区数据
</div>
<div
:class=
"type == 2 ? 'act' : ''"
@
click=
"getid(2)"
>
所属病区数据
</div>
<div
@
click=
"toData"
>
数据分析
</div>
</div>
</div>
<div
class=
"main"
>
<div
class=
"main"
>
<div
class=
"l"
>
<div
class=
"l"
>
...
@@ -86,6 +87,7 @@ export default {
...
@@ -86,6 +87,7 @@ export default {
created
()
{
created
()
{
// :src="`http://172.16.1.244:8050/#/report/view?workbookId=269&info=${JSON.stringify(info)}`"
// :src="`http://172.16.1.244:8050/#/report/view?workbookId=269&info=${JSON.stringify(info)}`"
this
.
GetDeptAndDoctorByPid
();
this
.
GetDeptAndDoctorByPid
();
console
.
log
(
window
.
location
.
origin
);
},
},
mounted
()
{},
mounted
()
{},
methods
:
{
methods
:
{
...
@@ -121,6 +123,26 @@ export default {
...
@@ -121,6 +123,26 @@ export default {
})
})
.
catch
((
error
)
=>
{});
.
catch
((
error
)
=>
{});
},
},
toData
()
{
http
.
get
(
`/medical/Get/GetViews?name=医保结算数据分析`
)
.
then
((
data
)
=>
{
if
(
data
&&
data
.
length
)
{
if
(
data
[
0
].
children
&&
data
[
0
].
children
.
length
)
{
const
{
href
}
=
this
.
$router
.
resolve
({
path
:
data
[
0
].
children
[
0
].
menuUrl
,
});
window
.
open
(
`
${
window
.
location
.
origin
}
/#
${
data
[
0
].
children
[
0
].
menuUrl
}
`
,
"_blank"
);
}
else
{
const
{
href
}
=
this
.
$router
.
resolve
({
path
:
data
[
0
].
menuUrl
,
});
window
.
open
(
`
${
window
.
location
.
origin
}
/#
${
data
[
0
].
menuUrl
}
`
,
"_blank"
);
}
}
})
.
catch
((
error
)
=>
{});
},
},
},
};
};
</
script
>
</
script
>
...
...
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