'use strict'; module.exports = app => { const { router, controller } = app; const profix = '/api/hc/'; const target = 'wx'; router.get(target, `${profix}${target}/openid`, controller[target].getOpenid); // 列表查询 };