diff --git a/api/app/lib/routes/data/index.js b/api/app/lib/routes/data/index.js index 68f800a0..3b718194 100644 --- a/api/app/lib/routes/data/index.js +++ b/api/app/lib/routes/data/index.js @@ -21,7 +21,7 @@ module.exports = function (app, router, opts) { // 运政 //货运 - async function setVehicleType (ctx, next) { + async function setFreightType (ctx, next) { ctx.request.body = { ...(ctx.request.body || {}), type: 'freight' @@ -29,13 +29,13 @@ module.exports = function (app, router, opts) { await next() } app.fs.api.logAttr['GET/vehicle/freight'] = { content: '获取运政列表', visible: true }; - router.get('/vehicle/freight', setVehicleType, vehicle.get); + router.get('/vehicle/freight', setFreightType, vehicle.get); app.fs.api.logAttr['PUT/vehicle/freight'] = { content: '编辑运政数据', visible: true }; - router.put('/vehicle/freight', setVehicleType, vehicle.edit); + router.put('/vehicle/freight', setFreightType, vehicle.edit); app.fs.api.logAttr['DEL/vehicle/freight/:id'] = { content: '删除运政数据', visible: false }; - router.del('/vehicle/freight/:id', setVehicleType, vehicle.del); + router.del('/vehicle/freight/:id', setFreightType, vehicle.del); //客运车 async function setVehicleType (ctx, next) {