order_list.js 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. let _sort_grid = {
  2. sortGridData() {
  3. return [{
  4. title: '手机保卖',
  5. img: '/static/images/home/goods/1.png'
  6. },{
  7. title: '数码保卖',
  8. img: '/static/images/home/goods/2.png'
  9. },{
  10. title: '欢乐送',
  11. img: '/static/images/home/goods/3.png'
  12. },{
  13. title: '美妆鉴别',
  14. img: '/static/images/home/goods/4.png'
  15. },{
  16. title: '采货节',
  17. img: '/static/images/home/goods/5.png'
  18. },{
  19. title: '测试的',
  20. img: '/static/images/home/goods/6.png'
  21. },{
  22. title: '测试的1',
  23. img: '/static/images/home/goods/7.png'
  24. },{
  25. title: '测试的2',
  26. img: '/static/images/home/goods/8.png'
  27. }];
  28. },
  29. navListData() {
  30. return ['全部','待付款','待发货','待收货','待评价','退款','售后'];
  31. },
  32. orderListData() {
  33. return [{
  34. img: '/static/images/avatar/1.jpg',
  35. name: '仔仔的店铺',
  36. status: '交易成功',
  37. price: "2238.00",
  38. num: 12,
  39. type: 1,
  40. goods_list: [{
  41. img: '/static/images/home/goods/1.png',
  42. name: '百度网盘云盘租号在线极速发货 测试个测试的',
  43. introduce: '测试副标题的内容',
  44. tag: ['支持验机','专业质检'],
  45. price: "1.00",
  46. },{
  47. img: '/static/images/home/goods/2.png',
  48. name: '苹果x iPhoneX256G无锁99新有 测试个测试的',
  49. introduce: '',
  50. tag: [],
  51. price: "2237.00",
  52. }]
  53. },{
  54. img: '/static/images/avatar/2.jpg',
  55. name: '仔仔科技运营部',
  56. status: '交易关闭',
  57. price: "2199.00",
  58. num: 1,
  59. type: 0,
  60. goods_list: [{
  61. img: '/static/images/home/goods/3.png',
  62. name: '商品标题,商品标题,商品标题,商品标题,商品标题,商品标题,商品标题,商品标题,商品标题,商品标题',
  63. introduce: '',
  64. tag: ['支持验机','专业质检'],
  65. price: "2199.00",
  66. }]
  67. }];
  68. },
  69. };
  70. export default _sort_grid;