classify.js 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. "use strict";
  2. const classifyData = [
  3. {
  4. "name": "品牌",
  5. "type": "1",
  6. "value": "0",
  7. "text": "全部品牌"
  8. },
  9. {
  10. "name": "车源地",
  11. "type": "1",
  12. "value": "1",
  13. "text": "全国"
  14. },
  15. {
  16. "name": "价格",
  17. "unit": "万元",
  18. "content": "不限",
  19. "type": "2",
  20. "value": [],
  21. "min": 0,
  22. "step": 10,
  23. "max": 60
  24. },
  25. {
  26. "name": "车龄",
  27. "unit": "年",
  28. "content": "不限",
  29. "type": "2",
  30. "value": [],
  31. "min": 0,
  32. "step": 2,
  33. "max": 12
  34. },
  35. {
  36. "name": "里程",
  37. "unit": "万公里",
  38. "content": "不限",
  39. "type": "2",
  40. "value": [],
  41. "min": 0,
  42. "step": 2,
  43. "max": 12
  44. },
  45. {
  46. "name": "变速箱",
  47. "type": "boxType",
  48. "foods": []
  49. },
  50. {
  51. "name": "车身结构",
  52. "type": "structure",
  53. "foods": []
  54. },
  55. {
  56. "name": "排放标准",
  57. "type": "emission",
  58. "foods": []
  59. },
  60. {
  61. "name": "能源类型",
  62. "type": "energy",
  63. "foods": []
  64. },
  65. {
  66. "name": "排量",
  67. "type": "displacement",
  68. "foods": []
  69. },
  70. {
  71. "name": "座椅",
  72. "type": "set",
  73. "foods": []
  74. }
  75. ];
  76. exports.classifyData = classifyData;