|
|
@@ -4,7 +4,7 @@
|
|
|
<view class="header-box"></view>
|
|
|
<view class="header-title">
|
|
|
<text style="margin-top: 4%;">已提现(元)</text>
|
|
|
- <text style="margin-top: 2%;font-size: 36rpx;">{{cashObj.totality || '-'}}</text>
|
|
|
+ <text style="margin-top: 2%;font-size: 36rpx;">{{cashObj.totality || '0'}}</text>
|
|
|
<view class="apply-cash-box" @click.stop="goApplyCash">
|
|
|
<text>申请提现</text>
|
|
|
<image src="/static/arrow-go2.png" mode=""></image>
|
|
|
@@ -26,7 +26,7 @@
|
|
|
</view>
|
|
|
<view class="display-column">
|
|
|
<view class="count-sum">
|
|
|
- {{item.money || '-'}}
|
|
|
+ {{item.money || '0'}}
|
|
|
</view>
|
|
|
<view class="count-sum" style="color: #ccc;">
|
|
|
{{item.status === '1' ? '已到账' : '进行中'}}
|
|
|
@@ -48,30 +48,30 @@ export default {
|
|
|
title: 'selfCenter',
|
|
|
cashObj:{},
|
|
|
cashOutList: [
|
|
|
- {
|
|
|
- money: '28.35',
|
|
|
- time: '2019-02-14 00:00',
|
|
|
- status:'进行中',
|
|
|
- id: 1
|
|
|
- },
|
|
|
- {
|
|
|
- money: '66.12',
|
|
|
- time: '2019-02-15 00:00',
|
|
|
- status:'已到账',
|
|
|
- id: 2
|
|
|
- },
|
|
|
- {
|
|
|
- money: '32.15',
|
|
|
- time: '2019-02-15 01:00',
|
|
|
- status:'进行中',
|
|
|
- id:3
|
|
|
- },
|
|
|
- {
|
|
|
- money: '12.00',
|
|
|
- time: '2019-02-16 00:00',
|
|
|
- status:'已到账',
|
|
|
- id: 4
|
|
|
- }
|
|
|
+ // {
|
|
|
+ // money: '28.35',
|
|
|
+ // time: '2019-02-14 00:00',
|
|
|
+ // status:'进行中',
|
|
|
+ // id: 1
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // money: '66.12',
|
|
|
+ // time: '2019-02-15 00:00',
|
|
|
+ // status:'已到账',
|
|
|
+ // id: 2
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // money: '32.15',
|
|
|
+ // time: '2019-02-15 01:00',
|
|
|
+ // status:'进行中',
|
|
|
+ // id:3
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // money: '12.00',
|
|
|
+ // time: '2019-02-16 00:00',
|
|
|
+ // status:'已到账',
|
|
|
+ // id: 4
|
|
|
+ // }
|
|
|
]
|
|
|
};
|
|
|
},
|