ad.js 528 B

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