index.js 217 B

12345678
  1. /**
  2. * @param {Egg.Application} app - egg application
  3. */
  4. module.exports = app => {
  5. require('./order')(app); // 总订单
  6. require('./orderDetail')(app); // 订单详情
  7. require('./afterSale')(app); // 售后
  8. };