sort_vue.js 934 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. let _sort_data = {
  2. sortListData() {
  3. return [{
  4. id: 1,
  5. name: '苹果',
  6. img: '/static/images/home/grid-icon/30.png',
  7. },{
  8. id: 2,
  9. name: '华为',
  10. img: '/static/images/home/grid-icon/31.png',
  11. },{
  12. id: 3,
  13. name: '小米',
  14. img: '/static/images/home/grid-icon/32.png',
  15. },{
  16. id: 4,
  17. name: 'vivo',
  18. img: '/static/images/home/grid-icon/33.png',
  19. },{
  20. id: 5,
  21. name: 'oppo',
  22. img: '/static/images/home/grid-icon/34.png',
  23. },{
  24. id: 6,
  25. name: '魅族',
  26. img: '/static/images/home/grid-icon/35.png',
  27. },{
  28. id: 7,
  29. name: '寄卖优选',
  30. img: '/static/images/home/grid-icon/36.png',
  31. },{
  32. id: 8,
  33. name: '验机特惠',
  34. img: '/static/images/home/grid-icon/37.png',
  35. },{
  36. id: 9,
  37. name: '直播特卖',
  38. img: '/static/images/home/grid-icon/38.png',
  39. },{
  40. id: 10,
  41. name: '更多分类',
  42. img: '/static/images/home/grid-icon/39.png',
  43. }];
  44. },
  45. };
  46. export default _sort_data;