feat: 更新应用版本至1.3.21并扩展钢卷发货品质限制

- 将应用版本从1.3.20升级至1.3.21,更新了相关配置文件
- 修改发货逻辑,允许B和B-品质的钢卷发货
- 调整撤回成功提示的图标显示为'none'
This commit is contained in:
砂糖
2026-01-12 13:20:33 +08:00
parent 983bb0a172
commit 325041ada6
5 changed files with 14 additions and 10 deletions

View File

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