exampleStore.js 687 Bytes
class Store {
    data = {
        participatorList: [], // 参会人列表
        locationName: '',
        conflictPeople: [],
        participatorUserId: [], // 参会人的userId
        userList: [],
        // 重复 重复机制
        repeatable:0,
        recurrenceModel:{
            model:"no_repeat",
        },
        editList: [{ icon: 'icondingwei', text: '地点' }, { icon: 'iconhuiqiantixing', text: '提醒' }, { icon: 'iconchongfu', text: '重复' }, { icon: 'icondidianmiaoshu', text: '描述' }, { icon: 'iconshanchu', text: '删除' }],
        remark: '', // 会议描述
        aheadTimes: [],
        requireUserList: []
    }

}
export default new Store()