clearData.js 383 字节
Newer Older
DCloud_JSON's avatar
DCloud_JSON 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
import $state from '../state/index.js';
export default () => {
  $state.conversation.dataList = [];
  $state.conversation.hasMore = true;

  $state.notification.dataList = [];
  $state.notification.hasMore = true;

  $state.friend.dataList = [];
  $state.friend.hasMore = true;

  $state.group.dataList = [];
  $state.group.hasMore = true;

  $state.currentConversationId = false;
}