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
c9f7db0a
Commit
c9f7db0a
authored
Sep 01, 2022
by
yanglilong
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'yanglilong-0830' into 'master'
跳转到福利查询 See merge request
!11
parents
2156c046
d3f1eb4d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
41 additions
and
8 deletions
+41
-8
customer.js
src/api/apis_moudles/customer.js
+2
-1
customer.js
src/api/funcs_modules/customer.js
+7
-1
index.vue
src/views/customer/info/index.vue
+17
-4
index.vue
src/views/welfare/info/index.vue
+15
-2
No files found.
src/api/apis_moudles/customer.js
View file @
c9f7db0a
...
...
@@ -5,5 +5,6 @@ export default {
createCustomer
:
"
/backstage/auth/createPatient
"
,
// 新建用户信息
customerDetail
:
"
/backstage/auth/patientDetail
"
,
// 获取用户详细信息
createClaimPdf
:
"
/backstage/auth/createClaimPdf
"
,
// 获取用户理赔申请书
deleteCustom
:
"
/backstage/auth/patientDelete
"
// 删除客户
deleteCustom
:
"
/backstage/auth/patientDelete
"
,
// 删除客户
getJumpEccsUrl
:
"
/backstage/auth/getJumpEccsUrl
"
// 获取跳转eccsurl
};
src/api/funcs_modules/customer.js
View file @
c9f7db0a
...
...
@@ -31,11 +31,17 @@ const CREATECUSTOMERCLAIMPGF = function (data) {
return
req
.
post
(
apis
.
createClaimPdf
,
data
,
{
responseType
:
"
blob
"
});
};
// 获取跳转eccsurl getJumpEccsUrl
const
GETJUMPECCSURL
=
function
(
data
)
{
return
req
.
post
(
apis
.
getJumpEccsUrl
,
data
);
};
export
default
{
GETCUSTOMERLIST
,
GETCUSTOMERDETAIL
,
UPDATECUSTOMDATA
,
CREATENEWCUSTOMER
,
DELETECUSTOM
,
CREATECUSTOMERCLAIMPGF
CREATECUSTOMERCLAIMPGF
,
GETJUMPECCSURL
};
src/views/customer/info/index.vue
View file @
c9f7db0a
...
...
@@ -141,10 +141,23 @@ export default {
if
(
record
.
isEdit
)
{
return
true
;
}
this
.
$router
.
push
({
name
:
"
welfareInfo
"
,
query
:
{
id
,
patientPolicyId
},
});
if
((
record
.
cardNo
||
''
).
startsWith
(
'
80001428
'
)){
this
.
$apis
.
GETJUMPECCSURL
({
cardNo
:
record
.
cardNo
})
.
then
(
res
=>
{
if
(
res
.
returnCode
===
"
0000
"
)
{
window
.
open
(
res
.
content
,
'
_blank
'
);
}
else
{
this
.
$message
.
error
(
res
.
returnMsg
||
"
操作失败
"
);
}
})
}
else
{
this
.
$router
.
push
({
name
:
"
welfareInfo
"
,
query
:
{
id
,
patientPolicyId
},
});
}
},
},
};
...
...
src/views/welfare/info/index.vue
View file @
c9f7db0a
...
...
@@ -165,8 +165,21 @@ export default {
return
{
on
:
{
click
:
()
=>
{
this
.
detailForm
=
{
id
,
patientPolicyId
};
this
.
getCustomerDetail
();
if
((
record
.
cardNo
||
''
).
startsWith
(
'
80001428
'
)){
this
.
$apis
.
GETJUMPECCSURL
({
cardNo
:
record
.
cardNo
})
.
then
(
res
=>
{
if
(
res
.
returnCode
===
"
0000
"
)
{
window
.
open
(
res
.
content
,
'
_blank
'
);
}
else
{
this
.
$message
.
error
(
res
.
returnMsg
||
"
操作失败
"
);
}
})
}
else
{
this
.
detailForm
=
{
id
,
patientPolicyId
};
this
.
getCustomerDetail
();
}
},
},
};
...
...
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