diff --git a/README.md b/README.md
index ffe957c..35048e2 100644
--- a/README.md
+++ b/README.md
@@ -159,6 +159,14 @@ qweasdzxc1
- `POST /api/payments/initiate/` - 发起支付
- `POST /api/payments/confirm/` - 确认支付
+
+## 上传图片接口 不要乱传文件,造成oss存储费用增加
+### 上传硬件的3D文件(小智参数) zip压缩包,包含3文件和材质文件
+- `POST https://tangledup-ai-staging.oss-cn-shanghai.aliyuncs.com/market_page/hardware_xiaozhi/product_3D_image` - 上传3D文件
+
+### 上传硬件的图片(小智参数) 单张图片
+- `POST https://tangledup-ai-staging.oss-cn-shanghai.aliyuncs.com/market_page/hardware_xiaozhi/product_image` - 上传图片
+
## 🎯 使用说明
### 推广码功能
diff --git a/frontend/src/pages/AIServices.jsx b/frontend/src/pages/AIServices.jsx
index a2a7f3d..0d19caf 100644
--- a/frontend/src/pages/AIServices.jsx
+++ b/frontend/src/pages/AIServices.jsx
@@ -1,7 +1,14 @@
import React, { useEffect, useState } from 'react';
import { Row, Col, Typography, Button, Spin } from 'antd';
import { motion } from 'framer-motion';
-import { RightOutlined } from '@ant-design/icons';
+import {
+ RightOutlined,
+ SearchOutlined,
+ DatabaseOutlined,
+ ThunderboltOutlined,
+ CheckCircleOutlined,
+ CloudServerOutlined
+} from '@ant-design/icons';
import { getServices } from '../api';
import { useNavigate } from 'react-router-dom';
@@ -127,41 +134,96 @@ const AIServices = () => {
))}
- {/* 动态流程图模拟 */}
+ {/* 动态流程图优化 */}