387 lines
9.4 KiB
Vue
387 lines
9.4 KiB
Vue
<template>
|
||
<view class="page">
|
||
<custom-navbar title="捐款记录" />
|
||
<tile-grid />
|
||
<view class="header" :style="{ backgroundColor: CommonEnum.BASE_COLOR }">
|
||
<view class="search-filter-row">
|
||
<search-box
|
||
v-model="searchKeyword"
|
||
:width="'100%'"
|
||
placeholder="请输入搜索关键词"
|
||
btn-text="搜索"
|
||
@search="onSearch"
|
||
/>
|
||
<view class="filter-btn" @click="onFilter">
|
||
<image class="filter-icon" :src="CommonEnum.FILTER" mode="aspectFit" />
|
||
<text class="filter-text">筛选</text>
|
||
</view>
|
||
</view>
|
||
|
||
<!-- 项目描述 -->
|
||
<view class="project-info">
|
||
<text class="project-title">始建"乾峰寺"(初建)</text>
|
||
<text class="project-desc">天王殿为"三门"内第一殿,正中供奉弥勒菩萨,弥勒菩萨背后供奉韦驮菩萨,东西两侧为四大天王。面阔五间,采用歇山式重檐建筑,装饰剪瓷,具有浓厚的南方特色,使殿堂显得极其庄严肃穆。四大天王像于1981年重塑时,采用国家级"非遗"漆线雕工艺装饰。此殿于1925年重修,2020年重建。</text>
|
||
</view>
|
||
|
||
<!-- 捐款统计区域 -->
|
||
<view class="donation-summary">
|
||
<view class="summary-item">
|
||
<text class="summary-label">总造价(元)</text>
|
||
<text class="summary-value">{{ totalAmount.toLocaleString() }}</text>
|
||
</view>
|
||
<view class="summary-item">
|
||
<text class="summary-label">参与捐款人次</text>
|
||
<text class="summary-value">{{ participantCount.toLocaleString() }}</text>
|
||
</view>
|
||
</view>
|
||
|
||
<!-- <!– 刷新提示 –>-->
|
||
<!-- <view class="refresh-tip" @click="refreshData">-->
|
||
<!-- <text class="tip-text">下列信息实时更新,可</text>-->
|
||
<!-- <text class="refresh-text">点击刷新</text>-->
|
||
<!-- <image class="refresh-icon" :src="CommonEnum.REFRESH" mode="aspectFit" />-->
|
||
<!-- </view>-->
|
||
|
||
<!-- 捐款记录列表 -->
|
||
<view class="donation-list">
|
||
<view class="list-header">
|
||
<text class="header-item">编号</text>
|
||
<text class="header-item">姓名</text>
|
||
<text class="header-item">捐款金额(元)</text>
|
||
<text class="header-item">捐款时间</text>
|
||
</view>
|
||
<view class="list-item" v-for="(item, index) in donationList" :key="index">
|
||
<text class="item-id">{{ item.id }}</text>
|
||
<text class="item-name">{{ item.name }}</text>
|
||
<text class="item-amount">{{ item.amount.toLocaleString() }}</text>
|
||
<text class="item-time">{{ item.time }}</text>
|
||
</view>
|
||
</view>
|
||
|
||
<status-display
|
||
v-if="loading"
|
||
type="loading"
|
||
loading-text="加载中..."
|
||
/>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import CustomNavbar from "../../components/custom-navbar/custom-navbar.vue";
|
||
import TileGrid from "../../components/tile-grid/tile-grid.vue";
|
||
import CommonEnum from "../../enum/common";
|
||
import StatusDisplay from "../../components/status-display/status-display.vue";
|
||
import SearchBox from "../../components/search-box/search-box.vue";
|
||
import { getDonorList } from '@/api/donor/donor.js';
|
||
|
||
export default {
|
||
components: {
|
||
CustomNavbar,
|
||
TileGrid,
|
||
StatusDisplay,
|
||
SearchBox
|
||
},
|
||
data() {
|
||
return {
|
||
CommonEnum,
|
||
loading: false,
|
||
searchKeyword: '',
|
||
donationList: [],
|
||
formedId: '', // 建制ID
|
||
// 分页参数
|
||
pageNum: 1,
|
||
pageSize: 10,
|
||
hasMore: true
|
||
}
|
||
},
|
||
computed: {
|
||
// 计算总造价(所有捐款金额的总和)
|
||
totalAmount() {
|
||
return this.donationList.reduce((sum, item) => sum + item.amount, 0)
|
||
},
|
||
// 计算参与捐款人次(捐款记录的数量)
|
||
participantCount() {
|
||
return this.donationList.length
|
||
}
|
||
},
|
||
onLoad(options) {
|
||
// 获取页面参数
|
||
if (options.formedId) {
|
||
this.formedId = options.formedId
|
||
}
|
||
// 页面加载时获取数据
|
||
this.loadDonationRecords()
|
||
},
|
||
methods: {
|
||
onSearch(val) {
|
||
// 搜索逻辑
|
||
console.log('搜索内容:', val)
|
||
this.pageNum = 1 // 重置页码
|
||
this.loadDonationRecords(val)
|
||
},
|
||
onFilter() {
|
||
// 筛选逻辑
|
||
uni.showToast({ title: '筛选功能开发中', icon: 'none' })
|
||
},
|
||
// 获取捐款记录API
|
||
async loadDonationRecords(keyword = '') {
|
||
this.loading = true
|
||
try {
|
||
const params = {
|
||
formedId: this.formedId,
|
||
pageNum: this.pageNum,
|
||
pageSize: this.pageSize,
|
||
minAmount: 1,
|
||
maxAmount: 10000,
|
||
sortAmount: 'amount',
|
||
orderAmount: 'asc',
|
||
sortTime: 'time',
|
||
orderTime: 'desc'
|
||
}
|
||
|
||
// 如果有搜索关键词,添加姓名搜索
|
||
if (keyword) {
|
||
params.realName = keyword
|
||
}
|
||
|
||
const response = await getDonorList(params)
|
||
|
||
if (response.code === 200) {
|
||
// 转换数据格式
|
||
const newData = response.data.map(item => ({
|
||
id: item.id,
|
||
name: item.realName,
|
||
amount: item.amount,
|
||
time: this.formatDate(item.donationDate)
|
||
}))
|
||
|
||
// 如果是第一页,直接替换数据
|
||
if (this.pageNum === 1) {
|
||
this.donationList = newData
|
||
} else {
|
||
// 如果是加载更多,追加数据
|
||
this.donationList = [...this.donationList, ...newData]
|
||
}
|
||
|
||
// 判断是否还有更多数据
|
||
this.hasMore = newData.length === this.pageSize
|
||
} else {
|
||
uni.showToast({
|
||
title: response.msg || '获取数据失败',
|
||
icon: 'none'
|
||
})
|
||
}
|
||
|
||
} catch (error) {
|
||
console.error('获取捐款记录失败:', error)
|
||
uni.showToast({
|
||
title: '获取数据失败',
|
||
icon: 'none'
|
||
})
|
||
} finally {
|
||
this.loading = false
|
||
}
|
||
},
|
||
|
||
// 格式化日期
|
||
formatDate(dateStr) {
|
||
if (!dateStr) return ''
|
||
const date = new Date(dateStr)
|
||
const year = date.getFullYear()
|
||
const month = String(date.getMonth() + 1).padStart(2, '0')
|
||
const day = String(date.getDate()).padStart(2, '0')
|
||
return `${year}/${month}/${day}`
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss">
|
||
page {
|
||
background: #F5F0E7;
|
||
}
|
||
.header {
|
||
width: 100%;
|
||
min-height: 100vh;
|
||
display: flex;
|
||
align-items: flex-start;
|
||
flex-direction: column;
|
||
padding: 0 15rpx 0 15rpx;
|
||
}
|
||
.search-filter-row {
|
||
width: 100%;
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: center;
|
||
margin: 10rpx 0 10rpx 0;
|
||
padding: 0 20rpx;
|
||
}
|
||
.search-filter-row search-box {
|
||
flex: 1;
|
||
}
|
||
.filter-btn {
|
||
display: flex;
|
||
align-items: center;
|
||
margin-left: 20rpx;
|
||
padding: 0 16rpx;
|
||
height: 70rpx;
|
||
border-radius: 10rpx;
|
||
cursor: pointer;
|
||
}
|
||
.filter-icon {
|
||
width: 32rpx;
|
||
height: 32rpx;
|
||
margin-right: 8rpx;
|
||
}
|
||
.filter-text {
|
||
color: #6B4A1B;
|
||
font-size: 28rpx;
|
||
}
|
||
|
||
// 项目信息
|
||
.project-info {
|
||
width: 100%;
|
||
padding: 24rpx 20rpx;
|
||
background: #F3D2A3;
|
||
border-radius: 20rpx 20rpx 20rpx 20rpx;
|
||
border: 2rpx solid #F3D2A2;
|
||
}
|
||
.project-title {
|
||
display: block;
|
||
font-weight: 500;
|
||
font-size: 30rpx;
|
||
color: #522510;
|
||
line-height: 42rpx;
|
||
text-align: left;
|
||
font-style: normal;
|
||
text-transform: none;
|
||
}
|
||
.project-desc {
|
||
display: block;
|
||
font-family: AlibabaPuHuiTi, AlibabaPuHuiTi;
|
||
font-weight: 400;
|
||
font-size: 24rpx;
|
||
color: #522510;
|
||
line-height: 32rpx;
|
||
text-align: left;
|
||
font-style: normal;
|
||
text-transform: none;
|
||
}
|
||
|
||
// 捐款统计区域
|
||
.donation-summary {
|
||
width: 100%;
|
||
padding: 40rpx 24rpx;
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
position: relative;
|
||
}
|
||
.summary-item {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
flex: 1;
|
||
position: relative;
|
||
}
|
||
.summary-item:first-child::after {
|
||
content: '';
|
||
position: absolute;
|
||
right: 0;
|
||
top: 50%;
|
||
transform: translateY(-50%);
|
||
width: 1rpx;
|
||
height: 100%;
|
||
background: #ffffff;
|
||
}
|
||
.summary-label {
|
||
font-size: 28rpx;
|
||
color: #C7A26D;
|
||
margin-bottom: 20rpx;
|
||
text-align: center;
|
||
}
|
||
.summary-value {
|
||
font-size: 48rpx;
|
||
font-weight: bold;
|
||
color: #C7A26D;
|
||
text-align: center;
|
||
}
|
||
|
||
// 刷新提示
|
||
.refresh-tip {
|
||
width: 100%;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
margin-bottom: 20rpx;
|
||
cursor: pointer;
|
||
padding: 16rpx 0;
|
||
}
|
||
.tip-text {
|
||
font-size: 26rpx;
|
||
color: #999;
|
||
margin-right: 12rpx;
|
||
}
|
||
.refresh-text {
|
||
color: #E74C3C;
|
||
font-size: 26rpx;
|
||
margin-right: 8rpx;
|
||
}
|
||
.refresh-icon {
|
||
width: 26rpx;
|
||
height: 26rpx;
|
||
padding-bottom: 1rpx;
|
||
}
|
||
|
||
// 捐款记录列表
|
||
.donation-list {
|
||
width: 100%;
|
||
border-radius: 16rpx;
|
||
overflow: hidden;
|
||
padding-bottom: 106rpx;
|
||
}
|
||
.list-header {
|
||
display: flex;
|
||
padding: 28rpx 15rpx;
|
||
}
|
||
.header-item {
|
||
flex: 1;
|
||
font-size: 30rpx;
|
||
color: #643B27;
|
||
font-weight: bold;
|
||
text-align: center;
|
||
}
|
||
.list-item {
|
||
display: flex;
|
||
padding: 28rpx 20rpx;
|
||
}
|
||
.list-item:hover {
|
||
background: #FAFAFA;
|
||
}
|
||
.list-item:last-child {
|
||
border-bottom: none;
|
||
}
|
||
.item-id, .item-name, .item-amount, .item-time {
|
||
flex: 1;
|
||
font-size: 28rpx;
|
||
text-align: center;
|
||
line-height: 1.5;
|
||
}
|
||
.item-id {
|
||
color: #666;
|
||
font-weight: 500;
|
||
}
|
||
.item-name {
|
||
color: #333;
|
||
font-weight: 500;
|
||
}
|
||
.item-amount {
|
||
color: #E74C3C;
|
||
font-weight: bold;
|
||
}
|
||
.item-time {
|
||
color: #666;
|
||
font-size: 26rpx;
|
||
}
|
||
</style> |