chore: 版本升级至1.3.33并替换更新钢卷接口

1. 将配置文件、版本文件和静态默认版本号从1.3.31更新至1.3.33
2. 将编辑和打包页面的updateMaterialCoil接口替换为updateMaterialCoilSimple
This commit is contained in:
2026-05-26 15:53:28 +08:00
parent f31ffa45dd
commit 3102b53b3f
5 changed files with 7 additions and 7 deletions

View File

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