['修改路由']

This commit is contained in:
2021-09-28 11:21:20 +08:00
parent f2e1121f3c
commit 0aa9c68b04
6 changed files with 31 additions and 21 deletions

View File

@@ -138,13 +138,13 @@
success: (res) => {
if (res.confirm) {
uni.showLoading({
title:'提交中'
title: '提交中'
})
withdrawsIndex(data).then(res => {
uni.showToast({
title: res,
icon: 'none',
duration:3000
duration: 3000
})
this.withdraw_input = ''
this.total = ''
@@ -165,18 +165,20 @@
},
// 添加银行卡
addBanks() {
uni.navigateTo({
url: '/pages/wallet/addBank'
this.$Router.push({
name: 'addBank'
})
},
// 选择银行卡
bankLists() {
this.$Router.push({name: 'bankList'})
this.$Router.push({
name: 'bankList'
})
},
// 提现记录
withdrawDetail() {
uni.navigateTo({
url: '/pages/wallet/withdrawList'
this.$Router.push({
name: 'withdrawList'
})
}
}