data.js 2.3 KB

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