diff --git a/src/main/ui/static/analysis/clearing-log.js b/src/main/ui/static/analysis/clearing-log.js index 5ad0a7347..7173f8632 100644 --- a/src/main/ui/static/analysis/clearing-log.js +++ b/src/main/ui/static/analysis/clearing-log.js @@ -497,6 +497,8 @@ define(['angular', 'decimal', 'uiBootstrap', 'uiRouter', 'angularEcharts'], func $scope.settleLogs = settleLogs.map(log => { let info = { 'id': log.clearing_id, + 'time':log.operate_time, + 'amount':log.net_amount, 'remark': log.plan_detail.remark || log.plan_detail.plan_id, 'send': false }; @@ -507,13 +509,6 @@ define(['angular', 'decimal', 'uiBootstrap', 'uiRouter', 'angularEcharts'], func }; $scope.sendCheckCodeButton = false; $scope.sendMailButton = false; - $scope.check_code = ''; - $scope.sendCheckCode = function () { - $scope.error_msg = ''; - $http.get('/sys/settlement/reports/send_checkcode').then(function (resp) { - }); - $scope.sendCheckCodeButton = true; - }; $scope.sendSettlementMail = function () { $scope.error_msg = '正在发送,请稍后。'; diff --git a/src/main/ui/static/analysis/templates/settlement_send_check_code.html b/src/main/ui/static/analysis/templates/settlement_send_check_code.html index 630ede11d..0d17de1de 100644 --- a/src/main/ui/static/analysis/templates/settlement_send_check_code.html +++ b/src/main/ui/static/analysis/templates/settlement_send_check_code.html @@ -5,7 +5,10 @@