Files
nxxmdata/government-mini-program/测试样式.bat
2025-10-17 17:29:11 +08:00

43 lines
1.5 KiB
Batchfile

@echo off
echo ========================================
echo 政府端小程序样式测试
echo ========================================
echo.
echo 检查关键文件...
if exist "app.js" echo ✓ app.js 存在
if exist "app.json" echo ✓ app.json 存在
if exist "app.wxss" echo ✓ app.wxss 存在
if exist "pages\index\index.js" echo ✓ 首页JS文件存在
if exist "pages\index\index.wxml" echo ✓ 首页WXML文件存在
if exist "pages\index\index.wxss" echo ✓ 首页WXSS文件存在
if exist "pages\index\index.json" echo ✓ 首页JSON文件存在
echo.
echo 检查图标文件...
if exist "images\home.png" echo ✓ 首页图标存在
if exist "images\home-active.png" echo ✓ 首页激活图标存在
if exist "images\farmer.png" echo ✓ 养殖户图标存在
if exist "images\farmer-active.png" echo ✓ 养殖户激活图标存在
if exist "images\profile.png" echo ✓ 我的图标存在
if exist "images\profile-active.png" echo ✓ 我的激活图标存在
echo.
echo 样式修复说明:
echo 1. 智能硬件设备区域 - 已修复为4列网格布局
echo 2. 其它功能区域 - 已修复为2行4列网格布局
echo 3. 顶部导航栏 - 已优化标题居中显示
echo 4. 图标大小 - 已调整为合适的尺寸
echo 5. 间距和颜色 - 已按照图片样式调整
echo.
echo 建议测试步骤:
echo 1. 在微信开发者工具中打开项目
echo 2. 查看首页布局是否正确
echo 3. 检查智能硬件设备是否为4列布局
echo 4. 检查其它功能是否为2行4列布局
echo 5. 测试底部tab栏切换
echo.
pause