|
@@ -325,6 +325,21 @@ export default {
|
|
|
totalPayCount: '' //应支付总笔数
|
|
|
}
|
|
|
},
|
|
|
+ onLoad(page) {
|
|
|
+ const type = page?.type
|
|
|
+ if (type && type === 'jumpurl') {
|
|
|
+ const jumpurl = localStorage.getItem('jumpUrl')
|
|
|
+ if (jumpurl) {
|
|
|
+ uni.showLoading({
|
|
|
+ title: '正在跳转中...'
|
|
|
+ })
|
|
|
+ setTimeout(() => {
|
|
|
+ uni.hideLoading()
|
|
|
+ location.href = jumpurl
|
|
|
+ }, 0)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
onShow () {
|
|
|
this.handleGetIndexData()
|
|
|
this.getLocation()
|