fix(frontend): 修正 Sortable.js 脚本的引用地址

- 将 Sortable.js 的 CDN 链接由 jsdelivr 更换为 staticfile
- 确保前端依赖加载的稳定性和速度优化
- 保持其他脚本和样式引用不变
This commit is contained in:
公司git 2026-01-13 09:07:38 +08:00
parent d4b28a731a
commit aacdce569e

View File

@ -7,7 +7,7 @@
<script src="https://cdn.tailwindcss.com"></script> <script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Noto+Sans+SC:wght@300;400;500;700&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Noto+Sans+SC:wght@300;400;500;700&display=swap" rel="stylesheet">
<script src="https://unpkg.com/lucide@latest"></script> <script src="https://unpkg.com/lucide@latest"></script>
<script src="https://cdn.jsdelivr.net/npm/sortablejs@1.15.0/Sortable.min.js"></script> <script src="https://cdn.staticfile.org/Sortable/1.15.0/Sortable.min.js"></script>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}"> <link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
{% block head %}{% endblock %} {% block head %}{% endblock %}
</head> </head>