emptyStatus.js 769 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. // 空状态图片地址
  2. export default {
  3. state: {
  4. status: [{
  5. url: '/noData/no-data-1.png',
  6. name: '暂无订单',
  7. desc: '我的团购订单',
  8. type: 1
  9. },
  10. {
  11. url: '/noData/no-data-3.png',
  12. name: '暂无记录',
  13. desc: '提现记录',
  14. type: 3
  15. },
  16. {
  17. url: '/noData/no-data-4.png',
  18. name: '暂无记录',
  19. desc: '钱包零钱',
  20. type: 4
  21. },
  22. {
  23. url: '/noData/no-data-6.png',
  24. name: '暂无商品',
  25. desc: '团购大厅',
  26. type: 6
  27. },
  28. {
  29. url: '/noData/no-data-7.png',
  30. name: '购物车空空如也',
  31. decs: '购物车',
  32. type: 7
  33. },
  34. {
  35. url: '/noData/no-data-8.png',
  36. name: '暂无提货点',
  37. desc: '官方提货点',
  38. type: 8
  39. }
  40. ]
  41. },
  42. mutations: {},
  43. actions: {}
  44. }