commit ff47306fa2c355468e4e507e0e2a8cb1ddb2f46a
Author: lbw_9527443 <780139497@qq.com>
Date: Mon Jan 26 14:10:54 2026 +0800
feat: 初始化 Vue 3 + TypeScript 项目并添加销售控制台页面
- 使用 Vue 3、TypeScript、Vite、Pinia 和 Vue Router 搭建项目基础结构
- 集成 Tailwind CSS 和 DaisyUI 作为 UI 框架
- 创建销售控制台主页面,包含客户列表、对话监控和客户画像面板
- 添加模拟数据以展示客户在不同销售阶段的流转状态
- 实现 AI/人工切换、消息发送、资料推送等核心交互功能
diff --git a/247_Contry/.gitignore b/247_Contry/.gitignore
new file mode 100644
index 0000000..a3f7a51
--- /dev/null
+++ b/247_Contry/.gitignore
@@ -0,0 +1,36 @@
+# Logs
+logs
+*.log
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+pnpm-debug.log*
+lerna-debug.log*
+
+node_modules
+.DS_Store
+dist
+dist-ssr
+coverage
+*.local
+
+# Editor directories and files
+.vscode/*
+!.vscode/extensions.json
+.idea
+*.suo
+*.ntvs*
+*.njsproj
+*.sln
+*.sw?
+
+*.tsbuildinfo
+
+.eslintcache
+
+# Cypress
+/cypress/videos/
+/cypress/screenshots/
+
+# Vitest
+__screenshots__/
diff --git a/247_Contry/.prettierrc.json b/247_Contry/.prettierrc.json
new file mode 100644
index 0000000..29a2402
--- /dev/null
+++ b/247_Contry/.prettierrc.json
@@ -0,0 +1,6 @@
+{
+ "$schema": "https://json.schemastore.org/prettierrc",
+ "semi": false,
+ "singleQuote": true,
+ "printWidth": 100
+}
diff --git a/247_Contry/.vscode/extensions.json b/247_Contry/.vscode/extensions.json
new file mode 100644
index 0000000..f473615
--- /dev/null
+++ b/247_Contry/.vscode/extensions.json
@@ -0,0 +1,6 @@
+{
+ "recommendations": [
+ "Vue.volar",
+ "prettier.prettier-vscode"
+ ]
+}
diff --git a/247_Contry/README.md b/247_Contry/README.md
new file mode 100644
index 0000000..896cfc4
--- /dev/null
+++ b/247_Contry/README.md
@@ -0,0 +1,42 @@
+# 247_Contry
+
+This template should help get you started developing with Vue 3 in Vite.
+
+## Recommended IDE Setup
+
+[VS Code](https://code.visualstudio.com/) + [Vue (Official)](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur).
+
+## Recommended Browser Setup
+
+- Chromium-based browsers (Chrome, Edge, Brave, etc.):
+ - [Vue.js devtools](https://chromewebstore.google.com/detail/vuejs-devtools/nhdogjmejiglipccpnnnanhbledajbpd)
+ - [Turn on Custom Object Formatter in Chrome DevTools](http://bit.ly/object-formatters)
+- Firefox:
+ - [Vue.js devtools](https://addons.mozilla.org/en-US/firefox/addon/vue-js-devtools/)
+ - [Turn on Custom Object Formatter in Firefox DevTools](https://fxdx.dev/firefox-devtools-custom-object-formatters/)
+
+## Type Support for `.vue` Imports in TS
+
+TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types.
+
+## Customize configuration
+
+See [Vite Configuration Reference](https://vite.dev/config/).
+
+## Project Setup
+
+```sh
+pnpm install
+```
+
+### Compile and Hot-Reload for Development
+
+```sh
+pnpm dev
+```
+
+### Type-Check, Compile and Minify for Production
+
+```sh
+pnpm build
+```
diff --git a/247_Contry/env.d.ts b/247_Contry/env.d.ts
new file mode 100644
index 0000000..11f02fe
--- /dev/null
+++ b/247_Contry/env.d.ts
@@ -0,0 +1 @@
+///