Commit bfa23d77 authored by zhangjianguo's avatar zhangjianguo

1

parent 44a90d29
...@@ -29,8 +29,12 @@ ...@@ -29,8 +29,12 @@
<Text :style="{'color':mainColor}">{{item.AuditStatusName}}</Text> <Text :style="{'color':mainColor}">{{item.AuditStatusName}}</Text>
</view> </view>
</view> </view>
<Text class='text_s'>提现账户:{{item.AccountName}}</Text> <Text class='text_s' v-if='item.WithdrawalWay==1'>提现方式:自动打款</Text>
<Text class='text_s'>提现时间:{{item.AuditDate}}</Text> <Text class='text_s' v-if='item.WithdrawalWay==2'>提现方式:微信线下转账</Text>
<Text class='text_s' v-if='item.WithdrawalWay==3'>提现方式:支付宝线下转账</Text>
<Text class='text_s' v-if='item.WithdrawalWay==4'>提现方式:银行卡线下转账</Text>
<Text class='text_s' v-if='item.WithdrawalWay==5'>提现方式:余额提现</Text>
<Text class='text_s'>提现时间:{{item.RemitDate}}</Text>
</view> </view>
<view class="box_b_l" style="align-items: flex-end;"> <view class="box_b_l" style="align-items: flex-end;">
<Text style='font-size: 18px;'>{{item.AppliedMoney}}</Text> <Text style='font-size: 18px;'>{{item.AppliedMoney}}</Text>
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
<!-- <Text>用户须知</Text> --> <!-- <Text>用户须知</Text> -->
<u-collapse style='width: 100%;'> <u-collapse style='width: 100%;'>
<u-collapse-item :title="money.CustomModel.UserNotesName" > <u-collapse-item :title="money.CustomModel.UserNotesName" >
<!-- TODO无数据 --> <Text style='margin-bottom: 10px;'>{{money.CustomModel.UserNotes}} </Text>
</u-collapse-item> </u-collapse-item>
</u-collapse> </u-collapse>
</view> </view>
......
...@@ -25,16 +25,7 @@ ...@@ -25,16 +25,7 @@
this.init() this.init()
}, },
mounted() { mounted() {
let currentPages = getCurrentPages();
let u = "/" + currentPages[currentPages.length-1].route;
let pages = wx.getStorageSync("basedata")
? wx.getStorageSync("basedata").bar_title
: [];
pages.forEach((x) => {
if (x.value == u) {
this.pageTitle = x.new_name ? x.new_name : x.name;
}
});
uni.setNavigationBarTitle({ uni.setNavigationBarTitle({
title: this.pageTitle, title: this.pageTitle,
}); });
...@@ -44,15 +35,11 @@ ...@@ -44,15 +35,11 @@
uni.showNavigationBarLoading(); uni.showNavigationBarLoading();
let h = this.apiheader(); let h = this.apiheader();
this.request( this.request2(
{ {
url: "", url: '/api/AppletOrder/SetAppletOrderSendGoods',
header:h, data: that.forms
data: { },
r: "api/qrcode/share",
},
},
(res) => { (res) => {
uni.hideNavigationBarLoading() uni.hideNavigationBarLoading()
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<view class="cashBox"> <view class="cashBox">
<view class="cashBox_top"> <view class="cashBox_top">
<Text style='font-size: 18px;margin-top: 10px;'>账户剩余余额:{{cash.CommissionWithdrawal}}</Text> <Text style='font-size: 18px;margin-top: 10px;'>账户剩余余额:{{cash.CommissionWithdrawal}}</Text>
<Text style='font-size: 14px;color:#333 ;margin-top: 10px;'>今日剩余提现金额次数:{{cash.CanRemitMoney}}</Text> <Text style='font-size: 14px;color:#333 ;margin-top: 10px;'>今日剩余提现金额:{{cash.CanRemitMoney}}</Text>
<Text style='font-size: 14px;color:#333 ;margin-top: 10px;'>最少提现额度:{{cash.MinimumWithdrawalLimit}}</Text> <Text style='font-size: 14px;color:#333 ;margin-top: 10px;'>最少提现额度:{{cash.MinimumWithdrawalLimit}}</Text>
<Text style='font-size: 14px;color:#333 ;margin-top: 10px;'>手续费 百分比:{{cash.WithdrawFee}}%</Text> <Text style='font-size: 14px;color:#333 ;margin-top: 10px;'>手续费 百分比:{{cash.WithdrawFee}}%</Text>
<!-- <view style="display: flex;flex-direction: row;align-items: center;margin-top: 10px;"> <!-- <view style="display: flex;flex-direction: row;align-items: center;margin-top: 10px;">
...@@ -249,7 +249,8 @@ ...@@ -249,7 +249,8 @@
}); });
return false return false
} }
this.msg.Fee = this.cash.Fee; this.msg.Fee = this.cash.WithdrawFee*0.01*this.msg.AppliedMoney;
uni.showNavigationBarLoading(); uni.showNavigationBarLoading();
this.request2( this.request2(
{ {
...@@ -265,6 +266,9 @@ ...@@ -265,6 +266,9 @@
icon: "none" icon: "none"
}); });
this.init() this.init()
uni.navigateTo({
url: '/pages/cash-detail/cash-detail'
});
} }
); );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment