config.js 855 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // 导航栏按钮类别
  2. export const navbarButtonGroup = {
  3. // 拼团 + 优惠券
  4. groupByCoupon: {
  5. left: ['领券单独购买', '¥1000.00'],
  6. right: ['领券拼团购买', '¥1000.00']
  7. },
  8. // 仅拼团
  9. group: {
  10. left: ['单独购买', '¥1000.00'],
  11. right: ['拼团购买', '¥1000.00']
  12. },
  13. // 限时活动
  14. timeLimit: {
  15. left: ['加入购物车'],
  16. right: ['领券购买', '¥1000.00']
  17. },
  18. // 普通方式
  19. normal: {
  20. left: ['加入购物车'],
  21. right: ['立即购买']
  22. }
  23. }
  24. export function makeQuery() {
  25. return {
  26. userId: '',
  27. homeFloorId: '',
  28. homeTypeId: '',
  29. listType: 1,
  30. productIds: '',
  31. smallTypeId: '',
  32. sortType: 1,
  33. name: '',
  34. pageNum: 1,
  35. pageSize: 12
  36. }
  37. }