classify.js 1.0 KB

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