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 };