feat: 完善员工门户功能及ERP集成
主要修改: - 完善员工门户CRM模块(经销商、线索管理) - 添加ERP客户选择器集成 - 优化登录认证和租户选择 - 添加超时配置、企业微信集成等文档 - 更新docker-compose配置 - 将.pid临时文件加入gitignore Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -97,28 +97,28 @@ src/
|
||||
|
||||
### 获取用户信息
|
||||
```typescript
|
||||
GET /system/user/profile
|
||||
Response: UserProfile
|
||||
GET / system / user / profile;
|
||||
Response: UserProfile;
|
||||
```
|
||||
|
||||
### 更新用户信息
|
||||
```typescript
|
||||
PUT /system/user/profile
|
||||
PUT / system / user / profile;
|
||||
Request: {
|
||||
userId: number
|
||||
nickName: string
|
||||
email: string
|
||||
phonenumber: string
|
||||
sex: string
|
||||
userId: number;
|
||||
nickName: string;
|
||||
email: string;
|
||||
phonenumber: string;
|
||||
sex: string;
|
||||
}
|
||||
```
|
||||
|
||||
### 修改密码
|
||||
```typescript
|
||||
PUT /system/user/profile/updatePwd
|
||||
PUT / system / user / profile / updatePwd;
|
||||
Request: {
|
||||
oldPassword: string
|
||||
newPassword: string
|
||||
oldPassword: string;
|
||||
newPassword: string;
|
||||
}
|
||||
```
|
||||
|
||||
@@ -195,4 +195,4 @@ Request: FormData (avatarfile: File)
|
||||
### 兼容性测试
|
||||
|
||||
- Chrome、Firefox、Safari 浏览器测试
|
||||
- 响应式布局测试(桌面端、平板、移动端)
|
||||
- 响应式布局测试(桌面端、平板、移动端)
|
||||
|
||||
Reference in New Issue
Block a user