consumer模块完成度95%,优化安卓端界面和小程序测试3

This commit is contained in:
cyh666666
2026-03-13 17:12:00 +08:00
parent b2a6e5a142
commit b5c7947ad8
1741 changed files with 3427 additions and 2036 deletions

25
scripts/restore-config.sh Normal file
View File

@@ -0,0 +1,25 @@
#!/bin/bash
# 恢复原配置文件 (Linux/Mac)
echo "========================================"
echo "恢复原配置文件"
echo "========================================"
echo ""
echo "[1/2] 恢复配置文件..."
if [ -f "pages.json.bak" ]; then
cp pages.json.bak pages.json
rm pages.json.bak
echo " 已恢复 pages.json"
fi
if [ -f "manifest.json.bak" ]; then
cp manifest.json.bak manifest.json
rm manifest.json.bak
echo " 已恢复 manifest.json"
fi
echo ""
echo "[2/2] 完成!"
echo ""
echo "配置文件已恢复到原始状态"
echo ""