273 lines
7.1 KiB
Vue
273 lines
7.1 KiB
Vue
<template>
|
||
<pb-layout
|
||
navbar="inner"
|
||
class="wallet-wrap"
|
||
iconColor="#fff"
|
||
leftIcon="leftIcon"
|
||
color="#fff"
|
||
title="余额"
|
||
:bgStyle="bgStyle"
|
||
>
|
||
<view class="header-box ss-row-center ss-col-center">
|
||
<view class="card-box ss-flex ss-row-between ss-col-center">
|
||
<view class="ss-flex ss-flex-col ss-row-between ss-col-top ss-gap-40">
|
||
<view class="card-head ss-flex ss-col-center">
|
||
<view class="card-title ss-m-r-10">账户余额(元)</view>
|
||
<view
|
||
@tap="state.showMoney = !state.showMoney"
|
||
class="ss-eye-icon"
|
||
:class="state.showMoney ? 'cicon-eye' : 'cicon-eye-off'"
|
||
/>
|
||
</view>
|
||
|
||
<view class="money-num">{{ state.showMoney ? fen2yuan(userWallet.balance) : '*****' }}</view>
|
||
</view>
|
||
<button class="ss-reset-button topup-btn" @tap="peach.$router.go('/pages/user/wallet/withdraw')">
|
||
提现
|
||
</button>
|
||
</view>
|
||
</view>
|
||
|
||
<p-empty v-if="state.pagination.total === 0" :marginTop="40" text="暂无数据" icon="/static/data-empty.png" />
|
||
|
||
<!-- 钱包记录 -->
|
||
<view v-if="state.pagination.total > 0">
|
||
<view class="wallet-list ss-flex border-bottom" v-for="item in state.pagination.list" :key="item.id">
|
||
<view class="list-content">
|
||
<view class="title-box ss-flex ss-row-between ss-m-b-20">
|
||
<text class="title ss-line-1">
|
||
{{ item.title }}
|
||
</text>
|
||
<view class="money">
|
||
<text v-if="item.price >= 0" class="add">+{{ fen2yuan(item.price) }}</text>
|
||
<text v-else class="minus">{{ fen2yuan(item.price) }}</text>
|
||
</view>
|
||
</view>
|
||
<text class="time">
|
||
{{ peach.$helper.timeFormat(state.createTime, 'yyyy-mm-dd hh:MM:ss') }}
|
||
</text>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<uni-load-more
|
||
v-if="state.pagination.total > 0"
|
||
:status="state.loadStatus"
|
||
:content-text="{
|
||
contentdown: '上拉加载更多',
|
||
}"
|
||
/>
|
||
</pb-layout>
|
||
</template>
|
||
|
||
<script setup>
|
||
import { computed, reactive } from 'vue'
|
||
import { onLoad, onReachBottom } from '@dcloudio/uni-app'
|
||
import peach from '@/peach'
|
||
import dayjs from 'dayjs'
|
||
import _ from 'lodash'
|
||
import PayWalletApi from '@/peach/api/pay/wallet'
|
||
import { fen2yuan } from '@/peach/hooks/useGoods'
|
||
import { resetPagination } from '@/peach/utils'
|
||
|
||
const bgStyle = {
|
||
backgroundImage: '/static/bg-page.png',
|
||
imageType: 'local',
|
||
backgroundColor: '#fff',
|
||
description: '',
|
||
}
|
||
|
||
// const headerBg = peach.$url.css('/static/img/shop/user/wallet_card_bg.png')
|
||
|
||
// 数据
|
||
const state = reactive({
|
||
showMoney: false,
|
||
pagination: {
|
||
list: [],
|
||
total: 0,
|
||
pageNo: 1,
|
||
pageSize: 8,
|
||
},
|
||
loadStatus: '',
|
||
})
|
||
|
||
const userWallet = computed(() => peach.$store('user').userWallet)
|
||
|
||
// 获得钱包记录分页
|
||
async function getLogList() {
|
||
state.loadStatus = 'loading'
|
||
// const { data, code } = await PayWalletApi.getWalletTransactionPage({
|
||
// pageNo: state.pagination.pageNo,
|
||
// pageSize: state.pagination.pageSize,
|
||
|
||
// })
|
||
|
||
// state.pagination.list = _.concat(state.pagination.list, data.list)
|
||
// state.pagination.total = data.total
|
||
// state.loadStatus = state.pagination.list.length < state.pagination.total ? 'more' : 'noMore'
|
||
}
|
||
|
||
onLoad(() => {
|
||
getLogList()
|
||
// 刷新钱包的缓存
|
||
// peach.$store('user').getWallet()
|
||
})
|
||
|
||
onReachBottom(() => {
|
||
if (state.loadStatus === 'noMore') {
|
||
return
|
||
}
|
||
state.pagination.pageNo++
|
||
getLogList()
|
||
})
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
.header-box {
|
||
.card-box {
|
||
width: 100%;
|
||
min-height: 250rpx;
|
||
padding: 0 40rpx;
|
||
background-size: 100% 100%;
|
||
border-radius: 30rpx;
|
||
overflow: hidden;
|
||
position: relative;
|
||
z-index: 1;
|
||
box-sizing: border-box;
|
||
|
||
.card-head {
|
||
color: $white;
|
||
font-size: 30rpx;
|
||
}
|
||
|
||
.ss-eye-icon {
|
||
font-size: 40rpx;
|
||
color: $white;
|
||
}
|
||
|
||
.money-num {
|
||
font-size: 70rpx;
|
||
line-height: 70rpx;
|
||
font-weight: 500;
|
||
color: $white;
|
||
font-family: OPPOSANS;
|
||
}
|
||
|
||
.reduce-num {
|
||
font-size: 26rpx;
|
||
font-weight: 400;
|
||
color: $white;
|
||
}
|
||
|
||
.topup-btn {
|
||
width: 150rpx;
|
||
height: 60rpx;
|
||
line-height: 60rpx;
|
||
border-radius: 30px;
|
||
font-size: 26rpx;
|
||
font-weight: 500;
|
||
background-color: $white;
|
||
color: var(--ui-BG-Main);
|
||
}
|
||
}
|
||
}
|
||
|
||
// 筛选
|
||
|
||
.filter-box {
|
||
height: 114rpx;
|
||
background-color: $bg-page;
|
||
|
||
.total-box {
|
||
font-size: 24rpx;
|
||
font-weight: 500;
|
||
color: $dark-9;
|
||
}
|
||
|
||
.date-btn {
|
||
background-color: $white;
|
||
line-height: 54rpx;
|
||
border-radius: 27rpx;
|
||
padding: 0 20rpx;
|
||
font-size: 24rpx;
|
||
font-weight: 500;
|
||
color: $dark-6;
|
||
|
||
.ss-seldate-icon {
|
||
font-size: 50rpx;
|
||
color: $dark-9;
|
||
}
|
||
}
|
||
}
|
||
|
||
// tab
|
||
.wallet-tab-card {
|
||
.tab-item {
|
||
height: 80rpx;
|
||
position: relative;
|
||
|
||
.tab-title {
|
||
font-size: 30rpx;
|
||
}
|
||
|
||
.cur-tab-title {
|
||
font-weight: $font-weight-bold;
|
||
}
|
||
|
||
.tab-line {
|
||
width: 60rpx;
|
||
height: 6rpx;
|
||
border-radius: 6rpx;
|
||
position: absolute;
|
||
left: 50%;
|
||
transform: translateX(-50%);
|
||
bottom: 2rpx;
|
||
background-color: var(--ui-BG-Main);
|
||
}
|
||
}
|
||
}
|
||
|
||
// 钱包记录
|
||
.wallet-list {
|
||
padding: 30rpx;
|
||
background-color: #ffff;
|
||
|
||
.head-img {
|
||
width: 70rpx;
|
||
height: 70rpx;
|
||
border-radius: 50%;
|
||
background: $gray-c;
|
||
}
|
||
|
||
.list-content {
|
||
justify-content: space-between;
|
||
align-items: flex-start;
|
||
flex: 1;
|
||
|
||
.title {
|
||
font-size: 28rpx;
|
||
color: $dark-3;
|
||
width: 400rpx;
|
||
}
|
||
|
||
.time {
|
||
color: $gray-c;
|
||
font-size: 22rpx;
|
||
}
|
||
}
|
||
|
||
.money {
|
||
font-size: 28rpx;
|
||
font-weight: bold;
|
||
font-family: OPPOSANS;
|
||
|
||
.add {
|
||
color: var(--ui-BG-Main);
|
||
}
|
||
|
||
.minus {
|
||
color: $dark-3;
|
||
}
|
||
}
|
||
}
|
||
</style>
|