feat: 更新应用版本至1.3.19并修复发货逻辑

- 将应用版本从1.3.18升级至1.3.19
- 修复easycode.vue中的发货逻辑,启用原本注释掉的API调用
- 修改质量状态提示信息为更友好的uni.showToast方式
This commit is contained in:
砂糖
2026-01-11 17:21:50 +08:00
parent cd491678d9
commit 1c74f99766
5 changed files with 22 additions and 19 deletions

View File

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