Commit c361858c authored by caimeng's avatar caimeng

优化完成,提交测试

parent 6a3b63fd
...@@ -64,7 +64,7 @@ export default { ...@@ -64,7 +64,7 @@ export default {
}, },
onTabItemTap(e) { onTabItemTap(e) {
try { try {
console.log(e, 'tabItemTap') console.log('tabItemTap')
const config = JSON.parse(uni.getStorageSync('APP-SETTING')); const config = JSON.parse(uni.getStorageSync('APP-SETTING'));
const that = this; const that = this;
const timestamp = new Date().getTime() const timestamp = new Date().getTime()
...@@ -72,8 +72,8 @@ export default { ...@@ -72,8 +72,8 @@ export default {
const token = uni.getStorageSync('tokenFinance') const token = uni.getStorageSync('tokenFinance')
const mobile = uni.getStorageSync('l-mobile') const mobile = uni.getStorageSync('l-mobile')
const $src = config['h5Url'] + `?token=${token}&mobile=${mobile}&timestamp=${timestamp}` const $src = config['h5Url'] + `?token=${token}&mobile=${mobile}&timestamp=${timestamp}`
console.log($src, '刷新的地址') console.log($src,'刷新的地址')
that.src = $src // that.src = $src
}, 100); }, 100);
} catch (err) { } catch (err) {
console.log(err) console.log(err)
...@@ -92,6 +92,9 @@ export default { ...@@ -92,6 +92,9 @@ export default {
const token = uni.getStorageSync('tokenFinance') const token = uni.getStorageSync('tokenFinance')
const mobile = uni.getStorageSync('l-mobile') const mobile = uni.getStorageSync('l-mobile')
const $src = config['h5Url'] + `?token=${token}&mobile=${mobile}&timestamp=${timestamp}` const $src = config['h5Url'] + `?token=${token}&mobile=${mobile}&timestamp=${timestamp}`
console.log($src,'首次加载的地址')
that.src = $src that.src = $src
}, 100); }, 100);
...@@ -118,9 +121,7 @@ export default { ...@@ -118,9 +121,7 @@ export default {
uni.removeStorageSync('canRefreshWeb') uni.removeStorageSync('canRefreshWeb')
if (this.wv) { if (this.wv) {
// 为OCR做的刷新 // 为OCR做的刷新
const needReload = uni.getStorageSync('reloadFlag') const needReload = uni.getStorageSync('reloadFlag')
if (!needReload) { if (!needReload) {
if (reloadTimeOut) clearTimeout(reloadTimeOut) if (reloadTimeOut) clearTimeout(reloadTimeOut)
reloadTimeOut = setTimeout(() => { reloadTimeOut = setTimeout(() => {
...@@ -130,18 +131,19 @@ export default { ...@@ -130,18 +131,19 @@ export default {
} }
} }
} }
// 这里为借款做的刷新 // 这里为借款做的刷新
const canRefresh = uni.getStorageSync('canRefresh'); // const canRefresh = uni.getStorageSync('canRefresh');
console.log(canRefresh, '是否需要刷新-这里为借款做的刷新') // console.log(canRefresh, '是否需要刷新-这里为借款做的刷新')
if (canRefresh) { // if (canRefresh) {
uni.removeStorageSync('canRefresh') // uni.removeStorageSync('canRefresh')
if (reloadTimeOut) clearTimeout(reloadTimeOut) // if (reloadTimeOut) clearTimeout(reloadTimeOut)
reloadTimeOut = setTimeout(() => { // reloadTimeOut = setTimeout(() => {
console.log('页面刷新了2') // console.log('页面刷新了2')
this.wv && this.wv.reload() // this.wv && this.wv.reload()
}, 400) // }, 400)
} // }
}, },
onUnload() { 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