columns.js 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. const deatils_img = [{
  2. id: '1',
  3. title: '酒店1',
  4. img: "https://fastly.jsdelivr.net/npm/@vant/assets/apple-1.jpeg"
  5. },
  6. {
  7. id: '2',
  8. title: '酒店2',
  9. img: "https://fastly.jsdelivr.net/npm/@vant/assets/apple-2.jpeg"
  10. }
  11. ]
  12. const formData = {
  13. value0: "酒店",
  14. value1: "酒店",
  15. value2: "酒店",
  16. value3: "酒店",
  17. value4: "酒店",
  18. }
  19. const searchLetter = ["A", "B", "C", "D", "E", "F", "G", "H", "J", "K", "L", "M", "N", "P", "Q", "R", "S", "T", "W", "X", "Y", "Z"];
  20. const value1_option = [{
  21. text: '中式院落',
  22. value: 0
  23. },
  24. {
  25. text: '无柱',
  26. value: 1
  27. }
  28. ]
  29. const value2_option = [{
  30. text: '不限',
  31. value: 0
  32. },
  33. {
  34. text: '五星酒店',
  35. value: 1
  36. },
  37. {
  38. text: '四星酒店',
  39. value: 2
  40. },
  41. {
  42. text: '三星酒店',
  43. value: 3
  44. },
  45. ]
  46. const value3_option = [{
  47. text: '不限',
  48. value: 0
  49. },
  50. {
  51. text: '10-30人',
  52. value: 1
  53. },
  54. {
  55. text: '30-60人',
  56. value: 2
  57. },
  58. {
  59. text: '60+',
  60. value: 3
  61. },
  62. ]
  63. const value4_option = [{
  64. text: '不限',
  65. value: 0
  66. },
  67. {
  68. text: '无柱',
  69. value: 1
  70. },
  71. {
  72. text: '场地方正',
  73. value: 2
  74. },
  75. ]
  76. export {
  77. deatils_img,
  78. formData,
  79. searchLetter,
  80. value1_option,
  81. value2_option,
  82. value3_option,
  83. value4_option
  84. }