123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- <template>
- <view class="container">
- <!-- 自定义导航栏 -->
- <view class="custom-navbar">
- <view class="back-btn" @click="goBack">
- <image src="" mode="aspectFit"></image>
- </view>
- <view class="title">全部交易记录</view>
- </view>
- <!-- 交易记录列表 -->
- <view class="transaction-list">
- <view class="transaction-item" v-for="item in transactions" :key="item.id" @click="viewDetail(item)">
- <view class="left">
- <view class="type">{{getTypeText(item.transactionType)}}</view>
- <view class="time">{{item.createTime}}</view>
- <view class="order-no" v-if="item.orderNo">订单: {{item.orderNo}}</view>
- </view>
- <view class="right" :class="{'income': item.amount > 0, 'expense': item.amount < 0}">
- {{item.amount > 0 ? '+' : ''}}{{formatMoney(item.amount)}}
- </view>
- </view>
- <view class="load-more" @click="loadMore" v-if="hasMore">
- {{loading ? '加载中...' : '加载更多'}}
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- transactions: [],
- page: 1,
- pageSize: 15,
- loading: false,
- hasMore: true
- };
- },
- onLoad() {
- this.loadTransactions();
- },
- methods: {
- goBack() {
- uni.navigateBack();
- },
- loadTransactions() {
- if (this.loading) return;
- this.loading = true;
- this.request("get", "rider/wallet/transactions", this.$store.state.token, {
- page: this.page,
- size: this.pageSize
- }).then(res => {
- if (res.code === 200) {
- this.transactions = [...this.transactions, ...res.rows];
- this.hasMore = this.transactions.length < res.total;
- }
- }).finally(() => {
- this.loading = false;
- });
- },
- loadMore() {
- if (this.hasMore && !this.loading) {
- this.page++;
- this.loadTransactions();
- }
- },
- viewDetail(item) {
- uni.navigateTo({
- url: `/pages/wallet/detail?id=${item.id}`
- });
- },
- formatMoney(amount) {
- return Number(amount || 0).toFixed(2);
- },
- getTypeText(type) {
- const types = {
- 1: '收入',
- 2: '支出',
- 3: '提现',
- 4: '退款'
- };
- return types[type] || '交易';
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .container {
- background-color: #f7f7f7;
- min-height: 100vh;
- }
- .custom-navbar {
- display: flex;
- align-items: center;
- height: 88rpx;
- padding: 0 30rpx;
- background-color: #fff;
- border-bottom: 1rpx solid #f0f0f0;
- .back-btn {
- width: 40rpx;
- height: 40rpx;
- margin-right: 20rpx;
- image {
- width: 100%;
- height: 100%;
- }
- }
- .title {
- font-size: 34rpx;
- font-weight: bold;
- }
- }
- .transaction-list {
- padding: 20rpx;
- .transaction-item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 30rpx;
- margin-bottom: 20rpx;
- background-color: #fff;
- border-radius: 12rpx;
- box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.05);
- .left {
- flex: 1;
- .type {
- font-size: 30rpx;
- color: #333;
- margin-bottom: 10rpx;
- }
- .time,
- .order-no {
- font-size: 24rpx;
- color: #999;
- }
- .order-no {
- margin-top: 5rpx;
- }
- }
- .right {
- font-size: 32rpx;
- font-weight: bold;
- &.income {
- color: #4caf50;
- }
- &.expense {
- color: #f44336;
- }
- }
- }
- .load-more {
- text-align: center;
- padding: 30rpx;
- color: #4a90e2;
- font-size: 28rpx;
- }
- }
- </style>
|