index.js 276 B

123456789
  1. /**
  2. * @param {Egg.Application} app - egg application
  3. */
  4. module.exports = app => {
  5. require('./banner')(app); // 广告图
  6. require('./indexModule')(app); // 图标菜单
  7. require('./serviceContact')(app); // 客服信息
  8. require('./goodsTags')(app); // 商品标签
  9. };