notice.js 883 B

12345678910111213141516171819202122232425262728293031323334
  1. const List = [
  2. {
  3. email: '@email',
  4. image: 'https://i.gtimg.cn/club/item/face/img/8/15918_100.gif',
  5. notice:
  6. 'github开源地址:<a target="_blank" href="https://github.com/chuzhixin/vue-admin-better">点我</a>',
  7. },
  8. {
  9. email: '@email',
  10. image: 'https://i.gtimg.cn/club/item/face/img/0/15640_100.gif',
  11. notice:
  12. 'Admin Pro:<a target="_blank" href="https://vue-admin-beautiful.com/admin-pro">点我</a>',
  13. },
  14. {
  15. email: '@email',
  16. image: 'https://i.gtimg.cn/club/item/face/img/9/15919_100.gif',
  17. notice:
  18. 'Admin Plus:<a target="_blank" href="https://vue-admin-beautiful.com/admin-plus">点我</a>',
  19. },
  20. ]
  21. module.exports = [
  22. {
  23. url: '/notice/getList',
  24. type: 'get',
  25. response: () => {
  26. return {
  27. code: 200,
  28. msg: 'success',
  29. data: { list: List, total: List.length },
  30. }
  31. },
  32. },
  33. ]