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
27c96e5a
Commit
27c96e5a
authored
Jan 13, 2022
by
yanglilong
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'func_1213' of git.ssish.com:sunhailiang/bims into yanglilong
parents
61e36ad6
17b9e1c1
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
816 additions
and
22 deletions
+816
-22
charge-query.js
src/api/apis_moudles/charge-query.js
+7
-1
charge-query.js
src/api/funcs_modules/charge-query.js
+29
-3
charge-query.js
src/router/modules/charge-query.js
+15
-4
menu.js
src/router/modules/menu.js
+7
-2
detail.vue
src/views/charge-query/detail.vue
+426
-0
index.vue
src/views/charge-query/index.vue
+331
-11
yarn.lock
yarn.lock
+1
-1
No files found.
src/api/apis_moudles/charge-query.js
View file @
27c96e5a
// 收费查询api
// 收费查询api
export
default
{};
export
default
{
getChargeList
:
"
/backstage/auth/receiptList
"
,
getCompanyOptions
:
"
/backstage/auth/payorListNopage
"
,
getDoctorListNoPage
:
"
/backstage/auth/doctorListNoPage
"
,
//医生列表
getChargeListDetail
:
"
/backstage/auth/receiptDetailList
"
,
//账单明细
getReceiptPaymentDetail
:
"
/backstage/auth/receiptPaymentDetail
"
,
//账单明细
};
src/api/funcs_modules/charge-query.js
View file @
27c96e5a
// 收费查询函数库
// 收费查询函数库
// import apis from "../apis_moudles/index";
import
apis
from
"
../apis_moudles/
"
;
// import req from "../request";
import
req
from
"
../request
"
;
// get charge list
const
GETCHARGELIST
=
function
(
data
)
{
return
req
.
post
(
apis
.
getChargeList
,
data
);
};
//获取保险公司数据
const
GETCOMPANYOPTIONS
=
function
(
data
)
{
return
req
.
post
(
apis
.
getCompanyOptions
,
data
);
};
// 获取医生列表
const
GETDOCTORlISTNOPAGE
=
function
(
data
)
{
return
req
.
post
(
apis
.
getDoctorListNoPage
,
data
);
};
// get charge detail list
const
GETCHARGELISTDETAIL
=
function
(
data
)
{
return
req
.
post
(
apis
.
getChargeListDetail
,
data
);
};
// 获取费用支付明细
const
GETRECEIPTPAYMENTDETAIL
=
function
(
data
)
{
return
req
.
post
(
apis
.
getReceiptPaymentDetail
,
data
);
};
// 对象数组
// 对象数组
export
default
{};
export
default
{
GETCHARGELIST
,
GETCOMPANYOPTIONS
,
GETDOCTORlISTNOPAGE
,
GETCHARGELISTDETAIL
,
GETRECEIPTPAYMENTDETAIL
};
src/router/modules/charge-query.js
View file @
27c96e5a
// 收费查询路由表,分包名称:charge-query
// 收费查询路由表,分包名称:charge-query
import
Layout
from
'
@/layout
'
export
default
{
export
default
{
path
:
"
/charge-query
"
,
path
:
"
/charge-query
"
,
name
:
"
ChargeQuery
"
,
name
:
"
chargeQuery
"
,
component
:
()
=>
{
component
:
Layout
,
return
import
(
/* webpackChunkName: "chargeQuery" */
"
@/views/charge-query
"
);
children
:
[
},
{
path
:
''
,
name
:
"
chargeQueryIndex
"
,
component
:
()
=>
import
(
/* webpackChunkName: "chargeQuery" */
"
@/views/charge-query/index.vue
"
)
},
{
path
:
"
detail
"
,
name
:
"
chargeQueryDetail
"
,
component
:
()
=>
import
(
/* webpackChunkName: "chargeQuery" */
"
@/views/charge-query/detail.vue
"
)
}
]
};
};
src/router/modules/menu.js
View file @
27c96e5a
...
@@ -37,9 +37,14 @@ export default [
...
@@ -37,9 +37,14 @@ export default [
},
},
{
{
icon
:
"
ssisearch
"
,
icon
:
"
ssisearch
"
,
path
:
"
/
charge-query
"
,
path
:
"
charge-query
"
,
title
:
"
收费查询
"
,
title
:
"
收费查询
"
,
children
:
[],
children
:
[
{
path
:
"
/charge-query
"
,
title
:
"
账单查询
"
,
},
],
},
},
{
{
icon
:
"
ssiorder
"
,
icon
:
"
ssiorder
"
,
...
...
src/views/charge-query/detail.vue
0 → 100644
View file @
27c96e5a
This diff is collapsed.
Click to expand it.
src/views/charge-query/index.vue
View file @
27c96e5a
This diff is collapsed.
Click to expand it.
yarn.lock
View file @
27c96e5a
...
@@ -5939,7 +5939,7 @@ mkdirp@^1.0.3, mkdirp@^1.0.4:
...
@@ -5939,7 +5939,7 @@ mkdirp@^1.0.3, mkdirp@^1.0.4:
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"
integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==
integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==
moment@^2.21.0:
moment@^2.21.0
, moment@^2.29.1
:
version "2.29.1"
version "2.29.1"
resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.1.tgz#b2be769fa31940be9eeea6469c075e35006fa3d3"
resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.1.tgz#b2be769fa31940be9eeea6469c075e35006fa3d3"
integrity sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ==
integrity sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ==
...
...
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