Commit c361858c authored by caimeng's avatar caimeng

优化完成,提交测试

parent 6a3b63fd
......@@ -64,7 +64,7 @@ export default {
},
onTabItemTap(e) {
try {
console.log(e, 'tabItemTap')
console.log('tabItemTap')
const config = JSON.parse(uni.getStorageSync('APP-SETTING'));
const that = this;
const timestamp = new Date().getTime()
......@@ -72,8 +72,8 @@ export default {
const token = uni.getStorageSync('tokenFinance')
const mobile = uni.getStorageSync('l-mobile')
const $src = config['h5Url'] + `?token=${token}&mobile=${mobile}&timestamp=${timestamp}`
console.log($src, '刷新的地址')
that.src = $src
console.log($src,'刷新的地址')
// that.src = $src
}, 100);
} catch (err) {
console.log(err)
......@@ -92,6 +92,9 @@ export default {
const token = uni.getStorageSync('tokenFinance')
const mobile = uni.getStorageSync('l-mobile')
const $src = config['h5Url'] + `?token=${token}&mobile=${mobile}&timestamp=${timestamp}`
console.log($src,'首次加载的地址')
that.src = $src
}, 100);
......@@ -118,9 +121,7 @@ export default {
uni.removeStorageSync('canRefreshWeb')
if (this.wv) {
// 为OCR做的刷新
const needReload = uni.getStorageSync('reloadFlag')
const needReload = uni.getStorageSync('reloadFlag')
if (!needReload) {
if (reloadTimeOut) clearTimeout(reloadTimeOut)
reloadTimeOut = setTimeout(() => {
......@@ -130,18 +131,19 @@ export default {
}
}
}
// 这里为借款做的刷新
const canRefresh = uni.getStorageSync('canRefresh');
console.log(canRefresh, '是否需要刷新-这里为借款做的刷新')
if (canRefresh) {
uni.removeStorageSync('canRefresh')
if (reloadTimeOut) clearTimeout(reloadTimeOut)
reloadTimeOut = setTimeout(() => {
console.log('页面刷新了2')
this.wv && this.wv.reload()
}, 400)
}
// const canRefresh = uni.getStorageSync('canRefresh');
// console.log(canRefresh, '是否需要刷新-这里为借款做的刷新')
// if (canRefresh) {
// uni.removeStorageSync('canRefresh')
// if (reloadTimeOut) clearTimeout(reloadTimeOut)
// reloadTimeOut = setTimeout(() => {
// console.log('页面刷新了2')
// this.wv && this.wv.reload()
// }, 400)
// }
},
onUnload() {
......
No preview for this file type
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment