123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- <template>
- <view class="content">
- <view class="top">
- <view class="text1">我的余额(元)</view>
- <view class="hflex acenter ">
- <view class="money">{{money}}</view>
- <view class="money_btn" @click="toWithdraw">提现</view>
- </view>
- </view>
- <view class="list">
- <view class="list_title">收支明细</view>
- <block v-for="(item,index) in pageList" :key="index">
- <view class="list_item hflex acenter jbetween">
- <view class="vflex">
- <view class="text_style1">{{item.name}}</view>
- <view class="text_style2">{{item.date}}</view>
- </view>
- <view class="text_style3">-{{item.money}}</view>
- </view>
- </block>
- </view>
- </view>
- </template>
- <script>
- import $api from '@/static/js/api.js'
- var that = ''
- export default {
- data() {
- return {
- money: '348.98',
- pageList: [
- {
- id: 1,
- name: '银行卡提现',
- date: '2022-11-01 16:58:00',
- money: '79.34'
- },
- {
- id: 2,
- name: '银行卡提现',
- date: '2022-11-01 16:58:00',
- money: '79.34'
- }
- ]
- }
- },
- onLoad() {
- that = this
- },
- methods: {
- // 去提现
- toWithdraw() {
- $api.jump('/page_mine/pages/wallet/withdrawal')
- }
- },
- }
- </script>
- <style lang="scss" scoped>
- .content {
- padding: 20rpx 30rpx 0;
- .top {
- width: 100%;
- height: 244rpx;
- box-sizing: border-box;
- padding: 56rpx 40rpx 0;
- background: url('/static/images/comment/bg.png') no-repeat;
- background-size: 100%;
- .text1 {
- font-size: 24rpx;
- color: #fff;
- margin-bottom: 24rpx;
- }
- .money {
- font-size: 64rpx;
- color: #fff;
- margin-right: 36rpx;
- }
- .money_btn {
- width: 132rpx;
- height: 48rpx;
- border-radius: 34rpx;
- border: 1rpx solid #fff;
- text-align: center;
- line-height: 48rpx;
- font-size: 26rpx;
- color: #fff;
- }
- }
- .list {
- width: 100%;
- margin-top: 36rpx;
- .list_title {
- font-size: 30rpx;
- color: #333;
- }
- .list_item {
- width: 100%;
- box-sizing: border-box;
- padding: 28rpx 0;
- border-bottom: 1rpx solid #f4f4f4;
- .text_style1 {
- font-size: 26rpx;
- color: #666;
- margin-bottom: 8rpx;
- }
- .text_style2 {
- font-size: 22rpx;
- color: #bfbfbf;
- }
- .text_style3 {
- color: #ff2626;
- font-size: 30rpx;
- }
- }
- .list_item:nth-last-child(1) {
- border-bottom: none;
- }
- }
- }
- </style>
|