diff --git a/Cunkebao/src/pages/pc/ckbox/README.md b/Cunkebao/src/pages/pc/ckbox/README.md
deleted file mode 100644
index a7cb0127..00000000
--- a/Cunkebao/src/pages/pc/ckbox/README.md
+++ /dev/null
@@ -1,236 +0,0 @@
-# 触客宝模块 (CKBox)
-
-## 功能概述
-
-触客宝模块是一个类似微信的聊天系统,提供实时消息、联系人管理、群组聊天等功能,专为企业客户服务场景设计。
-
-## 主要功能
-
-### 1. 聊天功能
-
-- 实时消息发送和接收
-- 支持文本、图片、文件等多种消息类型
-- 消息状态显示(发送中、已发送、已读)
-- 消息撤回和转发
-- 表情包和快捷回复
-
-### 2. 联系人管理
-
-- 联系人列表展示
-- 在线状态显示
-- 联系人搜索和筛选
-- 联系人资料查看
-- 添加/删除联系人
-
-### 3. 群组功能
-
-- 群组创建和管理
-- 群成员管理
-- 群组消息
-- 群组设置
-
-### 4. 聊天会话
-
-- 聊天会话列表
-- 未读消息提醒
-- 会话置顶和静音
-- 聊天记录管理
-- 会话搜索
-
-### 5. 通话功能
-
-- 语音通话
-- 视频通话
-- 通话记录
-
-## 界面布局
-
-```
-┌─────────────────────────────────────────┐
-│ [搜索栏] │
-├─────────────────────────────────────────┤
-│ [聊天] [联系人] [群组] │
-├─────────────────────────────────────────┤
-│ ┌─────────────────┐ ┌─────────────────┐ │
-│ │ 聊天列表 │ │ │ │
-│ │ • 张三 (2) │ │ │ │
-│ │ • 技术支持群 │ │ 聊天窗口 │ │
-│ │ • 李四 │ │ │ │
-│ │ │ │ │ │
-│ └─────────────────┘ └─────────────────┘ │
-└─────────────────────────────────────────┘
-```
-
-## 文件结构
-
-```
-ckbox/
-├── index.tsx # 主页面
-├── data.ts # 数据类型定义
-├── api.ts # API接口
-├── index.module.scss # 主页面样式
-├── test.tsx # 测试页面
-├── README.md # 说明文档
-└── components/ # 组件目录
- ├── ChatWindow.tsx # 聊天窗口
- ├── ContactList.tsx # 联系人列表
- ├── MessageList.tsx # 消息列表
- └── *.module.scss # 组件样式文件
-```
-
-## 技术栈
-
-- **React 18** - 前端框架
-- **TypeScript** - 类型安全
-- **Ant Design** - UI组件库
-- **SCSS** - 样式预处理器
-- **Day.js** - 日期处理
-- **WebSocket** - 实时通信
-
-## 数据结构
-
-### 联系人 (ContractData)
-
-```typescript
-interface ContractData {
- id: string;
- name: string;
- phone: string;
- avatar?: string;
- online: boolean;
- lastSeen?: string;
- status?: string;
- department?: string;
- position?: string;
-}
-```
-
-### 消息 (MessageData)
-
-```typescript
-interface MessageData {
- id: string;
- senderId: string;
- senderName: string;
- content: string;
- type: MessageType;
- timestamp: string;
- isRead: boolean;
- replyTo?: string;
- forwardFrom?: string;
-}
-```
-
-### 聊天会话 (ChatSession)
-
-```typescript
-interface ChatSession {
- id: string;
- type: "private" | "group";
- name: string;
- avatar?: string;
- lastMessage: string;
- lastTime: string;
- unreadCount: number;
- online: boolean;
- members?: string[];
- pinned?: boolean;
- muted?: boolean;
-}
-```
-
-## 使用方法
-
-### 1. 路由配置
-
-在路由配置中添加触客宝模块:
-
-```typescript
-// router/module/ckbox.tsx
-import React from "react";
-import { lazy } from "react";
-import type { RouteObject } from "react-router-dom";
-
-const CkboxPage = lazy(() => import("@/pages/pc/ckbox"));
-
-const ckboxRoutes: (RouteObject & { auth?: boolean; requiredRole?: string })[] = [
- {
- path: "/ckbox",
- element: