class Store {
data = {
participatorList: [
{
status:true,username: 'Ceshi', userId: 1, headUrl: '', platform: 'dingtalk'
},
{
status:false,username: 'Ceshi2', userId: 2, headUrl: '', platform: 'dingtalk'
},
{
status:false,username: 'Ceshi3', userId: 3, headUrl: '', platform: 'dingtalk'
}
], // 参会人列表
locationName: '',
participatorUserId: [], // 参会人的userId
userList: [],
aheadTimes: [],
requireUserList: [],
roomId: '',
startTime: '',
endTime: ''
}
}
export default new Store()