This commit is contained in:
Mr.jiang 2024-08-12 20:53:12 +08:00
parent c12f986c84
commit 3171ae1cce
2 changed files with 21 additions and 6 deletions

View File

@ -83,7 +83,7 @@
<image src="../../../static/img/you.png" style="width: 16rpx;height: 28rpx;"></image>
</view>
<view class="flex align-center justify-between margin-top-xl"
@click="goNav('/my/wallet/mymoneydetail')">
@click="goNav('/my/wallet/mymoneydetail?navName='+navName)">
<view class="flex align-center">
<!-- <image
src="https://admin.sjajk.com/file/uploadPath/2023/01/03/ba45c8489a14029c1782ac0a28fd8a49.png"
@ -93,7 +93,7 @@
<image src="../../../static/img/you.png" style="width: 16rpx;height: 28rpx;"></image>
</view>
<view class="flex align-center justify-between margin-top-xl" @click="goNav('/pages/my/applyBroker/withdrawalRecord')">
<view class="flex align-center justify-between margin-top-xl" @click="goNav('/pages/my/applyBroker/withdrawalRecord?navName='+navName)">
<view class="flex align-center">
<!-- <image
src="https://admin.sjajk.com/file/uploadPath/2023/01/03/e90eb8a74548dc3b11c3c856e24e6fbc.png"
@ -217,9 +217,18 @@
currentRealIncome: null,
withdrawalAmountText: "请输入提现金额",
withdrawalAmountNumType: null,
userType:'',
navName:''
}
},
onLoad() {
onLoad(e) {
this.navName=e.navName
//userType2 3 4 5 6 7
if(e.navName=='经纪人'){
this.userType='4'
}else{
this.userType='5'
}
this.wxTxSel = this.$queue.getData('wxTxSel');
this.ylTxSel = this.$queue.getData('ylTxSel');
this.jsczSel = this.$queue.getData('jsczSel');
@ -377,7 +386,7 @@
goNav(url) {
console.log(url)
uni.navigateTo({
url
url:url
})
},
active(e) {
@ -392,7 +401,10 @@
},
//
getMoney() {
this.$Request.get("/app/userMoney/selectMyMoney").then(res => {
var data={
userType:this.userType
}
this.$Request.get("/app/userMoney/selectMyMoney",data).then(res => {
if (res.code == 0 && res.data) {
console.log(res.data.money)
this.currentRealIncome = res.data?.withdrawableAmount;
@ -660,7 +672,7 @@
if (res.confirm) {
that.$Request.get("/app/cash/cashMoney", {
money: that.moneyNum,
userType: 2,
userType: that.userType,
classify: that.openWay
}).then(res => {
if (res.code == 0) {

View File

@ -14,6 +14,9 @@
<view class="list-bottom-ding">
{{item.content}}
</view>
<view class="list-bottom-ding">
{{item.state=='1'?'提现审判中':'完成'}}
</view>
<view class="list-bottom-time">
创建时间{{item.createTime}}
</view>