|
|
@@ -76,10 +76,14 @@
|
|
|
data() {
|
|
|
return {
|
|
|
bankInfo: {},
|
|
|
- vCoins: 0
|
|
|
+ vCoins: 0,
|
|
|
+ fpUrl: ''
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
|
+ const {coins=0, fpUrl=0} = this.$route.query || {}
|
|
|
+ this.vCoins = coins
|
|
|
+ this.fpUrl = fpUrl
|
|
|
this.getAccountBankInfo()
|
|
|
this.getWithdrawType()
|
|
|
},
|
|
|
@@ -105,7 +109,8 @@
|
|
|
this.vCoins = this.bankInfo.incomeTaxBalance
|
|
|
},
|
|
|
onJumpToUpload() {
|
|
|
- location.href = '/otherpage/money/uploadInvoice?coins=' + this.vCoins || 0
|
|
|
+ const {vCoins, fpUrl} = this
|
|
|
+ location.href = `/otherpage/money/uploadInvoice?coins=${vCoins}&fpUrl=${fpUrl}`
|
|
|
},
|
|
|
submitCommit() {
|
|
|
this.$axios.post('/api/recruit/addInvoiceWithdrawalApply', {
|