Commit 985479c0 authored by Hsinli's avatar Hsinli

Merge branch 'master' of t-git.51gjj.com:fangbin/51business

parents 8b47714e 1c2df9de
Pipeline #13326 passed with stage
in 23 seconds
'use strict';
const Controller = require('egg').Controller;
class CallriskController extends Controller {
/**
* 获取黑名单报告
*/
async getCallriskReport() {
const { ctx } = this;
let ret = await ctx.service.credit.callrisk.getReport();
ctx.success(ret);
}
}
module.exports = CallriskController;
......@@ -8,5 +8,8 @@ module.exports = app => {
router.get('third', '/blacklist/report', 'credit.blacklist.getBlacklistReport');
//我的信用-个人通话风险
router.get('/callrisk/report', 'credit.callrisk.getCallriskReport');
};
This diff is collapsed.
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