已知问题,后续修复
微信更新8.0.60后,小程序调用wx.connectWifi连接ESP8266时连接不上。问题:微信版本由8.0.58更新到8.0.60后,用微信小程序调用wx.connectWifi配置硬件ESP8266网络时出现第一次连接时可以成功连接并提示`要保存此网络吗`选择保存后可以连接成功,手机连接上的wifi也可以切换成功,但是在保存这个网络后第二次及之后连接这个ESP8266网络时就连不上了,并且wx.connectWifi的fail回调中会出现错误:err: {"errno": 1505042, "errCode": 12015, "errMsg": "connectWifi:fail:wifi config already exist"}。 补充问题:TCPSocket.connect(Object options)接口在更新后也出现了连接建立不上的问题。 [图片][图片] 出问题的机型:目前已知 小米、红米、vivo 品牌的所有手机都有此问题。只有苹果和华为未出现这个问题。 特别说明:手机微信版本更新到8.0.58及之前安卓和苹果手机都未出现过此问题,因为我们测试时将微信8.0.60版本切换回8.0.58版本后可以正常使用。 怀疑问题所在点:在微信8.0.58版本调用wx.connectWifi接口时,弹出的提示框内容为微信要与某个设备搭配使用(选项是取消/连接),但在微信8.0.60版本调用wx.connectWifi接口时,弹出的提示框内容为要保存此网络吗(选项是取消/保存)`。 操作步骤为(在第二步出现问题了): 1. 连接指定 Wi-Fi 设备如果知道 Wi-Fi 设备名称和密码,并确认设备在附近,可以直接在小程序中连接指定 Wi-Fi。 接口调用时序为: startWifi: 初始化 Wi-Fi 模块connectWifi: 连接 Wi-Fi(iOS 需 11 及以上版本支持)onWifiConnected: 连接上 Wi-Fi 的事件回调 /** 确定按钮前置操作 //连接wifi初始化wifi */ initWifiConfirmTwo(){ const _this = this; this.loading = true; this.wifiFlag = false;//重置连接wifi标志 this.tcpFlag = false;//重置连接tcp标志 if(!this.getsysStatus()) return; // 检查 Wi-Fi 和 定位状态 wx.startWifi({ success (res) { _this.initWifiFlag = true; _this.loading = false; _this.confirmConnectWifi(); }, fail(err){ _this.loading = false; _this.initWifiFlag = false; } }) }, /**确定按钮真正操作 连接wifi */ async confirmConnectWifi(){ console.log("A1"); this.loading = true; // 调用设备重新进行wifi的服务 // await this.autoReSetNetService(); console.log("A2"); if(!this.wifiName){ this.loading = false; this.showAlert("WiFi名称不能为空!"); return; } uni.setStorageSync("historyWifiInfo",{'wifiName':this.wifiName,'wifiPassword':this.wifiPassword})//缓存上次的名称密码 if(!this.wifiPassword){ this.loading = false; const res = await this.showModalSc(); if (res.confirm) { this.connects();// 执行tcp连接操作 } else if (res.cancel) { this.loading = false; } }else{ //如果 Wi-Fi 密码不为空,直接执行连接 this.loading = false; this.connects(); } }, showModalSc(){ return new Promise((resolve,reject) => { uni.showModal({ title: '提示', content: `WiFi密码为空,是否继续`, cancelText: '取消', confirmText: '继续', success: function (res) { resolve(res) } }); }) }, /** 连接设备 */ async connects(attempt = 1){ if (this.isUnloaded) return; console.log("B1",attempt); const _this = this; this.loading = true; if(this.wifiFlag == false){ try{ console.log("B2",attempt); const res = await this.connwifi(this.deviceBSSID);//页面退出前进入了这个方法 console.log("B3",attempt); if (this.isUnloaded) return; console.log("B4",attempt); console.log('结果:',res);// {errCode:0,errMsg:"connectWifi:ok",errno:0} if((this.userPhoneOS == 'ios' || res.errCode==0) && res.errMsg == 'connectWifi:ok'){ console.log("B5",attempt); this.wifiFlag=true; console.log("B6",attempt); // 连接成功后开始建立 TCP 连接 this.timers.timerB = setTimeout(()=>{ console.log("B7",attempt); try{ this.loading = false; console.log("B8",attempt); if (this.isUnloaded) return; console.log("B9",attempt); this.createTcpEsp(); console.log("B10",attempt); }catch(e){ console.log("B11",attempt); this.loading = false; console.log("B12",attempt); } },500) } } catch(err){ console.log("B101",attempt); console.log('catch结果:',err); console.log("B102",attempt); this.wifiFlag=false; console.log("B103",attempt); if (this.isWifiActive && attempt < 3) { console.log("B104",attempt); this.timers.timerC = setTimeout(() => { console.log("B105",attempt) if (this.isUnloaded) return; console.log("B106",attempt); this.connects(attempt + 1); console.log("B107",attempt); }, 2000 * attempt); console.log("B108",attempt); } else { console.log("B109",attempt); this.loading = false; console.log("B110",attempt); if (this.isUnloaded) return; console.log("B111",attempt); this.handleWifiConnectionError(err);//但是页面退出后这个方法依旧被执行了 console.log("B112",attempt); } console.log("B113",attempt); } }else{ console.log("B114",attempt); console.log("this.wifiFlag 为 true"); this.loading = false; console.log("B115",attempt); } console.log("B116",attempt); }, /** 连接设备wifi */ connwifi(deviceBSSID){ console.log("C1",deviceBSSID); return new Promise((resolve,reject) => { console.log("C2",deviceBSSID); wx.connectWifi({ SSID: deviceBSSID, password:'88888888', forceNewApi: true, success(res) { console.log("C3",deviceBSSID); console.log('res:',res); resolve(res); }, fail(err){ console.log("C4",deviceBSSID); console.log('err:',err); reject(err) }, }) console.log("C5",deviceBSSID); }) console.log("C6",deviceBSSID); },
2小时前已修复,逐步恢复中
升级最新版本微信(8.0.60)版本后,所有的小程序(包含腾讯自有小程序)的拍照都会闪崩。有视频佐证,但不知道如何上传, 可以联系微信:28715613。
3小时前已修复,逐步恢复中
wx.chooseMedia 部分机型出现闪退wx.chooseMedia({ count: 1, mediaType: ['image'], sourceType: ['camera'], camera: 'front', sizeType: ['compressed'], success: async ({ tempFiles }) => { if (tempFiles && tempFiles.length) { ... } }, fail({ errMsg }) { if (errMsg !== 'chooseMedia:fail cancel') { wx.showModal({ title: '选取失败', content: '请检查是否开启允许微信访问系统相册权限' + errMsg }) } } }) 机型和基础库未知 [视频]
3小时前已修复,逐步恢复中
微信8.0.60微信小程序上传图片闪退iphone微信8.0.60微信小程序上传图片闪退,一开始小程序用wifi可以上传,然后用5g网络之后上传图片闪退,然后再切换到wifi还是不可以上传直接闪退
3小时前已修复,逐步恢复中
最近很多用户出现chooseMedia拍照闪退问题?最近很多用户出现chooseMedia拍照闪退问题,拍完照片点击确定就闪退,用户反馈问题如下:[图片] 日志: 2025-6-14 16:54:0 [log] wx.getSystemInfoSync api invoke 2025-6-14 16:54:0 [log] wx.getSystemInfoSync return 2025-6-14 16:54:0 [log] wx.getMenuButtonBoundingClientRect api invoke 2025-6-14 16:54:0 [log] wx.removeStorageSync api invoke 2025-6-14 16:54:0 [log] wx.removeStorageSync return 2025-6-14 16:54:0 [log] wx.getStorageSync api invoke 2025-6-14 16:54:0 [log] wx.getStorageSync return 2025-6-14 16:54:0 [log] wx.getStorageSync api invoke 2025-6-14 16:54:0 [log] wx.getStorageSync return 2025-6-14 16:54:0 [log] wx.request api invoke 2025-6-14 16:54:0 [log] App onLaunch have been invoked 2025-6-14 16:54:0 [log] wx.getStorageSync api invoke 2025-6-14 16:54:0 [log] wx.getStorageSync return 2025-6-14 16:54:0 [log] wx.getStorageSync api invoke 2025-6-14 16:54:0 [log] wx.getStorageSync return 2025-6-14 16:54:0 [log] wx.getStorageSync api invoke 2025-6-14 16:54:0 [log] wx.getStorageSync return 2025-6-14 16:54:0 [log] wx.getStorageSync api invoke 2025-6-14 16:54:0 [log] wx.getStorageSync return 2025-6-14 16:54:0 [log] wx.getStorageSync api invoke 2025-6-14 16:54:0 [log] wx.getStorageSync return 2025-6-14 16:54:0 [log] wx.request api invoke 2025-6-14 16:54:0 [log] App onShow have been invoked 2025-6-14 16:54:1 [log] page pages/dispatch/dispatch onLoad have been invoked 2025-6-14 16:54:1 [log] page pages/dispatch/dispatch onShow have been invoked 2025-6-14 16:54:1 [log] page pages/dispatch/dispatch onReady have been invoked 2025-6-14 16:54:1 [log] page pages/dispatch/dispatch onRouteDone have been invoked 2025-6-14 16:54:1 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:1 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:1 [log] wx.login api invoke 2025-6-14 16:54:1 [log] wx.getStorageSync api invoke 2025-6-14 16:54:1 [log] wx.getStorageSync return 2025-6-14 16:54:1 [log] wx.getStorageSync api invoke 2025-6-14 16:54:1 [log] wx.getStorageSync return 2025-6-14 16:54:1 [log] wx.getStorageSync api invoke 2025-6-14 16:54:1 [log] wx.getStorageSync return 2025-6-14 16:54:1 [log] wx.request api invoke 2025-6-14 16:54:1 [log] wx.login success callback with msg login:ok 2025-6-14 16:54:1 [log] wx.setStorageSync api invoke 2025-6-14 16:54:1 [log] wx.setStorageSync return 2025-6-14 16:54:1 [log] wx.getStorageSync api invoke 2025-6-14 16:54:1 [log] wx.getStorageSync return 2025-6-14 16:54:1 [log] wx.getStorageSync api invoke 2025-6-14 16:54:1 [log] wx.getStorageSync return 2025-6-14 16:54:1 [log] wx.request api invoke 2025-6-14 16:54:1 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:1 [log] wx.redirectTo api invoke 2025-6-14 16:54:1 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:1 [log] page pages/dispatch/dispatch onUnload have been invoked 2025-6-14 16:54:1 [log] wx.removeStorageSync api invoke 2025-6-14 16:54:1 [log] wx.removeStorageSync return 2025-6-14 16:54:1 [log] page pages/login/login onLoad have been invoked 2025-6-14 16:54:1 [log] page pages/login/login onShow have been invoked 2025-6-14 16:54:1 [log] wx.redirectTo success callback with msg redirectTo:ok 2025-6-14 16:54:1 [log] page pages/login/login onReady have been invoked 2025-6-14 16:54:1 [log] page pages/login/login onRouteDone have been invoked 2025-6-14 16:54:5 [log] wx.getStorageSync api invoke 2025-6-14 16:54:5 [log] wx.getStorageSync return 2025-6-14 16:54:5 [log] wx.showLoading api invoke 2025-6-14 16:54:5 [log] wx.getStorageSync api invoke 2025-6-14 16:54:5 [log] wx.getStorageSync return 2025-6-14 16:54:5 [log] wx.getStorageSync api invoke 2025-6-14 16:54:5 [log] wx.getStorageSync return 2025-6-14 16:54:5 [log] wx.request api invoke 2025-6-14 16:54:5 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-14 16:54:5 [log] wx.hideLoading api invoke 2025-6-14 16:54:5 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:6 [log] wx.hideLoading success callback with msg hideLoading:ok 2025-6-14 16:54:7 [log] wx.getUserProfile api invoke 2025-6-14 16:54:8 [log] wx.showLoading api invoke 2025-6-14 16:54:8 [log] wx.getStorageSync api invoke 2025-6-14 16:54:8 [log] wx.getStorageSync return 2025-6-14 16:54:8 [log] wx.request api invoke 2025-6-14 16:54:8 [log] wx.getUserProfile success callback with msg getUserProfile:ok 2025-6-14 16:54:8 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-14 16:54:8 [log] wx.hideLoading api invoke 2025-6-14 16:54:8 [log] wx.setStorageSync api invoke 2025-6-14 16:54:8 [log] wx.setStorageSync return 2025-6-14 16:54:8 [log] wx.getStorageSync api invoke 2025-6-14 16:54:8 [log] wx.getStorageSync return 2025-6-14 16:54:8 [log] wx.showLoading api invoke 2025-6-14 16:54:8 [log] wx.getStorageSync api invoke 2025-6-14 16:54:8 [log] wx.getStorageSync return 2025-6-14 16:54:8 [log] wx.getStorageSync api invoke 2025-6-14 16:54:8 [log] wx.getStorageSync return 2025-6-14 16:54:8 [log] wx.request api invoke 2025-6-14 16:54:8 [log] wx.getStorageSync api invoke 2025-6-14 16:54:8 [log] wx.getStorageSync return 2025-6-14 16:54:8 [log] wx.getStorageSync api invoke 2025-6-14 16:54:8 [log] wx.getStorageSync return 2025-6-14 16:54:8 [log] wx.request api invoke 2025-6-14 16:54:8 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:8 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-14 16:54:8 [log] wx.hideLoading success callback with msg hideLoading:ok 2025-6-14 16:54:8 [log] wx.hideLoading api invoke 2025-6-14 16:54:8 [log] wx.hideLoading api invoke 2025-6-14 16:54:8 [log] wx.redirectTo api invoke 2025-6-14 16:54:8 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:8 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-14 16:54:8 [log] page pages/login/login onUnload have been invoked 2025-6-14 16:54:8 [log] page pages/dispatch/dispatch onLoad have been invoked 2025-6-14 16:54:8 [log] page pages/dispatch/dispatch onShow have been invoked 2025-6-14 16:54:8 [log] wx.redirectTo success callback with msg redirectTo:ok 2025-6-14 16:54:8 [log] page pages/dispatch/dispatch onReady have been invoked 2025-6-14 16:54:9 [log] page pages/dispatch/dispatch onRouteDone have been invoked 2025-6-14 16:54:9 [log] wx.hideLoading success callback with msg hideLoading:ok 2025-6-14 16:54:9 [log] wx.login api invoke 2025-6-14 16:54:9 [log] wx.getStorageSync api invoke 2025-6-14 16:54:9 [log] wx.getStorageSync return 2025-6-14 16:54:9 [log] wx.getStorageSync api invoke 2025-6-14 16:54:9 [log] wx.getStorageSync return 2025-6-14 16:54:9 [log] wx.getStorageSync api invoke 2025-6-14 16:54:9 [log] wx.getStorageSync return 2025-6-14 16:54:9 [log] wx.request api invoke 2025-6-14 16:54:9 [log] wx.login success callback with msg login:ok 2025-6-14 16:54:9 [log] wx.setStorageSync api invoke 2025-6-14 16:54:9 [log] wx.setStorageSync return 2025-6-14 16:54:9 [log] wx.getStorageSync api invoke 2025-6-14 16:54:9 [log] wx.getStorageSync return 2025-6-14 16:54:9 [log] wx.getStorageSync api invoke 2025-6-14 16:54:9 [log] wx.getStorageSync return 2025-6-14 16:54:9 [log] wx.request api invoke 2025-6-14 16:54:9 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:9 [log] wx.getStorageSync api invoke 2025-6-14 16:54:9 [log] wx.getStorageSync return 2025-6-14 16:54:9 [log] wx.getStorageSync api invoke 2025-6-14 16:54:9 [log] wx.getStorageSync return 2025-6-14 16:54:9 [log] wx.request api invoke 2025-6-14 16:54:9 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:9 [log] wx.setStorageSync api invoke 2025-6-14 16:54:9 [log] wx.setStorageSync return 2025-6-14 16:54:9 [log] wx.setStorageSync api invoke 2025-6-14 16:54:9 [log] wx.setStorageSync return 2025-6-14 16:54:9 [log] wx.redirectTo api invoke 2025-6-14 16:54:9 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:9 [log] wx.redirectTo success callback with msg redirectTo:ok 2025-6-14 16:54:10 [log] page pages/dispatch/dispatch onUnload have been invoked 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] page pkg-user/pages/user/index/index onLoad have been invoked 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] page pkg-user/pages/user/index/index onShow have been invoked 2025-6-14 16:54:10 [log] page pkg-user/pages/user/index/index onRouteDone have been invoked 2025-6-14 16:54:10 [log] page pkg-user/pages/user/index/index onReady have been invoked 2025-6-14 16:54:10 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.showLoading api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.showLoading api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-14 16:54:10 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.showLoading api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.showLoading api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.showLoading api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.showLoading api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.showLoading api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.showLoading api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.showLoading api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.showLoading api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.showLoading api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.showLoading api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.showLoading api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.showLoading api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.showLoading api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.showLoading api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.showLoading api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-14 16:54:10 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-14 16:54:10 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-14 16:54:10 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-14 16:54:10 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-14 16:54:10 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-14 16:54:10 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-14 16:54:10 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-14 16:54:10 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-14 16:54:10 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-14 16:54:10 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:10 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-14 16:54:10 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-14 16:54:10 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-14 16:54:10 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-14 16:54:10 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-14 16:54:10 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:10 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:10 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:10 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:10 [log] wx.hideLoading api invoke 2025-6-14 16:54:10 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:10 [log] wx.hideLoading api invoke 2025-6-14 16:54:10 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:10 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-14 16:54:10 [log] wx.hideLoading api invoke 2025-6-14 16:54:10 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:10 [log] wx.hideLoading api invoke 2025-6-14 16:54:10 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:10 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-14 16:54:10 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-14 16:54:10 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:10 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:10 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:10 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.getStorageSync api invoke 2025-6-14 16:54:10 [log] wx.getStorageSync return 2025-6-14 16:54:10 [log] wx.request api invoke 2025-6-14 16:54:10 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:10 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:10 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:10 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:10 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:10 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:10 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:10 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:10 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.hideLoading success callback with msg hideLoading:ok 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.navigateTo api invoke 2025-6-14 16:54:11 [log] page pkg-user/pages/user/index/index onHide have been invoked 2025-6-14 16:54:11 [log] wx.getStorageSync api invoke 2025-6-14 16:54:11 [log] wx.getStorageSync return 2025-6-14 16:54:11 [log] wx.showLoading api invoke 2025-6-14 16:54:11 [log] wx.getStorageSync api invoke 2025-6-14 16:54:11 [log] wx.getStorageSync return 2025-6-14 16:54:11 [log] wx.getStorageSync api invoke 2025-6-14 16:54:11 [log] wx.getStorageSync return 2025-6-14 16:54:11 [log] wx.request api invoke 2025-6-14 16:54:11 [log] page pkg-user/pages/user/site-list/site-list onLoad have been invoked 2025-6-14 16:54:11 [log] page pkg-user/pages/user/site-list/site-list onShow have been invoked 2025-6-14 16:54:11 [log] wx.navigateTo success callback with msg navigateTo:ok 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] page pkg-user/pages/user/site-list/site-list onReady have been invoked 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.getStorageSync api invoke 2025-6-14 16:54:11 [log] wx.getStorageSync return 2025-6-14 16:54:11 [log] wx.getStorageSync api invoke 2025-6-14 16:54:11 [log] wx.getStorageSync return 2025-6-14 16:54:11 [log] wx.getStorageSync api invoke 2025-6-14 16:54:11 [log] wx.getStorageSync return 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.getStorageSync api invoke 2025-6-14 16:54:11 [log] wx.getStorageSync return 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] page pkg-user/pages/user/site-list/site-list onRouteDone have been invoked 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.hideLoading api invoke 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.hideLoading api invoke 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-14 16:54:11 [log] wx.hideLoading api invoke 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.hideLoading api invoke 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-14 16:54:11 [log] wx.hideLoading api invoke 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-14 16:54:11 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-14 16:54:11 [log] wx.hideLoading api invoke 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.hideLoading api invoke 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.hideLoading api invoke 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.hideLoading api invoke 2025-6-14 16:54:11 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:11 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-14 16:54:12 [log] wx.hideLoading api invoke 2025-6-14 16:54:12 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:12 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-14 16:54:12 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:12 [log] wx.hideLoading api invoke 2025-6-14 16:54:12 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:12 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-14 16:54:12 [log] wx.hideLoading api invoke 2025-6-14 16:54:12 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:12 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-14 16:54:12 [log] wx.hideLoading success callback with msg hideLoading:ok 2025-6-14 16:54:12 [log] wx.hideLoading api invoke 2025-6-14 16:54:12 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:12 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-14 16:54:12 [log] wx.setStorageSync api invoke 2025-6-14 16:54:12 [log] wx.setStorageSync return 2025-6-14 16:54:12 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:12 [log] wx.hideLoading api invoke 2025-6-14 16:54:12 [log] wx.navigateTo api invoke 2025-6-14 16:54:12 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:12 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-14 16:54:12 [log] page pkg-user/pages/user/site-list/site-list onHide have been invoked 2025-6-14 16:54:12 [log] wx.getSystemInfoSync api invoke 2025-6-14 16:54:12 [log] wx.getSystemInfoSync return 2025-6-14 16:54:12 [log] wx.getStorageSync api invoke 2025-6-14 16:54:12 [log] wx.getStorageSync return 2025-6-14 16:54:12 [log] wx.getStorageSync api invoke 2025-6-14 16:54:12 [log] wx.getStorageSync return 2025-6-14 16:54:12 [log] wx.request api invoke 2025-6-14 16:54:12 [log] wx.getSetting api invoke 2025-6-14 16:54:12 [log] wx.getNetworkType api invoke 2025-6-14 16:54:12 [log] wx.getStorageSync api invoke 2025-6-14 16:54:12 [log] wx.getStorageSync return 2025-6-14 16:54:12 [log] wx.getStorageSync api invoke 2025-6-14 16:54:12 [log] wx.getStorageSync return 2025-6-14 16:54:12 [log] wx.request api invoke 2025-6-14 16:54:12 [log] wx.showLoading api invoke 2025-6-14 16:54:12 [log] wx.getStorageSync api invoke 2025-6-14 16:54:12 [log] wx.getStorageSync return 2025-6-14 16:54:12 [log] wx.getStorageSync api invoke 2025-6-14 16:54:12 [log] wx.getStorageSync return 2025-6-14 16:54:12 [log] wx.request api invoke 2025-6-14 16:54:12 [log] wx.showLoading api invoke 2025-6-14 16:54:12 [log] wx.getStorageSync api invoke 2025-6-14 16:54:12 [log] wx.getStorageSync return 2025-6-14 16:54:12 [log] wx.getStorageSync api invoke 2025-6-14 16:54:12 [log] wx.getStorageSync return 2025-6-14 16:54:12 [log] wx.request api invoke 2025-6-14 16:54:12 [log] wx.getStorageSync api invoke 2025-6-14 16:54:12 [log] wx.getStorageSync return 2025-6-14 16:54:12 [log] wx.getStorageSync api invoke 2025-6-14 16:54:12 [log] wx.getStorageSync return 2025-6-14 16:54:12 [log] wx.request api invoke 2025-6-14 16:54:12 [log] page pkg-user/pages/user/amap/amap onLoad have been invoked 2025-6-14 16:54:12 [log] wx.getSetting api invoke 2025-6-14 16:54:12 [log] wx.getNetworkType api invoke 2025-6-14 16:54:12 [log] page pkg-user/pages/user/amap/amap onShow have been invoked 2025-6-14 16:54:12 [log] wx.getNetworkType success callback with msg getNetworkType:ok 2025-6-14 16:54:12 [log] wx.getNetworkType success callback with msg getNetworkType:ok 2025-6-14 16:54:12 [log] wx.navigateTo success callback with msg navigateTo:ok 2025-6-14 16:54:12 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-14 16:54:12 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-14 16:54:12 [log] wx.getStorageSync api invoke 2025-6-14 16:54:12 [log] wx.getStorageSync return 2025-6-14 16:54:12 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:12 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:12 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:12 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:12 [log] wx.hideLoading api invoke 2025-6-14 16:54:12 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:12 [log] page pkg-user/pages/user/amap/amap onReady have been invoked 2025-6-14 16:54:12 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-14 16:54:12 [log] wx.getSetting success callback with msg getSetting:ok 2025-6-14 16:54:12 [log] wx.getLocation api invoke 2025-6-14 16:54:12 [log] wx.getSetting success callback with msg getSetting:ok 2025-6-14 16:54:12 [log] wx.getLocation api invoke 2025-6-14 16:54:12 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:12 [log] page pkg-user/pages/user/amap/amap onRouteDone have been invoked 2025-6-14 16:54:12 [log] wx.getStorageSync api invoke 2025-6-14 16:54:12 [log] wx.getStorageSync return 2025-6-14 16:54:12 [log] wx.getStorageSync api invoke 2025-6-14 16:54:12 [log] wx.getStorageSync return 2025-6-14 16:54:12 [log] wx.request api invoke 2025-6-14 16:54:12 [log] wx.getLocation success callback with msg getLocation:ok 2025-6-14 16:54:12 [log] wx.getStorageSync api invoke 2025-6-14 16:54:12 [log] wx.getStorageSync return 2025-6-14 16:54:12 [log] wx.getStorageSync api invoke 2025-6-14 16:54:12 [log] wx.getStorageSync return 2025-6-14 16:54:12 [log] wx.request api invoke 2025-6-14 16:54:12 [log] wx.getLocation success callback with msg getLocation:ok 2025-6-14 16:54:12 [log] wx.getStorageSync api invoke 2025-6-14 16:54:12 [log] wx.getStorageSync return 2025-6-14 16:54:12 [log] wx.getStorageSync api invoke 2025-6-14 16:54:12 [log] wx.getStorageSync return 2025-6-14 16:54:12 [log] wx.request api invoke 2025-6-14 16:54:12 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:12 [log] wx.getStorageSync api invoke 2025-6-14 16:54:12 [log] wx.getStorageSync return 2025-6-14 16:54:12 [log] wx.getStorageSync api invoke 2025-6-14 16:54:12 [log] wx.getStorageSync return 2025-6-14 16:54:12 [log] wx.request api invoke 2025-6-14 16:54:12 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:12 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:12 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:13 [log] wx.chooseMedia api invoke 2025-6-14 16:54:14 [log] page pkg-user/pages/user/amap/amap onHide have been invoked 2025-6-14 16:54:14 [log] App onHide have been invoked 2025-6-14 16:54:17 [log] wx.showLoading api invoke 2025-6-14 16:54:17 [log] wx.getStorageSync api invoke 2025-6-14 16:54:17 [log] wx.getStorageSync return 2025-6-14 16:54:17 [log] wx.uploadFile api invoke 2025-6-14 16:54:17 [log] wx.getStorageSync api invoke 2025-6-14 16:54:17 [log] wx.getStorageSync return 2025-6-14 16:54:17 [log] wx.getStorageSync api invoke 2025-6-14 16:54:17 [log] wx.getStorageSync return 2025-6-14 16:54:17 [log] wx.request api invoke 2025-6-14 16:54:17 [log] wx.getStorageSync api invoke 2025-6-14 16:54:17 [log] wx.getStorageSync return 2025-6-14 16:54:17 [log] wx.getStorageSync api invoke 2025-6-14 16:54:17 [log] wx.getStorageSync return 2025-6-14 16:54:17 [log] wx.getStorageSync api invoke 2025-6-14 16:54:17 [log] wx.getStorageSync return 2025-6-14 16:54:17 [log] wx.getSetting api invoke 2025-6-14 16:54:17 [log] wx.getStorageSync api invoke 2025-6-14 16:54:17 [log] wx.getStorageSync return 2025-6-14 16:54:17 [log] wx.getStorageSync api invoke 2025-6-14 16:54:17 [log] wx.getStorageSync return 2025-6-14 16:54:17 [log] wx.request api invoke 2025-6-14 16:54:17 [log] App onShow have been invoked 2025-6-14 16:54:17 [log] wx.getSetting api invoke 2025-6-14 16:54:17 [log] wx.getNetworkType api invoke 2025-6-14 16:54:17 [log] page pkg-user/pages/user/amap/amap onShow have been invoked 2025-6-14 16:54:17 [log] wx.getNetworkType success callback with msg getNetworkType:ok 2025-6-14 16:54:17 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-14 16:54:18 [log] wx.getStorageSync api invoke 2025-6-14 16:54:18 [log] wx.getStorageSync return 2025-6-14 16:54:18 [log] wx.setStorageSync api invoke 2025-6-14 16:54:18 [log] wx.setStorageSync return 2025-6-14 16:54:18 [log] wx.setStorageSync api invoke 2025-6-14 16:54:18 [log] wx.setStorageSync return 2025-6-14 16:54:18 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:18 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:18 [log] wx.getSetting success callback with msg getSetting:ok 2025-6-14 16:54:18 [log] wx.getLocation api invoke 2025-6-14 16:54:18 [log] wx.getStorageSync api invoke 2025-6-14 16:54:18 [log] wx.getStorageSync return 2025-6-14 16:54:18 [log] wx.getStorageSync api invoke 2025-6-14 16:54:18 [log] wx.getStorageSync return 2025-6-14 16:54:18 [log] wx.request api invoke 2025-6-14 16:54:18 [log] wx.getLocation success callback with msg getLocation:ok 2025-6-14 16:54:18 [log] wx.getSetting success callback with msg getSetting:ok 2025-6-14 16:54:18 [log] wx.getLocation api invoke 2025-6-14 16:54:18 [log] wx.getStorageSync api invoke 2025-6-14 16:54:18 [log] wx.getStorageSync return 2025-6-14 16:54:18 [log] wx.getStorageSync api invoke 2025-6-14 16:54:18 [log] wx.getStorageSync return 2025-6-14 16:54:18 [log] wx.request api invoke 2025-6-14 16:54:18 [log] wx.getLocation success callback with msg getLocation:ok 2025-6-14 16:54:18 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:18 [log] wx.getStorageSync api invoke 2025-6-14 16:54:18 [log] wx.getStorageSync return 2025-6-14 16:54:18 [log] wx.getStorageSync api invoke 2025-6-14 16:54:18 [log] wx.getStorageSync return 2025-6-14 16:54:18 [log] wx.request api invoke 2025-6-14 16:54:18 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:18 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:19 [log] wx.hideLoading api invoke 2025-6-14 16:54:19 [log] wx.showModal api invoke 2025-6-14 16:54:19 [log] wx.getStorageSync api invoke 2025-6-14 16:54:19 [log] wx.getStorageSync return 2025-6-14 16:54:19 [log] wx.getStorageSync api invoke 2025-6-14 16:54:19 [log] wx.getStorageSync return 2025-6-14 16:54:19 [log] wx.getSetting api invoke 2025-6-14 16:54:19 [log] wx.uploadFile success callback with msg uploadFile:ok 2025-6-14 16:54:19 [log] wx.getSetting success callback with msg getSetting:ok 2025-6-14 16:54:19 [log] wx.getLocation api invoke 2025-6-14 16:54:19 [log] wx.getStorageSync api invoke 2025-6-14 16:54:19 [log] wx.getStorageSync return 2025-6-14 16:54:19 [log] wx.getStorageSync api invoke 2025-6-14 16:54:19 [log] wx.getStorageSync return 2025-6-14 16:54:19 [log] wx.request api invoke 2025-6-14 16:54:19 [log] wx.getLocation success callback with msg getLocation:ok 2025-6-14 16:54:19 [log] wx.hideLoading success callback with msg hideLoading:ok 2025-6-14 16:54:19 [log] wx.request success callback with msg request:ok with seq 0 2025-6-14 16:54:20 [log] wx.navigateBack api invoke 2025-6-14 16:54:20 [log] wx.showModal success callback with msg showModal:ok 2025-6-14 16:54:20 [log] page pkg-user/pages/user/amap/amap onUnload have been invoked 2025-6-14 16:54:20 [log] page pkg-user/pages/user/site-list/site-list onShow have been invoked 2025-6-14 16:54:20 [log] page pkg-user/pages/user/site-list/site-list onRouteDone have been invoked 2025-6-14 16:54:20 [log] wx.navigateBack success callback with msg navigateBack:ok 2025-6-14 16:54:20 [log] page pkg-user/pages/user/site-list/site-list onHide have been invoked 2025-6-14 16:54:20 [log] App onHide have been invoked 2025-6-15 6:29:0 [log] wx.getSystemInfoSync api invoke 2025-6-15 6:29:0 [log] wx.getSystemInfoSync return 2025-6-15 6:29:0 [log] wx.getMenuButtonBoundingClientRect api invoke 2025-6-15 6:29:0 [log] wx.removeStorageSync api invoke 2025-6-15 6:29:0 [log] wx.removeStorageSync return 2025-6-15 6:29:0 [log] wx.getStorageSync api invoke 2025-6-15 6:29:0 [log] wx.getStorageSync return 2025-6-15 6:29:0 [log] wx.getStorageSync api invoke 2025-6-15 6:29:0 [log] wx.getStorageSync return 2025-6-15 6:29:0 [log] wx.request api invoke 2025-6-15 6:29:0 [log] App onLaunch have been invoked 2025-6-15 6:29:0 [log] wx.getStorageSync api invoke 2025-6-15 6:29:0 [log] wx.getStorageSync return 2025-6-15 6:29:0 [log] wx.getStorageSync api invoke 2025-6-15 6:29:0 [log] wx.getStorageSync return 2025-6-15 6:29:0 [log] wx.getStorageSync api invoke 2025-6-15 6:29:0 [log] wx.getStorageSync return 2025-6-15 6:29:0 [log] wx.getSetting api invoke 2025-6-15 6:29:0 [log] wx.getStorageSync api invoke 2025-6-15 6:29:0 [log] wx.getStorageSync return 2025-6-15 6:29:0 [log] wx.getStorageSync api invoke 2025-6-15 6:29:0 [log] wx.getStorageSync return 2025-6-15 6:29:0 [log] wx.request api invoke 2025-6-15 6:29:0 [log] App onShow have been invoked 2025-6-15 6:29:0 [log] page pages/dispatch/dispatch onLoad have been invoked 2025-6-15 6:29:0 [log] page pages/dispatch/dispatch onShow have been invoked 2025-6-15 6:29:0 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:0 [log] page pages/dispatch/dispatch onReady have been invoked 2025-6-15 6:29:0 [log] wx.getSetting success callback with msg getSetting:ok 2025-6-15 6:29:0 [log] wx.getLocation api invoke 2025-6-15 6:29:0 [log] page pages/dispatch/dispatch onRouteDone have been invoked 2025-6-15 6:29:0 [log] wx.login api invoke 2025-6-15 6:29:0 [log] wx.getStorageSync api invoke 2025-6-15 6:29:0 [log] wx.getStorageSync return 2025-6-15 6:29:0 [log] wx.getStorageSync api invoke 2025-6-15 6:29:0 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getLocation success callback with msg getLocation:ok 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.login success callback with msg login:ok 2025-6-15 6:29:1 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:1 [log] wx.setStorageSync api invoke 2025-6-15 6:29:1 [log] wx.setStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.setStorageSync api invoke 2025-6-15 6:29:1 [log] wx.setStorageSync return 2025-6-15 6:29:1 [log] wx.setStorageSync api invoke 2025-6-15 6:29:1 [log] wx.setStorageSync return 2025-6-15 6:29:1 [log] wx.redirectTo api invoke 2025-6-15 6:29:1 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:1 [log] page pages/dispatch/dispatch onUnload have been invoked 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] page pkg-user/pages/user/index/index onLoad have been invoked 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] page pkg-user/pages/user/index/index onShow have been invoked 2025-6-15 6:29:1 [log] wx.redirectTo success callback with msg redirectTo:ok 2025-6-15 6:29:1 [log] page pkg-user/pages/user/index/index onReady have been invoked 2025-6-15 6:29:1 [log] page pkg-user/pages/user/index/index onRouteDone have been invoked 2025-6-15 6:29:1 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.showLoading api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.showLoading api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:1 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.showLoading api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.showLoading api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.showLoading api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.showLoading api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.showLoading api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.showLoading api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.showLoading api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.showLoading api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.showLoading api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.showLoading api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.showLoading api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.showLoading api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.showLoading api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.showLoading api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.showLoading api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.getStorageSync api invoke 2025-6-15 6:29:1 [log] wx.getStorageSync return 2025-6-15 6:29:1 [log] wx.request api invoke 2025-6-15 6:29:1 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:1 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:1 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:1 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:1 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:1 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:1 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:1 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:1 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:1 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:1 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:1 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:1 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:1 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:1 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:1 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:1 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:2 [log] wx.hideLoading api invoke 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.hideLoading api invoke 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-15 6:29:2 [log] wx.hideLoading api invoke 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.hideLoading api invoke 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.getStorageSync api invoke 2025-6-15 6:29:2 [log] wx.getStorageSync return 2025-6-15 6:29:2 [log] wx.getStorageSync api invoke 2025-6-15 6:29:2 [log] wx.getStorageSync return 2025-6-15 6:29:2 [log] wx.request api invoke 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.hideLoading success callback with msg hideLoading:ok 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.getStorageSync api invoke 2025-6-15 6:29:2 [log] wx.getStorageSync return 2025-6-15 6:29:2 [log] wx.getStorageSync api invoke 2025-6-15 6:29:2 [log] wx.getStorageSync return 2025-6-15 6:29:2 [log] wx.getStorageSync api invoke 2025-6-15 6:29:2 [log] wx.getStorageSync return 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.getStorageSync api invoke 2025-6-15 6:29:2 [log] wx.getStorageSync return 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.navigateTo api invoke 2025-6-15 6:29:2 [log] page pkg-user/pages/user/index/index onHide have been invoked 2025-6-15 6:29:2 [log] wx.getStorageSync api invoke 2025-6-15 6:29:2 [log] wx.getStorageSync return 2025-6-15 6:29:2 [log] wx.showLoading api invoke 2025-6-15 6:29:2 [log] wx.getStorageSync api invoke 2025-6-15 6:29:2 [log] wx.getStorageSync return 2025-6-15 6:29:2 [log] wx.getStorageSync api invoke 2025-6-15 6:29:2 [log] wx.getStorageSync return 2025-6-15 6:29:2 [log] wx.request api invoke 2025-6-15 6:29:2 [log] page pkg-user/pages/user/site-list/site-list onLoad have been invoked 2025-6-15 6:29:2 [log] page pkg-user/pages/user/site-list/site-list onShow have been invoked 2025-6-15 6:29:2 [log] wx.navigateTo success callback with msg navigateTo:ok 2025-6-15 6:29:2 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.hideLoading api invoke 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-15 6:29:2 [log] page pkg-user/pages/user/site-list/site-list onReady have been invoked 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.hideLoading api invoke 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.hideLoading api invoke 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-15 6:29:2 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:2 [log] wx.hideLoading api invoke 2025-6-15 6:29:3 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:3 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-15 6:29:3 [log] wx.hideLoading api invoke 2025-6-15 6:29:3 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:3 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-15 6:29:3 [log] wx.hideLoading api invoke 2025-6-15 6:29:3 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:3 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-15 6:29:3 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:3 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:3 [log] wx.hideLoading api invoke 2025-6-15 6:29:3 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:3 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-15 6:29:3 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:3 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:3 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:3 [log] wx.hideLoading api invoke 2025-6-15 6:29:3 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:3 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-15 6:29:3 [log] wx.hideLoading api invoke 2025-6-15 6:29:3 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:3 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-15 6:29:3 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:3 [log] wx.hideLoading api invoke 2025-6-15 6:29:3 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:3 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:3 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-15 6:29:3 [log] wx.hideLoading api invoke 2025-6-15 6:29:3 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:3 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-15 6:29:3 [log] wx.hideLoading api invoke 2025-6-15 6:29:3 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:3 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-15 6:29:3 [log] page pkg-user/pages/user/site-list/site-list onRouteDone have been invoked 2025-6-15 6:29:3 [log] wx.setStorageSync api invoke 2025-6-15 6:29:3 [log] wx.setStorageSync return 2025-6-15 6:29:3 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:3 [log] wx.hideLoading api invoke 2025-6-15 6:29:3 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:3 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-15 6:29:3 [log] wx.hideLoading api invoke 2025-6-15 6:29:3 [log] wx.navigateTo api invoke 2025-6-15 6:29:3 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:3 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-15 6:29:3 [log] wx.navigateTo success callback with msg navigateTo:ok 2025-6-15 6:29:3 [log] page pkg-user/pages/user/site-list/site-list onHide have been invoked 2025-6-15 6:29:3 [log] wx.getSystemInfoSync api invoke 2025-6-15 6:29:3 [log] wx.getSystemInfoSync return 2025-6-15 6:29:3 [log] wx.getStorageSync api invoke 2025-6-15 6:29:3 [log] wx.getStorageSync return 2025-6-15 6:29:3 [log] wx.getStorageSync api invoke 2025-6-15 6:29:3 [log] wx.getStorageSync return 2025-6-15 6:29:3 [log] wx.request api invoke 2025-6-15 6:29:3 [log] wx.getSetting api invoke 2025-6-15 6:29:3 [log] wx.getNetworkType api invoke 2025-6-15 6:29:3 [log] wx.getStorageSync api invoke 2025-6-15 6:29:3 [log] wx.getStorageSync return 2025-6-15 6:29:3 [log] wx.getStorageSync api invoke 2025-6-15 6:29:3 [log] wx.getStorageSync return 2025-6-15 6:29:3 [log] wx.request api invoke 2025-6-15 6:29:3 [log] wx.showLoading api invoke 2025-6-15 6:29:3 [log] wx.getStorageSync api invoke 2025-6-15 6:29:3 [log] wx.getStorageSync return 2025-6-15 6:29:3 [log] wx.getStorageSync api invoke 2025-6-15 6:29:3 [log] wx.getStorageSync return 2025-6-15 6:29:3 [log] wx.request api invoke 2025-6-15 6:29:3 [log] wx.showLoading api invoke 2025-6-15 6:29:3 [log] wx.getStorageSync api invoke 2025-6-15 6:29:3 [log] wx.getStorageSync return 2025-6-15 6:29:3 [log] wx.getStorageSync api invoke 2025-6-15 6:29:3 [log] wx.getStorageSync return 2025-6-15 6:29:3 [log] wx.request api invoke 2025-6-15 6:29:3 [log] wx.getStorageSync api invoke 2025-6-15 6:29:3 [log] wx.getStorageSync return 2025-6-15 6:29:3 [log] wx.getStorageSync api invoke 2025-6-15 6:29:3 [log] wx.getStorageSync return 2025-6-15 6:29:3 [log] wx.request api invoke 2025-6-15 6:29:3 [log] page pkg-user/pages/user/amap/amap onLoad have been invoked 2025-6-15 6:29:3 [log] wx.getSetting api invoke 2025-6-15 6:29:3 [log] wx.getNetworkType api invoke 2025-6-15 6:29:3 [log] page pkg-user/pages/user/amap/amap onShow have been invoked 2025-6-15 6:29:3 [log] wx.getNetworkType success callback with msg getNetworkType:ok 2025-6-15 6:29:3 [log] wx.getNetworkType success callback with msg getNetworkType:ok 2025-6-15 6:29:3 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:3 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:3 [log] wx.getStorageSync api invoke 2025-6-15 6:29:3 [log] wx.getStorageSync return 2025-6-15 6:29:3 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:3 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:3 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:3 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:3 [log] wx.hideLoading api invoke 2025-6-15 6:29:3 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:3 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-15 6:29:3 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:3 [log] wx.getSetting success callback with msg getSetting:ok 2025-6-15 6:29:3 [log] wx.getLocation api invoke 2025-6-15 6:29:3 [log] wx.getStorageSync api invoke 2025-6-15 6:29:3 [log] wx.getStorageSync return 2025-6-15 6:29:3 [log] wx.getStorageSync api invoke 2025-6-15 6:29:3 [log] wx.getStorageSync return 2025-6-15 6:29:3 [log] wx.request api invoke 2025-6-15 6:29:3 [log] wx.getLocation success callback with msg getLocation:ok 2025-6-15 6:29:3 [log] wx.getSetting success callback with msg getSetting:ok 2025-6-15 6:29:3 [log] wx.getLocation api invoke 2025-6-15 6:29:3 [log] wx.getStorageSync api invoke 2025-6-15 6:29:3 [log] wx.getStorageSync return 2025-6-15 6:29:3 [log] wx.getStorageSync api invoke 2025-6-15 6:29:3 [log] wx.getStorageSync return 2025-6-15 6:29:3 [log] wx.request api invoke 2025-6-15 6:29:3 [log] wx.getLocation success callback with msg getLocation:ok 2025-6-15 6:29:3 [log] page pkg-user/pages/user/amap/amap onReady have been invoked 2025-6-15 6:29:3 [log] wx.getStorageSync api invoke 2025-6-15 6:29:3 [log] wx.getStorageSync return 2025-6-15 6:29:3 [log] wx.getStorageSync api invoke 2025-6-15 6:29:3 [log] wx.getStorageSync return 2025-6-15 6:29:3 [log] wx.request api invoke 2025-6-15 6:29:3 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:3 [log] wx.getStorageSync api invoke 2025-6-15 6:29:3 [log] wx.getStorageSync return 2025-6-15 6:29:3 [log] wx.getStorageSync api invoke 2025-6-15 6:29:3 [log] wx.getStorageSync return 2025-6-15 6:29:3 [log] wx.request api invoke 2025-6-15 6:29:3 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:3 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:3 [log] page pkg-user/pages/user/amap/amap onRouteDone have been invoked 2025-6-15 6:29:3 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:4 [log] wx.chooseMedia api invoke 2025-6-15 6:29:5 [log] page pkg-user/pages/user/amap/amap onHide have been invoked 2025-6-15 6:29:5 [log] App onHide have been invoked 2025-6-15 6:29:18 [log] wx.getSystemInfoSync api invoke 2025-6-15 6:29:18 [log] wx.getSystemInfoSync return 2025-6-15 6:29:18 [log] wx.getMenuButtonBoundingClientRect api invoke 2025-6-15 6:29:18 [log] wx.removeStorageSync api invoke 2025-6-15 6:29:18 [log] wx.removeStorageSync return 2025-6-15 6:29:18 [log] wx.getStorageSync api invoke 2025-6-15 6:29:18 [log] wx.getStorageSync return 2025-6-15 6:29:18 [log] wx.getStorageSync api invoke 2025-6-15 6:29:18 [log] wx.getStorageSync return 2025-6-15 6:29:18 [log] wx.request api invoke 2025-6-15 6:29:18 [log] App onLaunch have been invoked 2025-6-15 6:29:18 [log] wx.getStorageSync api invoke 2025-6-15 6:29:18 [log] wx.getStorageSync return 2025-6-15 6:29:18 [log] wx.getStorageSync api invoke 2025-6-15 6:29:18 [log] wx.getStorageSync return 2025-6-15 6:29:18 [log] wx.getStorageSync api invoke 2025-6-15 6:29:18 [log] wx.getStorageSync return 2025-6-15 6:29:18 [log] wx.getSetting api invoke 2025-6-15 6:29:18 [log] wx.getStorageSync api invoke 2025-6-15 6:29:18 [log] wx.getStorageSync return 2025-6-15 6:29:18 [log] wx.getStorageSync api invoke 2025-6-15 6:29:18 [log] wx.getStorageSync return 2025-6-15 6:29:18 [log] wx.request api invoke 2025-6-15 6:29:18 [log] App onShow have been invoked 2025-6-15 6:29:18 [log] page pages/dispatch/dispatch onLoad have been invoked 2025-6-15 6:29:18 [log] page pages/dispatch/dispatch onShow have been invoked 2025-6-15 6:29:18 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:18 [log] wx.getSetting success callback with msg getSetting:ok 2025-6-15 6:29:18 [log] page pages/dispatch/dispatch onReady have been invoked 2025-6-15 6:29:18 [log] wx.getLocation api invoke 2025-6-15 6:29:18 [log] page pages/dispatch/dispatch onRouteDone have been invoked 2025-6-15 6:29:18 [log] wx.getStorageSync api invoke 2025-6-15 6:29:18 [log] wx.getStorageSync return 2025-6-15 6:29:18 [log] wx.getStorageSync api invoke 2025-6-15 6:29:18 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getLocation success callback with msg getLocation:ok 2025-6-15 6:29:19 [log] wx.login api invoke 2025-6-15 6:29:19 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.login success callback with msg login:ok 2025-6-15 6:29:19 [log] wx.setStorageSync api invoke 2025-6-15 6:29:19 [log] wx.setStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.setStorageSync api invoke 2025-6-15 6:29:19 [log] wx.setStorageSync return 2025-6-15 6:29:19 [log] wx.setStorageSync api invoke 2025-6-15 6:29:19 [log] wx.setStorageSync return 2025-6-15 6:29:19 [log] wx.redirectTo api invoke 2025-6-15 6:29:19 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:19 [log] page pages/dispatch/dispatch onUnload have been invoked 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] page pkg-user/pages/user/index/index onLoad have been invoked 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] page pkg-user/pages/user/index/index onShow have been invoked 2025-6-15 6:29:19 [log] wx.redirectTo success callback with msg redirectTo:ok 2025-6-15 6:29:19 [log] page pkg-user/pages/user/index/index onReady have been invoked 2025-6-15 6:29:19 [log] page pkg-user/pages/user/index/index onRouteDone have been invoked 2025-6-15 6:29:19 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.showLoading api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.showLoading api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:19 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:19 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.showLoading api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.showLoading api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.showLoading api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.showLoading api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.showLoading api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.showLoading api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.showLoading api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.showLoading api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.showLoading api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.showLoading api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.showLoading api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.showLoading api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.showLoading api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.showLoading api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.showLoading api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.getStorageSync api invoke 2025-6-15 6:29:19 [log] wx.getStorageSync return 2025-6-15 6:29:19 [log] wx.request api invoke 2025-6-15 6:29:19 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:19 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:19 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:19 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:19 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:19 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:19 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:19 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:19 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:19 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:19 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:19 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:19 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:19 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:19 [log] wx.showLoading success callback with msg showLoading:ok 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.hideLoading api invoke 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.hideLoading api invoke 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.hideLoading api invoke 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-15 6:29:20 [log] wx.hideLoading api invoke 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.getStorageSync api invoke 2025-6-15 6:29:20 [log] wx.getStorageSync return 2025-6-15 6:29:20 [log] wx.getStorageSync api invoke 2025-6-15 6:29:20 [log] wx.getStorageSync return 2025-6-15 6:29:20 [log] wx.request api invoke 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.hideLoading success callback with msg hideLoading:ok 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.getStorageSync api invoke 2025-6-15 6:29:20 [log] wx.getStorageSync return 2025-6-15 6:29:20 [log] wx.getStorageSync api invoke 2025-6-15 6:29:20 [log] wx.getStorageSync return 2025-6-15 6:29:20 [log] wx.getStorageSync api invoke 2025-6-15 6:29:20 [log] wx.getStorageSync return 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.getStorageSync api invoke 2025-6-15 6:29:20 [log] wx.getStorageSync return 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.hideLoading api invoke 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.hideLoading api invoke 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-15 6:29:20 [log] wx.hideLoading api invoke 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-15 6:29:20 [log] wx.hideLoading api invoke 2025-6-15 6:29:20 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:20 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-15 6:29:21 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:21 [log] wx.hideLoading api invoke 2025-6-15 6:29:21 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:21 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-15 6:29:21 [log] wx.hideLoading api invoke 2025-6-15 6:29:21 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:21 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-15 6:29:21 [log] wx.hideLoading api invoke 2025-6-15 6:29:21 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:21 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-15 6:29:21 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:21 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:21 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:21 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:21 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:21 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:21 [log] wx.hideLoading api invoke 2025-6-15 6:29:21 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:21 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-15 6:29:21 [log] wx.hideLoading api invoke 2025-6-15 6:29:21 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:21 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-15 6:29:21 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:21 [log] wx.hideLoading api invoke 2025-6-15 6:29:21 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:21 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-15 6:29:21 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:21 [log] wx.hideLoading api invoke 2025-6-15 6:29:21 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:21 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-15 6:29:21 [log] wx.hideLoading api invoke 2025-6-15 6:29:21 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:21 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-15 6:29:21 [log] wx.hideLoading api invoke 2025-6-15 6:29:21 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:21 [log] wx.hideLoading fail callback with msg hideLoading:fail toast can't be found 2025-6-15 6:29:21 [log] wx.setStorageSync api invoke 2025-6-15 6:29:21 [log] wx.setStorageSync return 2025-6-15 6:29:21 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:21 [log] wx.getStorageSync api invoke 2025-6-15 6:29:21 [log] wx.getStorageSync return 2025-6-15 6:29:21 [log] wx.request success callback with msg request:ok with seq 0 2025-6-15 6:29:23 [log] page pkg-user/pages/user/index/index onHide have been invoked 2025-6-15 6:29:23 [log] App onHide have been invoked
3小时前你好,麻烦在手机微信那里上传下日志: 我->设置->帮助与反馈右上角有个上报日志的入口,提供一下微信号,时间点
wx.chooseMedia上传图片闪退?拍照闪退,从相册选的话没问题。 设备品牌: iPhone 设备型号: iPhone 16 Pro<iPhone17,1> 设备像素比: 3 屏幕宽度: 402 屏幕高度: 773.6666666666666 状态栏的高度: 56.33333333333334 微信设置的语言: zh_CN 微信版本号: 8.0.60 操作系统及版本: iOS 18.5 客户端平台: ios 用户字体大小: 17 客户端基础库版本 : 3.8.8 设备性能等级: -1
3小时前可以提供下具体case看看呢
微信小程序webview中使用wx.chooseImage上传图片,点击左上角分享给好友后异常在微信小程序webview中打开H5页面,H5页面中调用wx.chooseImage进行图片上传操作,一切正常。在H5页面场景下,点击左上角的分享——> 复制链接 发送给好友,通过聊天记录链接进入小程序H5页面,选择图片能力也正常。 但是点击左上角分享——> 分享给好友,此时通过聊天记录进入小程序H5页面,唤起相册后,点击选择照片,页面直接卡死,一直loading转圈
星期三 18:46微信服务器在五秒内收不到响应会断掉连接,并且重新发起请求,总共重试三次。 关于重试的消息排重,推荐使用FromUserName + CreateTime 排重。 假如服务器无法保证在五秒内处理并回复,可以直接回复空串,微信服务器不会对此作任何处理,并且不会发起重试。
微信小程序后台的消息推送,设置了推送的服务器,如果网络超时,或者报错会重试推送吗?[图片]
星期三 18:45可以先确认是具体哪个接口问题,报什么错
部分手机上传图片选择图片之后点击上传没上传成功?部分手机上传图片选择图片之后点击上传没上传成功 async upfile() { let that = this if (that.limit != null && !isNaN(that.limit)) { if (that.limit >= 1) { uni.showToast({ title: '已达到最大上传数量', icon: 'none' }); return; } } let temps = await that.getURLInfo(); let Crop = await that.getCropimage(temps); let imgInfo = await that.getImgInfo(Crop.tempFilePath); // 获取图片信息 // let ctxInfo = await that.contraction(imgInfo, 'myCanvas'); // 图片压缩 //上传 that.url = ctxInfo.tempFilePath that.urlShow = true //base64 pathToBase64(that.url) .then(base64 => { this.Qualificationcertificate.ryzp = base64.split(',')[1] }) .catch(error => { }) }, //调用摄像头和图库获取路径 async getURLInfo() { try { let image = await new Promise((resolve, reject) => { uni.chooseMedia({ count: 1, // 默认9 sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有 sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有 success: function(res) { // 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片 resolve(res) }, fail(err) { reject(err) } }) }) return image } catch (err) { console.log(err); } }, //裁剪图片 async getCropimage(res) { try { let image = await new Promise((resolve, reject) => { wx.cropImage({ src: res.tempFiles[0].tempFilePath, // 图片路径 cropScale: '3:4', // 裁剪比例 success: function(res) { // 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片 if (!/(\.jpg|\.png|\.jpeg)$/.test(res.tempFilePath .toLowerCase())) { uni.showToast({ title: '请上传jpg、png或jpeg格式的照片', icon: 'none', duration: 2000 }); return; } resolve(res) }, fail(err) { reject(err) } }) }) return image } catch (err) { console.log(err); } }, /** * 图片压缩 * @param {object} file 图片信息:width、height、type、path * @param {string} canvasId canvas的id名 * @param {object} config 限制最大宽高 * @returns 压缩完成后的图片path */ async contraction(file, canvasId, config = { maxWidth: 180, maxHeight: 240 }) { try { let ctxInfo = await new Promise((resolve, reject) => { // 获取图片原始宽高 let width = file.width let height = file.height // 计算图片当前大小和目标大小的比例:目标大小 / 图片当前大小 // 根据比例调整图片的尺寸: // 新宽度 = 原始宽度 * √(目标大小 / 图片当前大小) // 新高度 = 原始高度 * √(目标大小 / 图片当前大小) // 宽高同比例调整 // 宽度 > 最大限宽 -> 重置尺寸 if (width > config.maxWidth) { const ratio = config.maxWidth / width width = config.maxWidth height = height * ratio } // 高度 > 最大限高度 -> 重置尺寸 if (height > config.maxHeight) { const ratio = config.maxHeight / height width = width * ratio height = config.maxHeight } // 获取canvas元素 const query = this.createSelectorQuery() let dom = query.select(`#${canvasId}`) dom.fields({ node: true, size: true }) .exec((res) => { // Canvas 对象 const canvas = res[0].node // 渲染上下文 const ctx = canvas.getContext('2d') // 根据设备像素比处理尺寸 = 大小 * 设备像素 const dpr = wx.getSystemInfoSync().pixelRatio canvas.width = width * dpr canvas.height = height * dpr ctx.scale(dpr, dpr) //创建img对象 let img = canvas.createImage(); img.src = file.path; // 给图片添加路径 //图片加载完毕 img.onload = function() { // 将图片绘制到 canvas ctx.drawImage(img, 0, 0, width, height) // 生成图片 wx.canvasToTempFilePath({ canvas, x: 0, y: 0, destWidth: width, destHeight: height, success(res) { resolve(res); // 生成临时文件路径 } }) } }) }) return ctxInfo } catch (err) { console.log(err); } }, /* 获取图片信息 * @param {string} tempFilePath 图片路径 * @returns 图片信息 */ async getImgInfo(tempFilePath) { try { let image = await new Promise((resolve, reject) => { wx.getImageInfo({ src: tempFilePath, success(res) { let imgInfo = { type: res.type, height: res.height, width: res.width, path: res.path } resolve(imgInfo) }, fail(err) { reject(err) } }) }) return image // callback(image) } catch (err) { console.log(err); } },
星期三 18:39现在还有问题吗,提供下appid和操作时间
补充小程序信息中的小程序介绍一栏,体质提交失败,保存失败的[图片]
星期三 16:23