build: 更新 Dockerfile 并调整项目资源

- 移除 Dockerfile 中的 CMD 指令
- 更新模板文件中的资源链接
- 修正检查组件的当前步骤初始值
This commit is contained in:
2025-08-19 23:21:37 +08:00
parent 40367a4e12
commit f62672d779
5 changed files with 5 additions and 7 deletions
@@ -27,7 +27,7 @@ const items = [
] as StepProps[];
// 文件路径
const filePath = ref('');
const current = ref<number>(3);
const current = ref<number>(0);
// 下一步
const nextPage = () => {
current.value ++;