1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
class Store {
data = {
locationName: '',
participatorList: {},
showParticipatorList: [],
roomId: '',
startTime: '',
endTime: '',
shouldUpdateShowTime: false,
currentPeople: '',
originUsers: [],
originalData: null,
indexNeedUpdate: false,
isIndexAffairListNeedUpdate: false,
tabBarIndex: '0',
updateInfo: {
updateType: '',
isUpate: false
},
onceMeetingContent: null,
relatedAppNeedUpdate: false,
}
resetData() {
this.data.roomId = ''
this.data.participatorList = {}
this.data.showParticipatorList = []
this.data.originUsers = []
this.data.locationName = ''
this.data.onceMeetingContent = null
this.update();
}
resetCopyData() {
this.data.originUsers = []
this.data.onceMeetingContent = null
this.update();
}
resetEditData() {
this.data.roomId = ''
this.data.originUsers = []
this.data.participatorList = {}
this.data.showParticipatorList = []
this.data.locationName = ''
this.data.updateInfo = {
updateType: '',
isUpate: false
}
this.update()
}
}
export default new Store();