Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
5
51business
Project
Project
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
方斌
51business
Commits
45aa6401
Commit
45aa6401
authored
Oct 11, 2019
by
李尚科
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
1a2d36c3
Pipeline
#14762
passed with stage
in 35 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
callrisk.js
app/service/credit/callrisk.js
+3
-1
No files found.
app/service/credit/callrisk.js
View file @
45aa6401
...
...
@@ -82,7 +82,9 @@ class CallriskService extends Service {
//订单是否在有效期内
const
net_time
=
basics
.
net_time
;
basics
.
net_time
=
(
net_time
/
30
).
toFixed
()
+
'月'
+
net_time
%
30
+
'天'
;
const
months
=
(
net_time
/
30
).
toFixed
();
const
days
=
net_time
%
30
;
basics
.
net_time
=
months
+
'月'
+
(
days
?
days
+
'天'
:
''
);
basics
.
mobile
=
basics
.
mobile
.
substring
(
0
,
3
)
+
'****'
+
basics
.
mobile
.
substring
(
7
,
11
);
//手机号(只展示前三位和后四位)
const
report_valid
=
await
ctx
.
service
.
credit
.
order
.
getReportValid
(
'callrisk'
,
report_id
);
let
report
=
{
...
...
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