'use strict'; /** * [微信公众号通讯路由] * @author szjcomo * @createTime 2020-08-03 * @param {[type]} app [description] * @return {[type]} [description] */ module.exports = app => { /** * [subRouter 命名空间路由] * @type {[type]} */ const subRouter = app.router.namespace(`/${process.env.APP_CUSTOME || 'universal'}`); // 通讯验证 subRouter.get('/wechat/validate', app.controller.wechat.wechat.tokenSign); // 接收消息 subRouter.post('/wechat/validate', app.controller.wechat.wechat.message); // 微信JSAPI subRouter.get('/wechat/jsapi', app.controller.wechat.wechat.wxJsAPIConfig); // 微信支付回调 subRouter.post('/wechat/pay/callbck', app.controller.wechat.wechat.payCallback); }; // // // // // // // // // // // // // // // 10 // // //