diff --git a/src/components/README.md b/src/components/README.md
deleted file mode 100644
index a3467e7..0000000
--- a/src/components/README.md
+++ /dev/null
@@ -1,335 +0,0 @@
-# 上传组件使用说明
-
-本项目提供了两个基于 Ant Design Vue 的二次封装上传组件:
-
-1. **ImageUpload** - 图片上传组件
-2. **FileUpload** - 文件上传组件
-
-## ImageUpload 图片上传组件
-
-### 功能特性
-- 支持单图和多图上传
-- 图片预览功能(支持大图预览)
-- 支持拖拽上传(带拖拽视觉反馈)
-- 文件大小限制(从配置文件读取)
-- 图片尺寸限制(支持最小/最大宽高限制)
-- 上传进度显示和上传状态反馈
-- 错误文件自动过滤
-- 上传成功/失败事件回调
-- 自定义上传按钮文字和提示信息
-- 禁用状态下隐藏删除图标
-- 自动上传到服务器
-- 支持 v-model 双向绑定
-
-### Props 参数
-
-| 参数 | 说明 | 类型 | 默认值 |
-|------|------|------|--------|
-| v-model / modelValue | 图片列表(单图传字符串,多图传数组) | String / Array | [] |
-| maxCount | 最大上传数量 | Number | 1 |
-| accept | 接受的文件类型 | String | 'image/*' |
-| disabled | 是否禁用 | Boolean | false |
-| returnUrl | 是否返回URL(true)或完整文件列表(false) | Boolean | true |
-| uploadText | 上传按钮文字 | String | '上传图片' |
-| tip | 提示文字(显示在上传按钮下方) | String | '' |
-| minWidth | 图片最小宽度(像素),0表示不限制 | Number | 0 |
-| maxWidth | 图片最大宽度(像素),0表示不限制 | Number | 0 |
-| minHeight | 图片最小高度(像素),0表示不限制 | Number | 0 |
-| maxHeight | 图片最大高度(像素),0表示不限制 | Number | 0 |
-| confirmBeforeRemove | 删除前是否确认 | Boolean | false |
-| customUploadBtn | 自定义上传按钮内容(函数返回VNode) | Function | null |
-
-### Events 事件
-
-| 事件名 | 说明 | 回调参数 |
-|--------|------|----------|
-| update:modelValue | 值变化时触发 | value: 图片URL或URL数组 |
-| change | 文件列表变化时触发 | value: 图片URL或URL数组, fileList: 完整文件列表 |
-| preview | 预览图片时触发 | file: 当前预览的文件对象 |
-| uploadSuccess | 上传成功时触发 | data: 响应数据, file: 上传的文件 |
-| uploadError | 上传失败时触发 | errorMsg: 错误信息, file: 上传的文件 |
-
-### 使用示例
-
-#### 单图上传
-```vue
-
-
-
-
图片URL: {{ imageUrl }}
-
-
-
-
-```
-
-#### 多图上传
-```vue
-
-
-
-
-
-
-
-```
-
-#### 限制文件类型
-```vue
-
-
-
-```
-
-#### 限制图片尺寸
-```vue
-
-
-
-```
-
-#### 自定义上传文字和提示
-```vue
-
-
-
-```
-
-#### 监听上传事件
-```vue
-
-
-
-
-
-```
-
----
-
-## FileUpload 文件上传组件
-
-### 功能特性
-- 支持单文件和多文件上传
-- 文件列表展示
-- 支持多选上传
-- 文件大小限制(从配置文件读取)
-- 自动上传到服务器
-- 支持 v-model 双向绑定
-
-### Props 参数
-
-| 参数 | 说明 | 类型 | 默认值 |
-|------|------|------|--------|
-| v-model / modelValue | 文件列表(单文件传字符串,多文件传数组) | String / Array | [] |
-| maxCount | 最大上传数量 | Number | 1 |
-| accept | 接受的文件类型(例如 '.pdf,.doc,.docx' 或 '*') | String | '*' |
-| disabled | 是否禁用 | Boolean | false |
-| multiple | 是否支持多选 | Boolean | false |
-| returnUrl | 是否返回URL(true)或完整文件列表(false) | Boolean | true |
-
-### Events 事件
-
-| 事件名 | 说明 | 回调参数 |
-|--------|------|----------|
-| update:modelValue | 值变化时触发 | value: 文件URL或URL数组 |
-| change | 文件列表变化时触发 | value: 文件URL或URL数组, fileList: 完整文件列表 |
-| remove | 移除文件时触发 | file: 被移除的文件对象 |
-
-### 使用示例
-
-#### 单文件上传
-```vue
-
-
-
-
文件URL: {{ fileUrl }}
-
-
-
-
-```
-
-#### 多文件上传
-```vue
-
-
-
-
-
-
-
-```
-
-#### 限制文件类型
-```vue
-
-
-
-```
-
-#### 监听文件移除
-```vue
-
-
-
-
-
-```
-
----
-
-## 配置说明
-
-上传组件的配置位于 `src/config/upload.js` 文件中:
-
-```javascript
-export default {
- apiObj: systemAPI.upload, // 图片上传请求API对象
- filename: "file", // form请求时文件的key
- successCode: 1, // 请求完成代码
- maxSize: 10, // 最大图片大小 默认10MB
- parseData: function (res) {
- return {
- code: res.code, // 分析状态字段结构
- fileName: res.data.name, // 分析文件名称
- src: res.data.url, // 分析图片远程地址结构
- msg: res.message // 分析描述字段结构
- }
- },
- apiObjFile: systemAPI.upload, // 文件上传请求API对象
- maxSizeFile: 10 // 最大文件大小 默认10MB
-}
-```
-
-### 配置项说明
-
-| 配置项 | 说明 |
-|--------|------|
-| apiObj | 图片上传API方法 |
-| filename | FormData 中文件的字段名 |
-| successCode | 上传成功的响应码 |
-| maxSize | 图片最大大小限制(MB) |
-| parseData | 响应数据解析函数,将后端响应转换为标准格式 |
-| apiObjFile | 文件上传API方法(如未配置则使用 apiObj) |
-| maxSizeFile | 文件最大大小限制(MB) |
-
-## 注意事项
-
-1. **v-model 数据格式**:
- - 单图/单文件上传:使用字符串类型 `imageUrl = 'http://example.com/image.jpg'`
- - 多图/多文件上传:使用数组类型 `imageList = ['http://example.com/1.jpg', 'http://example.com/2.jpg']`
-
-2. **返回值控制**:
- - `returnUrl: true`(默认):返回 URL 字符串或数组
- - `returnUrl: false`:返回完整的文件列表对象(包含 uid, name, status, url 等字段)
-
-3. **API 响应格式**:
- - 确保后端 API 返回的数据格式与 `parseData` 函数的解析逻辑一致
-
-4. **文件大小限制**:
- - 图片上传使用 `maxSize` 配置
- - 文件上传使用 `maxSizeFile` 配置
-
-5. **图片尺寸限制**:
- - 设置 `minWidth`、`maxWidth`、`minHeight`、`maxHeight` 可以限制图片尺寸
- - 尺寸校验会在上传前进行,不符合要求的文件将被拒绝
- - 推荐配合 `tip` 属性显示尺寸要求提示
-
-6. **上传状态反馈**:
- - 上传过程中显示加载动画
- - 上传成功/失败会显示相应的提示消息
- - 可通过 `@upload-success` 和 `@upload-error` 事件监听上传结果
-
-7. **拖拽上传**:
- - 组件支持拖拽上传,拖拽时会有视觉反馈
- - 拖拽区域会显示蓝色边框和背景色变化
-
-8. **错误处理**:
- - 上传失败的文件会自动从列表中过滤
- - 只有上传成功的文件会被包含在最终结果中
diff --git a/src/components/ImageUpload/file.vue b/src/components/scUpload/file.vue
similarity index 100%
rename from src/components/ImageUpload/file.vue
rename to src/components/scUpload/file.vue
diff --git a/src/components/ImageUpload/index.vue b/src/components/scUpload/index.vue
similarity index 100%
rename from src/components/ImageUpload/index.vue
rename to src/components/scUpload/index.vue
diff --git a/src/layouts/components/breadcrumb.vue b/src/layouts/components/breadcrumb.vue
index 3348a91..4bb50c7 100644
--- a/src/layouts/components/breadcrumb.vue
+++ b/src/layouts/components/breadcrumb.vue
@@ -53,23 +53,3 @@ watch(
{ immediate: true }
)
-
-
diff --git a/src/layouts/components/userbar.vue b/src/layouts/components/userbar.vue
index e740cb9..ea145f5 100644
--- a/src/layouts/components/userbar.vue
+++ b/src/layouts/components/userbar.vue
@@ -206,7 +206,7 @@ const handleLanguageChange = ({ key }) => {
const handleMenuClick = ({ key }) => {
switch (key) {
case 'profile':
- router.push('/profile')
+ router.push('/ucenter')
break
case 'settings':
// 系统设置功能暂未实现
diff --git a/src/pages/system/setting/index.vue b/src/pages/system/setting/index.vue
index 3db9e7c..610ad3f 100644
--- a/src/pages/system/setting/index.vue
+++ b/src/pages/system/setting/index.vue
@@ -183,8 +183,8 @@
-
-