wx.js 232 B

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