data.js 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. export const toolList = [
  2. {
  3. title: "扫码验劵",
  4. img: require('@/static/image/home/1.png'),
  5. background:'linear-gradient(143deg, #FFA78F -6%, #F23E2C 152%)',
  6. url: '/pages_module/scanCode/index',
  7. },
  8. {
  9. title: "输码验劵",
  10. background:'linear-gradient(143deg, #1E99FE -6%, #5788FB 152%)',
  11. img: require('@/static/image/home/2.png'),
  12. url:'/pages_module/scanCoupons/index'
  13. },
  14. {
  15. title: "核销明细",
  16. background:'linear-gradient(143deg, #9B78F6 -6%, #7548FD 152%)',
  17. img: require('@/static/image/home/3.png'),
  18. url:"/pages/tabbar/order/index"
  19. },
  20. {
  21. title: "收款记录",
  22. background:'linear-gradient(143deg, #17CFEB -6%, #5799FB 152%)',
  23. img: require('@/static/image/home/4.png')
  24. },
  25. ]
  26. export const tobeList = [
  27. {
  28. title:'经营数据',
  29. img: require('@/static/image/home/tobe_1.png'),
  30. url:"/pages_module/operateData/index"
  31. },
  32. // {
  33. // title:'商品管理',
  34. // img: require('@/static/image/home/tobe_2.png'),
  35. // },
  36. {
  37. title:'订单管理',
  38. img: require('@/static/image/home/tobe_3.png'),
  39. url:"/pages/tabbar/order/index"
  40. },
  41. {
  42. title:'财务对账',
  43. img: require('@/static/image/home/tobe_4.png'),
  44. url:"/pages_module/financial/index"
  45. },
  46. {
  47. title:'收款账户',
  48. img: require('@/static/image/home/tobe_5.png'),
  49. url:"/pages_module/receiving/index"
  50. },
  51. // {
  52. // title:'活动中心',
  53. // img: require('@/static/image/home/tobe_6.png'),
  54. // },
  55. // {
  56. // title:'会员管理',
  57. // img: require('@/static/image/home/tobe_7.png'),
  58. // },
  59. // {
  60. // title:'更多',
  61. // img: require('@/static/image/home/tobe_8.png'),
  62. // },
  63. ]
  64. export const statisticsList = [
  65. {
  66. title: "今日成交金额",
  67. price: "todayAmount",
  68. proportion: "元",
  69. state: 0
  70. },
  71. {
  72. title: "今日成交订单量",
  73. price: "todayOrder",
  74. proportion: "单",
  75. state: 0
  76. },
  77. {
  78. title: "今日核销金额",
  79. price: "todayWriteAmount",
  80. proportion: "元",
  81. state: 1
  82. },
  83. {
  84. title: "今日核销订单",
  85. price: "todayWriteOrder",
  86. proportion: "单",
  87. state: 2
  88. },
  89. ]