shop.ts 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /**
  2. * Mock数据 - 门店管理
  3. */
  4. // 门店状态枚举
  5. export enum ShopStatus {
  6. ACTIVE = 1, // 正常营业
  7. INACTIVE = 0, // 停业
  8. MAINTENANCE = 2 // 维护中
  9. }
  10. // 门店状态文字映射
  11. export const ShopStatusText: Record<number, string> = {
  12. [ShopStatus.ACTIVE]: '营业中',
  13. [ShopStatus.INACTIVE]: '已停业',
  14. [ShopStatus.MAINTENANCE]: '维护中'
  15. };
  16. // 门店状态颜色映射
  17. export const ShopStatusColor: Record<number, string> = {
  18. [ShopStatus.ACTIVE]: '#52c41a',
  19. [ShopStatus.INACTIVE]: '#999999',
  20. [ShopStatus.MAINTENANCE]: '#faad14'
  21. };
  22. // 门店列表Mock数据
  23. export const mockShopList = [
  24. {
  25. id: 1,
  26. name: '万达广场店',
  27. address: '北京市朝阳区建国路93号万达广场B1层',
  28. contactName: '张经理',
  29. contactPhone: '13800138001',
  30. status: ShopStatus.ACTIVE,
  31. deviceCount: 2,
  32. todaySales: 1260,
  33. monthSales: 35680,
  34. createdAt: '2025-10-01 10:00:00'
  35. },
  36. {
  37. id: 2,
  38. name: '人民广场店',
  39. address: '上海市黄浦区人民大道100号',
  40. contactName: '李经理',
  41. contactPhone: '13800138002',
  42. status: ShopStatus.ACTIVE,
  43. deviceCount: 1,
  44. todaySales: 520,
  45. monthSales: 18920,
  46. createdAt: '2025-10-05 10:00:00'
  47. },
  48. {
  49. id: 3,
  50. name: '火车站店',
  51. address: '北京市东城区北京站东街1号',
  52. contactName: '王经理',
  53. contactPhone: '13800138003',
  54. status: ShopStatus.INACTIVE,
  55. deviceCount: 1,
  56. todaySales: 0,
  57. monthSales: 15680,
  58. createdAt: '2025-09-15 10:00:00'
  59. },
  60. {
  61. id: 4,
  62. name: '科技园店',
  63. address: '深圳市南山区科技园南区',
  64. contactName: '赵经理',
  65. contactPhone: '13800138004',
  66. status: ShopStatus.MAINTENANCE,
  67. deviceCount: 1,
  68. todaySales: 0,
  69. monthSales: 8960,
  70. createdAt: '2025-11-01 10:00:00'
  71. },
  72. {
  73. id: 5,
  74. name: '天河城店',
  75. address: '广州市天河区天河路208号',
  76. contactName: '钱经理',
  77. contactPhone: '13800138005',
  78. status: ShopStatus.ACTIVE,
  79. deviceCount: 1,
  80. todaySales: 890,
  81. monthSales: 28560,
  82. createdAt: '2025-12-01 10:00:00'
  83. }
  84. ];
  85. // 门店详情Mock数据
  86. export const mockShopDetail = {
  87. id: 1,
  88. name: '万达广场店',
  89. address: '北京市朝阳区建国路93号万达广场B1层',
  90. contactName: '张经理',
  91. contactPhone: '13800138001',
  92. status: ShopStatus.ACTIVE,
  93. businessHours: '08:00-22:00',
  94. area: 150,
  95. deviceCount: 2,
  96. todaySales: 1260,
  97. todayOrders: 45,
  98. monthSales: 35680,
  99. monthOrders: 1280,
  100. // 门店设备
  101. devices: [
  102. {
  103. id: 1,
  104. deviceId: 'DEV001',
  105. name: '1号柜机',
  106. status: 1,
  107. todaySales: 680,
  108. inventory: 156
  109. },
  110. {
  111. id: 5,
  112. deviceId: 'DEV005',
  113. name: '5号柜机',
  114. status: 1,
  115. todaySales: 580,
  116. inventory: 178
  117. }
  118. ],
  119. // 销售趋势
  120. salesTrend: [
  121. { date: '02-09', amount: 1120 },
  122. { date: '02-10', amount: 1350 },
  123. { date: '02-11', amount: 980 },
  124. { date: '02-12', amount: 1560 },
  125. { date: '02-13', amount: 1780 },
  126. { date: '02-14', amount: 1890 },
  127. { date: '02-15', amount: 1260 }
  128. ],
  129. createdAt: '2025-10-01 10:00:00',
  130. updatedAt: '2026-02-15 14:30:00'
  131. };