修改系统名称
This commit is contained in:
parent
0cf708bfaa
commit
8aa3af986f
|
|
@ -3,10 +3,10 @@
|
||||||
此文件为 Claude Code (claude.ai/code) 在此仓库中工作时提供指导。
|
此文件为 Claude Code (claude.ai/code) 在此仓库中工作时提供指导。
|
||||||
|
|
||||||
## 项目名称
|
## 项目名称
|
||||||
经销商管理系统
|
泊云智销通
|
||||||
|
|
||||||
## 项目概述
|
## 项目概述
|
||||||
经销商管理系统是一款面向企业渠道管理的CRM系统,核心解决“客户报备冲突”与“保护期归属”问题。系统通过**唯一有效报备机制**与**自动到期释放机制**,确保同一客户在同一时间只能被一个经销商跟进,并在保护期结束后自动回归可报备池,避免长期占坑,提升渠道效率与公平性。
|
泊云智销通是一款面向企业渠道管理的CRM系统,核心解决“客户报备冲突”与“保护期归属”问题。系统通过**唯一有效报备机制**与**自动到期释放机制**,确保同一客户在同一时间只能被一个经销商跟进,并在保护期结束后自动回归可报备池,避免长期占坑,提升渠道效率与公平性。
|
||||||
|
|
||||||
## 技术栈
|
## 技术栈
|
||||||
- 前端:Vue 3 + TypeScript + Vite + Element Plus
|
- 前端:Vue 3 + TypeScript + Vite + Element Plus
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
<artifactId>by-crm-backend</artifactId>
|
<artifactId>by-crm-backend</artifactId>
|
||||||
<version>1.0.0</version>
|
<version>1.0.0</version>
|
||||||
<name>BY-CRM Backend</name>
|
<name>BY-CRM Backend</name>
|
||||||
<description>经销商管理系统后端服务</description>
|
<description>泊云智销通后端服务</description>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<java.version>1.8</java.version>
|
<java.version>1.8</java.version>
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||||
import org.springframework.scheduling.annotation.EnableScheduling;
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 经销商管理系统主启动类
|
* 泊云智销通主启动类
|
||||||
*/
|
*/
|
||||||
@SpringBootApplication
|
@SpringBootApplication
|
||||||
@EnableScheduling
|
@EnableScheduling
|
||||||
|
|
@ -14,7 +14,7 @@ public class ByCrmApplication {
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
SpringApplication.run(ByCrmApplication.class, args);
|
SpringApplication.run(ByCrmApplication.class, args);
|
||||||
System.out.println("\n========================================");
|
System.out.println("\n========================================");
|
||||||
System.out.println("经销商管理系统启动成功!");
|
System.out.println("泊云智销通启动成功!");
|
||||||
System.out.println("Swagger文档地址: http://localhost:8080/api/swagger-ui/index.html");
|
System.out.println("Swagger文档地址: http://localhost:8080/api/swagger-ui/index.html");
|
||||||
System.out.println("========================================\n");
|
System.out.println("========================================\n");
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
# 经销商管理系统
|
# 泊云智销通
|
||||||
|
|
||||||
## 项目简介
|
## 项目简介
|
||||||
|
|
||||||
经销商管理系统是一款面向企业渠道管理的 CRM 系统,旨在解决渠道管理中的核心问题——**客户报备冲突**与**保护期归属**。系统通过唯一有效报备机制与自动到期释放机制,确保同一客户在同一时间只能被一个经销商跟进,并在保护期结束后自动回归可报备池,避免长期占坑,提升渠道效率与公平性。
|
泊云智销通是一款面向企业渠道管理的 CRM 系统,旨在解决渠道管理中的核心问题——**客户报备冲突**与**保护期归属**。系统通过唯一有效报备机制与自动到期释放机制,确保同一客户在同一时间只能被一个经销商跟进,并在保护期结束后自动回归可报备池,避免长期占坑,提升渠道效率与公平性。
|
||||||
|
|
||||||
### 核心价值
|
### 核心价值
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -58,7 +58,7 @@ router.beforeEach((to, _from, next) => {
|
||||||
const userStore = useUserStore()
|
const userStore = useUserStore()
|
||||||
|
|
||||||
// 设置页面标题
|
// 设置页面标题
|
||||||
document.title = `${to.meta.title || ''} - 经销商管理系统`
|
document.title = `${to.meta.title || ''} - 泊云智销通`
|
||||||
|
|
||||||
// 如果访问登录页,已登录则跳转到首页
|
// 如果访问登录页,已登录则跳转到首页
|
||||||
if (to.path === '/login') {
|
if (to.path === '/login') {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
-- 经销商管理系统数据库初始化脚本
|
-- 泊云智销通数据库初始化脚本
|
||||||
-- 数据库版本:MySQL 8.0
|
-- 数据库版本:MySQL 8.0
|
||||||
|
|
||||||
CREATE DATABASE IF NOT EXISTS crm_db DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
|
CREATE DATABASE IF NOT EXISTS crm_db DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user