feat(search): 添加分页功能并更新版本号至1.3.26

在搜索页面添加分页控件,包括上一页/下一页按钮和分页信息显示
更新应用版本号至1.3.26,涉及config.js、manifest.json等文件
This commit is contained in:
砂糖
2026-03-06 13:56:02 +08:00
parent 2f47047ae6
commit ac55c9a4d1
5 changed files with 132 additions and 9 deletions

View File

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