diff --git a/Cunkebao/src/store/module/ckchat/ckchat.data.ts b/Cunkebao/src/store/module/ckchat/ckchat.data.ts index c7d28f66..f9780ab6 100644 --- a/Cunkebao/src/store/module/ckchat/ckchat.data.ts +++ b/Cunkebao/src/store/module/ckchat/ckchat.data.ts @@ -33,6 +33,7 @@ export interface CkUserInfo { export interface CkChatState { userInfo: CkUserInfo | null; isLoggedIn: boolean; + searchKeyword: string; contractList: ContractData[]; chatSessions: any[]; kfUserList: KfUserListData[]; @@ -42,6 +43,8 @@ export interface CkChatState { newContractList: ContactGroupByLabel[]; getContractList: () => ContractData[]; getNewContractList: () => ContactGroupByLabel[]; + setSearchKeyword: (keyword: string) => void; + clearSearchKeyword: () => void; asyncKfSelected: (data: number) => void; asyncWeChatGroup: (data: weChatGroup[]) => void; asyncCountLables: (data: ContactGroupByLabel[]) => void;