Files
ALL-teach_sys/frontend_财经商贸/src/pages/DuoDuoAgentPage/index.jsx
KQL 873a76c538 更新AgentPage的iframe路径配置
修改内容:
- 将所有AgentPage中的iframe src从 http://127.0.0.1:4173 更新为 http://127.0.0.1:4173/wenlu
- 涉及12个产业系统的AgentPage组件

影响范围:
- frontend(基础版)
- frontend_交通物流
- frontend_化工
- frontend_土木水利
- frontend_大健康
- frontend_智能制造
- frontend_智能开发
- frontend_环保
- frontend_能源
- frontend_视觉设计
- frontend_财经商贸
- frontend_食品

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-30 15:42:23 +08:00

17 lines
321 B
JavaScript

import "./index.css";
const AgentPage = () => {
return (
<div className="agent-page-wrapper">
<iframe
src="http://127.0.0.1:4173/finance"
className="agent-page-iframe"
title="Agent"
frameBorder="0"
allowFullScreen
/>
</div>
);
};
export default AgentPage;