feat: 更新应用版本至1.3.30并优化报餐统计功能

新增系统配置API模块
移除列表加载时的多余条件判断
优化报餐统计页面样式和逻辑
This commit is contained in:
砂糖
2026-04-14 11:18:33 +08:00
parent 0e1599809d
commit b93d636c8a
6 changed files with 478 additions and 395 deletions

View File

@@ -73,7 +73,7 @@ function checkStorageSpace() {
function checkUpdate(forceCheck = false) {
// 1. 准备本地版本信息
const localVersion = plus.runtime.version; // 基座版本
const staticVersion = '1.3.29'; // 静态默认版本
const staticVersion = '1.3.30'; // 静态默认版本
// const localWgtVersion = staticVersion;
const localWgtVersion = uni.getStorageSync('wgtVersion') || staticVersion; // 本地wgt版本从存储获取或用默认
const currentVersion = compareVersion(localWgtVersion, localVersion) > 0