10.13 修改时间筛选逻辑,去掉分时图线上圆圈展示,修改K线图颜色

This commit is contained in:
尚政杰
2025-10-13 16:48:21 +08:00
parent bf2388c3ec
commit b53bb9715e
93 changed files with 736 additions and 352 deletions

46
App.vue
View File

@@ -17,13 +17,57 @@
provide('isiPhoneX',safeAreaBottom==34?true:false)
},
onShow: function() {
console.log('App Show')
console.log('App Show')
this.updateManager()
},
onHide: function() {
console.log('App Hide')
},
globalData:{
mobileReg:/^1[3456789][0-9]{9}$/
},
methods:{
updateManager() {
const updateManager = uni.getUpdateManager();
updateManager.onCheckForUpdate(res => {
// 请求完新版本信息的回调
// console.log(res.hasUpdate)
if (res.hasUpdate) {
uni.showModal({
title:'更新提示',
content:'检测到新版本,是否下载新版本并重启小程序?',
success(res) {
if (res.confirm) {
updateManager.onUpdateReady(() => {
uni.showModal({
title: '更新提示',
content: '新版本已经准备好,即将重启应用',
showCancel: false,
success(res) {
if (res.confirm) {
// 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
updateManager.applyUpdate()
}
}
})
})
}
},
fail(error) {
}
})
}
updateManager.onUpdateFailed(() => {
// 新的版本下载失败
uni.showModal({
title: '更新提示',
content: '新版本下载失败',
showCancel: false
})
})
})
}
}
}
</script>