Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
bims
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
孙海亮
bims
Commits
cc694ddf
Commit
cc694ddf
authored
3 years ago
by
yanglilong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
'医疗机构'
parent
6ba1d797
Changes
11
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
576 additions
and
27 deletions
+576
-27
info.js
src/api/apis_moudles/info.js
+6
-1
info.js
src/api/funcs_modules/info.js
+29
-4
index.js
src/components/Antd/index.js
+4
-2
Loading.vue
src/components/Loading/Loading.vue
+43
-0
index.js
src/components/Loading/index.js
+0
-0
info.js
src/router/modules/info.js
+14
-3
menu.js
src/router/modules/menu.js
+1
-1
company.vue
src/views/info/company.vue
+19
-0
index.vue
src/views/info/index.vue
+451
-8
index.vue
src/views/layout/index.vue
+2
-1
collection.vue
src/views/verification/collection.vue
+7
-7
No files found.
src/api/apis_moudles/info.js
View file @
cc694ddf
// 信息管理api
// 信息管理api
export
default
{};
export
default
{
providerDetail
:
"
/backstage/auth/providerDetail
"
,
//医疗机构列表
doctorList
:
"
/backstage/auth/doctorList
"
,
//医生列表
doctorDelete
:
"
/backstage/auth/doctorDelete
"
,
//删除医生
doctorUpdate
:
"
/backstage/auth/doctorUpdate
"
,
//修改医生
};
This diff is collapsed.
Click to expand it.
src/api/funcs_modules/info.js
View file @
cc694ddf
// 信息维护函数库
// 医疗机构函数库
// import apis from "../apis_moudles/index";
import
apis
from
"
../apis_moudles/index
"
;
// import req from "../request";
import
req
from
"
../request
"
;
//医疗机构列表
const
PROVIDERDETAIL
=
()
=>
{
return
req
.
post
(
apis
.
providerDetail
);
};
//医生列表
const
DOCTORLIST
=
(
data
)
=>
{
return
req
.
post
(
apis
.
doctorList
,
data
);
};
//删除医生
const
DOCTORDELETE
=
(
data
)
=>
{
return
req
.
post
(
apis
.
doctorDelete
,
data
);
};
//修改医生
const
DOCTORUPDATE
=
(
data
)
=>
{
return
req
.
post
(
apis
.
doctorUpdate
,
data
);
};
// 对象数组
// 对象数组
export
default
{};
export
default
{
PROVIDERDETAIL
,
DOCTORLIST
,
DOCTORDELETE
,
DOCTORUPDATE
};
This diff is collapsed.
Click to expand it.
src/components/Antd/index.js
View file @
cc694ddf
...
@@ -17,8 +17,9 @@ import {
...
@@ -17,8 +17,9 @@ import {
Button
,
Button
,
notification
,
notification
,
popconfirm
,
popconfirm
,
Modal
Modal
,
modal
,
modal
,
Spin
}
from
"
ant-design-vue
"
;
}
from
"
ant-design-vue
"
;
export
default
()
=>
{
export
default
()
=>
{
...
@@ -40,8 +41,9 @@ export default () => {
...
@@ -40,8 +41,9 @@ export default () => {
Button
,
Button
,
notification
,
notification
,
popconfirm
,
popconfirm
,
Modal
Modal
,
modal
,
modal
,
Spin
];
];
// 注册
// 注册
els
.
forEach
((
item
)
=>
{
els
.
forEach
((
item
)
=>
{
...
...
This diff is collapsed.
Click to expand it.
src/components/Loading/Loading.vue
0 → 100644
View file @
cc694ddf
<
template
>
<div
class=
"flex loading-container"
>
<a-spin
/>
<span
class=
"txt"
>
正在查询
</span>
</div>
</
template
>
<
script
>
export
default
{
name
:
'
Loading
'
,
data
(){
return
{
isShow
:
false
}
}
}
</
script
>
<
style
lang=
"less"
scoped
>
.loading-container{
width: 159px;
height: 44px;
background: #F8FAFF;
box-shadow: 0px 2px 4px 0px rgba(208,220,254,1);
border-radius: 22px;
justify-content: center;
position: absolute;
z-index: 10;
top: 22px;
left: 50%;
transform: translateX(-50%);
.txt{
font-size: 16px;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
color: #252631;
line-height: 22px;
margin-left: 12px;
}
.ant-spin{
margin-top: 4px;
}
}
</
style
>
This diff is collapsed.
Click to expand it.
src/components/Loading/index.js
0 → 100644
View file @
cc694ddf
This diff is collapsed.
Click to expand it.
src/router/modules/info.js
View file @
cc694ddf
import
Layout
from
'
@/layout
'
// 信息管理路由表,分包名称:info
// 信息管理路由表,分包名称:info
export
default
{
export
default
{
path
:
"
/info
"
,
path
:
"
/info
"
,
name
:
"
Info
"
,
name
:
"
Info
"
,
component
:
()
=>
{
component
:
Layout
,
return
import
(
/* webpackChunkName: "info" */
"
@/views/info
"
);
children
:
[
},
{
path
:
""
,
name
:
"
InfoMedical
"
,
component
:
()
=>
import
(
"
@/views/info/index
"
)
},
{
path
:
"
company
"
,
name
:
"
InfoCompany
"
,
component
:
()
=>
import
(
"
@/views/info/company
"
)
}
]
};
};
This diff is collapsed.
Click to expand it.
src/router/modules/menu.js
View file @
cc694ddf
...
@@ -74,7 +74,7 @@ export default [
...
@@ -74,7 +74,7 @@ export default [
title
:
"
医疗机构信息
"
,
title
:
"
医疗机构信息
"
,
},
},
{
{
path
:
"
/info
"
,
path
:
"
/info
/company
"
,
title
:
"
保险公司信息
"
,
title
:
"
保险公司信息
"
,
},
},
],
],
...
...
This diff is collapsed.
Click to expand it.
src/views/info/company.vue
0 → 100644
View file @
cc694ddf
<
template
>
<div
class=
"index"
>
<!-- 保险公司信息 -->
保险公司信息
</div>
</
template
>
<
script
>
export
default
{
data
()
{
return
{};
},
computed
:
{},
watch
:
{},
methods
:
{},
};
</
script
>
<
style
lang=
"less"
scoped
></
style
>
This diff is collapsed.
Click to expand it.
src/views/info/index.vue
View file @
cc694ddf
This diff is collapsed.
Click to expand it.
src/views/layout/index.vue
View file @
cc694ddf
...
@@ -20,7 +20,7 @@ export default {
...
@@ -20,7 +20,7 @@ export default {
components
:
{
components
:
{
Header
,
Header
,
Menu
,
Menu
,
SubMenu
,
SubMenu
},
},
data
()
{
data
()
{
return
{};
return
{};
...
@@ -42,6 +42,7 @@ export default {
...
@@ -42,6 +42,7 @@ export default {
.pt(68);
.pt(68);
// min-height: calc(100vh - 50px);
// min-height: calc(100vh - 50px);
.content {
.content {
position: relative;
flex: 1;
flex: 1;
.mg-l(242);
.mg-l(242);
.pa(14, 40, 0, 40);
.pa(14, 40, 0, 40);
...
...
This diff is collapsed.
Click to expand it.
src/views/verification/collection.vue
View file @
cc694ddf
...
@@ -56,12 +56,12 @@
...
@@ -56,12 +56,12 @@
</a-row>
</a-row>
</a-form-model>
</a-form-model>
<!-- table -->
<!-- table -->
<a-table
<a-table
:columns=
"columns"
:columns=
"columns"
:data-source=
"dataList"
:data-source=
"dataList"
:scroll=
"
{ x: true }"
:scroll=
"
{ x: true }"
:pagination="pagination"
:pagination="pagination"
@change="pageChange"
@change="pageChange"
>
>
<template
slot=
"operation"
slot-scope=
"record,index"
>
<template
slot=
"operation"
slot-scope=
"record,index"
>
<a-button
type=
"link"
>
修改
</a-button>
<a-button
type=
"link"
>
修改
</a-button>
...
@@ -74,7 +74,7 @@
...
@@ -74,7 +74,7 @@
<
script
>
<
script
>
const
columns
=
[
const
columns
=
[
{
title
:
"
序号
号
"
,
dataIndex
:
"
mrnNo
"
,
ellipsis
:
true
,
width
:
180
},
{
title
:
"
序号
"
,
dataIndex
:
"
mrnNo
"
,
ellipsis
:
true
,
width
:
180
},
{
title
:
"
EOB姓名
"
,
dataIndex
:
"
patientName
"
,
ellipsis
:
true
,
width
:
180
},
{
title
:
"
EOB姓名
"
,
dataIndex
:
"
patientName
"
,
ellipsis
:
true
,
width
:
180
},
{
title
:
"
核销时间
"
,
dataIndex
:
"
patientName2
"
,
ellipsis
:
true
,
width
:
180
},
{
title
:
"
核销时间
"
,
dataIndex
:
"
patientName2
"
,
ellipsis
:
true
,
width
:
180
},
{
title
:
"
保险公司
"
,
dataIndex
:
"
patientName3
"
,
ellipsis
:
true
,
width
:
180
},
{
title
:
"
保险公司
"
,
dataIndex
:
"
patientName3
"
,
ellipsis
:
true
,
width
:
180
},
...
...
This diff is collapsed.
Click to expand it.
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