From 21e5d47bf9380e135dc6efcffcb765a641e7ec5c Mon Sep 17 00:00:00 2001 From: "gao.zhiyuan" Date: Thu, 13 Jul 2023 09:58:47 +0800 Subject: [PATCH] =?UTF-8?q?reportHandle=20=E8=B7=AF=E7=94=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/app/lib/routes/report/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/app/lib/routes/report/index.js b/api/app/lib/routes/report/index.js index 708692b5..3762c65e 100644 --- a/api/app/lib/routes/report/index.js +++ b/api/app/lib/routes/report/index.js @@ -13,7 +13,7 @@ module.exports = function (app, router, opts) { app.fs.api.logAttr['GET/report/:reportId/detail'] = { content: '获取上报详情', visible: false }; router.get('/report/:reportId/detail', report.reportDetail); - app.fs.api.logAttr['GET/report/:reportId/handle'] = { content: '处理上报详情', visible: false }; + app.fs.api.logAttr['POST/report/:reportId/handle'] = { content: '处理上报详情', visible: false }; router.post('/report/:reportId/handle', report.reportHandle); app.fs.api.logAttr['POST/report'] = { content: '创建上报', visible: false };