1234567891011121314151617181920212223242526272829303132 |
- export default {
- storeConversationList: (state) => state.conversation.conversationList,
- storeCurrentConversation: (state) => state.conversation.currentConversation,
- storeUnReadCount: (state) => state.conversation.unReadCount,
- storeCurrentGroup: (state) => state.conversation.currentGroup,
- storeCurrentMemberInGroup: (state) => state.conversation.currentMemberInGroup,
- storeRevokeMap: (state) => state.conversation.revokeMap,
- storeFriendList: (state) => state.contact.friendList,
- storeBlackList: (state) => state.contact.blackList,
- storeGroupList: (state) => state.contact.groupList,
- storeRecvFriendApplications: (state) => state.contact.recvFriendApplications,
- storeSentFriendApplications: (state) => state.contact.sentFriendApplications,
- storeRecvGroupApplications: (state) => state.contact.recvGroupApplications,
- storeSentGroupApplications: (state) => state.contact.sentGroupApplications,
- storeUnHandleFriendApplicationNum: (state) =>state.contact.unHandleFriendApplicationNum,
- storeUnHandleGroupApplicationNum: (state) =>state.contact.unHandleGroupApplicationNum,
- storeHistoryMessageList: (state) => state.message.historyMessageList,
- storePreviewImageList: (state) => state.message.previewImageList,
- storeHasMoreMessage: (state) => state.message.hasMoreMessage,
- storeQuoteMessage: (state) => state.message.quoteMessage,
- storeSelfInfo: (state) => state.user.selfInfo,
- storeOrganizationData: (state) => state.user.organizationData,
- storeCurrentUserID: (state) => state.user.selfInfo.userID,
- storeIsSyncing: (state) => state.user.isSyncing,
- storeReinstall: (state) => state.user.reinstall,
- storeProgress: (state) => state.user.progress,
- storeAuthData: (state) => state.user.authData,
- storeCacheMap: (state) => state.user.cacheMap,
- storeRootFontSize: (state) => state.user.rootFontSize,
- timStore: (state) => state.timStore,
- newMsg: (state) => state.newMsg
- };
|