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
1e5ad153
Commit
1e5ad153
authored
Apr 01, 2022
by
吴婷慧
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
福利编辑查询和福利展示查询接口区分
parent
0bef4630
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
2 deletions
+8
-2
welfare.js
src/api/apis_moudles/welfare.js
+2
-1
welfare.js
src/api/funcs_modules/welfare.js
+5
-0
index.vue
src/views/welfare/info/components/benefits/index.vue
+1
-1
No files found.
src/api/apis_moudles/welfare.js
View file @
1e5ad153
...
...
@@ -11,7 +11,8 @@ export default {
conditionList
:
"
/backstage/auth/conditionList
"
,
addCondition
:
"
/backstage/auth/conditionCreate
"
,
editCondition
:
"
/backstage/auth/conditionEdit
"
,
benefitList
:
"
/backstage/auth/benefitListShow
"
,
benefitList
:
"
/backstage/auth/benefitList
"
,
// 福利编辑
benefitListShow
:
"
/backstage/auth/benefitListShow
"
,
// 福利信息展示
addBenefit
:
"
/backstage/auth/createBenefit
"
,
editBenefit
:
"
/backstage/auth/benefitEdit
"
,
getFrequencyCode
:
"
/backstage/auth/frequencyList
"
,
...
...
src/api/funcs_modules/welfare.js
View file @
1e5ad153
...
...
@@ -38,6 +38,10 @@ const GETBENEFITLIST = (data) => {
return
req
.
post
(
apis
.
benefitList
,
data
);
};
const
GETBENEFITSHOWLIST
=
(
data
)
=>
{
return
req
.
post
(
apis
.
benefitListShow
,
data
);
};
const
ADDBENEFITLIST
=
(
data
)
=>
{
return
req
.
post
(
apis
.
addBenefit
,
data
);
};
...
...
@@ -82,6 +86,7 @@ export default {
ADDCONDITIONDATA
,
EDITCONDITIONDATA
,
GETBENEFITLIST
,
GETBENEFITSHOWLIST
,
ADDBENEFITLIST
,
EDITBENEFITLIST
,
GETCOVERAGECODE
,
...
...
src/views/welfare/info/components/benefits/index.vue
View file @
1e5ad153
...
...
@@ -121,7 +121,7 @@ export default {
_getBenefitData
()
{
const
{
corpCode
,
coverageCode
,
payorCode
,
planCode
}
=
this
.
formData
;
const
data
=
{
corpCode
,
coverageCode
,
payorCode
,
planCode
,
patientId
:
this
.
formData
.
id
};
this
.
$apis
.
GETBENEFITLIST
(
data
).
then
((
res
)
=>
{
this
.
$apis
.
GETBENEFIT
SHOW
LIST
(
data
).
then
((
res
)
=>
{
this
.
benefitData
=
res
.
content
||
[];
});
},
...
...
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