first commit

This commit is contained in:
2026-05-08 03:06:24 +08:00
commit 8da6567178
146 changed files with 82014 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
@echo off
echo ================================
echo 窗帘工厂管理系统 - Vue3版本
echo ================================
echo.
echo 正在启动开发服务器...
echo.
cd /d "%~dp0"
:: 检查 node_modules 是否存在
if not exist "node_modules" (
echo 首次运行,正在安装依赖...
npm install
echo.
)
npm run dev
pause