index.js 977 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. const { formmat } = require("../../utils/http");
  2. function Home() {
  3. const homeList = [
  4. {
  5. text: "何以中国",
  6. url: "https://cxzx.smcic.net/topic/Applets/shengshizhongguo/0.png",
  7. type: 'toDetail'
  8. },
  9. {
  10. text: "日程安排",
  11. url: "https://cxzx.smcic.net/topic/Applets/shengshizhongguo/1.png",
  12. type: 'toDetail'
  13. },
  14. {
  15. text: "图片集锦",
  16. url: "https://cxzx.smcic.net/topic/Applets/shengshizhongguo/3.png",
  17. type: 'image'
  18. },
  19. {
  20. text: "精彩视频",
  21. url: "https://cxzx.smcic.net/topic/Applets/shengshizhongguo/4.png",
  22. type: 'video'
  23. },
  24. {
  25. text: "媒体风采",
  26. url: "https://cxzx.smcic.net/topic/Applets/shengshizhongguo/5.png",
  27. type: 'toDetail'
  28. },
  29. {
  30. text: "蓝直播",
  31. url: "https://cxzx.smcic.net/topic/Applets/shengshizhongguo/2.png",
  32. type: 'video'
  33. },
  34. ];
  35. return formmat(homeList, 0, "ok");
  36. }
  37. module.exports = {
  38. Home
  39. }