Commit 38f289ff authored by Hsinli's avatar Hsinli

fix expire time

parent b9d5376e
Pipeline #14256 passed with stage
in 31 seconds
......@@ -61,7 +61,7 @@ class BlacklistService extends Service {
age: reportData.age,
id_card: reportData.id_card.substring(0, 3) + '**********' + reportData.id_card.substring(15, 18),//身份证号(只展示前四位和后四位)
city: reportData.city || '--',//城市(省-市)
expire_time: moment(reportData.created_at).add(30, 'days').format('YYYY-MM-DD'),//报告有效期为报告生成日期往后推30
expire_time: moment(reportData.created_at).add(15, 'days').format('YYYY-MM-DD'),//报告有效期为报告生成日期往后推15
},
blacklist: {
blacklist_of_internet_loans: reportData.blacklist_of_internet_loans,//是否命中网贷黑名单
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment