ad.js 561 B

123456789101112131415161718192021222324
  1. const data = [
  2. {
  3. title:
  4. 'vue-admin-beautiful-pro 2.0版本已发布,增加多项贴心功能,点我提前体验',
  5. url: 'https://chu1204505056.gitee.io/vue-admin-beautiful-pro/#/index',
  6. },
  7. {
  8. title: 'vue-admin-beautiful(antdv) vue3.0版本已发布,点我提前体验',
  9. url: 'https://chu1204505056.gitee.io/vue-admin-beautiful-antdv/#/index',
  10. },
  11. ]
  12. module.exports = [
  13. {
  14. url: '/ad/getList',
  15. type: 'get',
  16. response() {
  17. return {
  18. code: 200,
  19. msg: 'success',
  20. data,
  21. }
  22. },
  23. },
  24. ]