index.js 321 B

12345678910
  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. require('./actTags')(app); // 活动标签
  10. };