addEventInitialValue.js 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. export default{
  2. eventFormInitialValue: {
  3. mainBannerPicture: "https://tokyo2020.org/assets/img/pages/news/20180802-01-photo-main.jpg",
  4. title: "",
  5. eventType: "",
  6. eventDate: "",
  7. country: "",
  8. city: "",
  9. overview: "",
  10. contentPicture: "",
  11. contentVideo: "",
  12. marathoneDistancePrice: "",
  13. halfmarathoneDistancePrice: "",
  14. ageLimit: "",
  15. awardMedals: "",
  16. maximumTime: "",
  17. aidStations: "",
  18. equipmentStorage: "",
  19. parking: "",
  20. refreshments: "",
  21. map: "",
  22. addEventMessage: null
  23. },
  24. eventList: [],
  25. editFormFlag: false,
  26. gallery: [],
  27. // eventusers: [],
  28. eventTypes: [
  29. { optionName: 'Select Event Type', id: 1 },
  30. { optionName: 'Triathlon', id: 2 },
  31. { optionName: 'Marathon', id: 3 },
  32. { optionName: 'Cycling', id: 4 }
  33. ],
  34. // addPhotogalaryInitialValue: {
  35. // eventType: "",
  36. // eventTitle: "",
  37. // pictures: [
  38. // {
  39. // id: '1',
  40. // name: `picture_1}`,
  41. // value: ""
  42. // },
  43. // {
  44. // id: '2',
  45. // name: `picture_2`,
  46. // value: ""
  47. // },
  48. // {
  49. // id: '3',
  50. // name: `picture_3`,
  51. // value: ""
  52. // },
  53. // {
  54. // id: '4',
  55. // name: `picture_4`,
  56. // value: ""
  57. // },
  58. // {
  59. // id: '5',
  60. // name: `picture_5`,
  61. // value: ""
  62. // },
  63. // {
  64. // id: '6',
  65. // name: `picture_6`,
  66. // value: ""
  67. // },
  68. // {
  69. // id: '7',
  70. // name: `picture_7`,
  71. // value: ""
  72. // },
  73. // {
  74. // id: '8',
  75. // name: `picture_8`,
  76. // value: ""
  77. // },
  78. // {
  79. // id: '9',
  80. // name: `picture_9`,
  81. // value: ""
  82. // },
  83. // {
  84. // id: '10',
  85. // name: `picture_10`,
  86. // value: ""
  87. // }
  88. // ]
  89. // }
  90. }