12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- export default{
- eventFormInitialValue: {
- mainBannerPicture: "https://tokyo2020.org/assets/img/pages/news/20180802-01-photo-main.jpg",
- title: "",
- eventType: "",
- eventDate: "",
- country: "",
- city: "",
- overview: "",
- contentPicture: "",
- contentVideo: "",
- marathoneDistancePrice: "",
- halfmarathoneDistancePrice: "",
- ageLimit: "",
- awardMedals: "",
- maximumTime: "",
- aidStations: "",
- equipmentStorage: "",
- parking: "",
- refreshments: "",
- map: "",
- addEventMessage: null
- },
- eventList: [],
- editFormFlag: false,
- gallery: [],
- // eventusers: [],
- eventTypes: [
- { optionName: 'Select Event Type', id: 1 },
- { optionName: 'Triathlon', id: 2 },
- { optionName: 'Marathon', id: 3 },
- { optionName: 'Cycling', id: 4 }
- ],
- // addPhotogalaryInitialValue: {
- // eventType: "",
- // eventTitle: "",
- // pictures: [
- // {
- // id: '1',
- // name: `picture_1}`,
- // value: ""
- // },
- // {
- // id: '2',
- // name: `picture_2`,
- // value: ""
- // },
- // {
- // id: '3',
- // name: `picture_3`,
- // value: ""
- // },
- // {
- // id: '4',
- // name: `picture_4`,
- // value: ""
- // },
- // {
- // id: '5',
- // name: `picture_5`,
- // value: ""
- // },
- // {
- // id: '6',
- // name: `picture_6`,
- // value: ""
- // },
- // {
- // id: '7',
- // name: `picture_7`,
- // value: ""
- // },
- // {
- // id: '8',
- // name: `picture_8`,
- // value: ""
- // },
- // {
- // id: '9',
- // name: `picture_9`,
- // value: ""
- // },
- // {
- // id: '10',
- // name: `picture_10`,
- // value: ""
- // }
- // ]
- // }
- }
|