| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- <template>
- <view>
-
- <view class="header-box"></view>
- <view class="header-title">
- <text style="margin-top: 4%;">已提现(元)</text>
- <text style="margin-top: 2%;font-size: 36rpx;">165.25</text>
- <view class="apply-cash-box" @click.stop="goApplyCash">
- <text>申请提现</text>
- <image src="/static/arrow-go2.png" mode=""></image>
- </view>
- </view>
-
-
- <view class="count-deatil-box">
-
- <view class="count-detail-title">
- 提现明细
- </view>
-
- <view class="leader-info" v-for="item in teamList" :key='item.id'>
- <view class="leader-column">
- <view>
- <text style="font-size: 30rpx;">{{item.time}}</text>
- </view>
- </view>
- <view class="display-column">
- <view class="count-sum">
- {{item.money}}
- </view>
- <view class="count-sum" style="color: #ccc;">
- {{item.status}}
- </view>
- </view>
- </view>
-
- </view>
-
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- title: 'selfCenter',
- teamList: [
- {
- name: '晚霞',
- money: '28.35',
- time: '2019-02-14 00:00',
- status:'进行中',
- id: 1
- },
- {
- name: '午霞',
- money: '66.12',
- time: '2019-02-15 00:00',
- status:'已到账',
- id: 2
- },
- {
- name: '午霞A',
- money: '32.15',
- time: '2019-02-15 01:00',
- status:'进行中',
- id:3
- },
- {
- name: '午霞2',
- money: '12.00',
- time: '2019-02-16 00:00',
- status:'已到账',
- id: 4
- }
- ]
- };
- },
- onLoad() {
- },
- methods: {
- goApplyCash(){
- uni.navigateTo({
- url: '/pages/selfCenter/cashoutPage/applyPage/index',
- success: res => {},
- fail: () => {},
- complete: () => {}
- });
- }
- }
- };
- </script>
- <style>
-
-
- .header-box {
- width: 100%;
- height: 180rpx;
- background: #1a9ed3;
- }
-
- .header-title {
- width: 93%;
- height: 150rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- background: #fff;
- z-index: 99;
- border-radius: 10rpx;
- font-size: 30rpx;
- margin: -13% auto;
- margin-bottom: 3%;
- position: relative;
- }
- .count-sum {
- color: red;
- font-size: 28rpx;
- }
-
- .count-deatil-box {
- width: 93%;
- border-radius: 10rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- background: #fff;
- margin: 0 auto;
- }
- .count-detail-title {
- width: 89%;
- border-bottom: 1px solid #dbdbdb;
- padding: 10px;
- font-size: 32rpx;
- }
-
- .leader-info {
- width: 90%;
- display: flex;
- align-items: center;
- background: #fff;
- padding: 20rpx;
- border-bottom: 1px solid #ccc;
- }
- .leader-column {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- height: 90rpx;
- font-size: 28rpx;
- margin-right: 20%;
- width: 400rpx;
- line-height: 90rpx;
- }
- .display-column {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-around;
- }
- .apply-cash-box {
- position: absolute;
- right: 5px;
- top: 14px;
- display: flex;
- align-items: center
- }
- .apply-cash-box image {
- width: 48rpx;
- height: 48rpx;
- }
- </style>
|