fix: 修复静态文件路径问题,将 static 目录移动到 public 下

Coze-Commit-Type: user
Coze-User-ID: 3722323274763196
Coze-Conversation-ID: 9894087
This commit is contained in:
user9994793890
2026-07-13 15:44:22 +08:00
parent f84aa8a4a9
commit 4b95a94d12
8 changed files with 6 additions and 6 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 85 KiB

View File

@@ -4,7 +4,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>订单日报系统</title>
<link rel="stylesheet" href="/static/css/style.css">
<link rel="stylesheet" href="/static/static/css/style.css">
</head>
<body>
<div class="container">
@@ -208,10 +208,10 @@
</div>
<!-- JavaScript 文件 -->
<script src="/static/js/common.js"></script>
<script src="/static/js/config.js"></script>
<script src="/static/js/entity.js"></script>
<script src="/static/js/report.js"></script>
<script src="/static/js/history.js"></script>
<script src="/static/static/js/common.js"></script>
<script src="/static/static/js/config.js"></script>
<script src="/static/static/js/entity.js"></script>
<script src="/static/static/js/report.js"></script>
<script src="/static/static/js/history.js"></script>
</body>
</html>