This commit is contained in:
parent
c12f986c84
commit
3171ae1cce
|
@ -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
|
||||
//userType(用户类型2技师 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) {
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue