Files
sgxt_web/打包.bat
2025-12-17 10:46:35 +08:00

14 lines
606 B
Batchfile
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@echo off
chcp 65001 >nul
title 构建和打包工具
echo lin___LinZhi哨岗打包 sgxt_pc...
call npm run build
echo 打包完成,正在压缩...
if exist gsxt.zip del gsxt.zip
powershell Compress-Archive -Path gsxt -DestinationPath gsxt.zip
echo 压缩完成!
explorer .
msg * "林芝哨岗pc打包完成"
start http://localhost:9528?project=sgxt_pc
powershell -Command "Add-Type -AssemblyName System.Windows.Forms; [System.Windows.Forms.MessageBox]::Show('打包和压缩已完成!', '成功', [System.Windows.Forms.MessageBoxButtons]::OK, [System.Windows.Forms.MessageBoxIcon]::Exclamation)"