From c19bc66ad33eaa741b1dae50aa5c8fbe12b3e007 Mon Sep 17 00:00:00 2001 From: "xiao.tang" Date: Thu, 7 Jan 2021 17:16:54 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8feat(royalpay):=20=E5=88=A0=E9=99=A4ha?= =?UTF-8?q?ndle=E7=9A=84controller?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../payment/validation/order-validation.js | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/src/main/ui/static/payment/validation/order-validation.js b/src/main/ui/static/payment/validation/order-validation.js index 3a1d058be..fc901dba7 100644 --- a/src/main/ui/static/payment/validation/order-validation.js +++ b/src/main/ui/static/payment/validation/order-validation.js @@ -294,24 +294,5 @@ define(['angular', 'uiRouter'], function () { } }, ]) - // 处理 - app.controller('handleCtrl', [ - '$scope', - '$http', - 'commonDialog', - 'logId', - function ($scope, $http, commonDialog, logId) { - $scope.confirm = function () { - $http.post('/sys/financial/mark/resolve/message', { log_id: logId, message: $scope.message }).then( - function () { - $scope.$close() - }, - function (resp) { - commonDialog.alert({ title: 'failed', content: resp.data.message, type: 'error' }) - } - ) - } - }, - ]) return app })