Some checks failed
Docker Build & Deploy / Build Docker Image (push) Failing after 1m10s
Docker Build & Deploy / Deploy to Production (push) Has been skipped
Docker Build & Deploy / Cleanup Dangling Images (push) Successful in 1s
Docker Build & Deploy / WeChat Notification (push) Successful in 1s
247 lines
5.9 KiB
Vue
247 lines
5.9 KiB
Vue
<template>
|
||
<div class="page-container-flex">
|
||
<!-- 顶部固定搜索框 -->
|
||
<div class="top-search-bar">
|
||
<van-search
|
||
v-model="searchKeyword"
|
||
placeholder="搜索交易摘要、来源、卡号、分类"
|
||
shape="round"
|
||
@update:model-value="onSearchChange"
|
||
@clear="onSearchClear"
|
||
/>
|
||
</div>
|
||
|
||
<!-- 下拉刷新区域 -->
|
||
<van-pull-refresh v-model="refreshing" @refresh="onRefresh">
|
||
<!-- 加载提示 -->
|
||
<van-loading
|
||
v-if="loading && !(transactionList && transactionList.length)"
|
||
vertical
|
||
style="padding: 50px 0"
|
||
>
|
||
加载中...
|
||
</van-loading>
|
||
|
||
<!-- 交易记录列表 -->
|
||
<TransactionList
|
||
:transactions="transactionList"
|
||
:loading="loading"
|
||
:finished="finished"
|
||
:show-delete="true"
|
||
@load="onLoad"
|
||
@click="viewDetail"
|
||
@delete="
|
||
(id) => {
|
||
// 从当前的交易列表中移除该交易
|
||
transactionList.value = transactionList.value.filter((t) => t.id !== id)
|
||
}
|
||
"
|
||
/>
|
||
|
||
<!-- 底部安全距离 -->
|
||
<div style="height: calc(50px + env(safe-area-inset-bottom, 0px))" />
|
||
</van-pull-refresh>
|
||
|
||
<!-- 详情/编辑弹出层 -->
|
||
<TransactionDetail
|
||
v-model:show="detailVisible"
|
||
:transaction="currentTransaction"
|
||
@save="onDetailSave"
|
||
/>
|
||
</div>
|
||
</template>
|
||
|
||
<script setup>
|
||
import { ref, onMounted, onBeforeUnmount } from 'vue'
|
||
import { showToast } from 'vant'
|
||
import { getTransactionList, getTransactionDetail } from '@/api/transactionRecord'
|
||
import TransactionList from '@/components/TransactionList.vue'
|
||
import TransactionDetail from '@/components/TransactionDetail.vue'
|
||
|
||
const transactionList = ref([])
|
||
const loading = ref(false)
|
||
const refreshing = ref(false)
|
||
const finished = ref(false)
|
||
const pageIndex = ref(1)
|
||
const pageSize = 20
|
||
const total = ref(0)
|
||
const detailVisible = ref(false)
|
||
const currentTransaction = ref(null)
|
||
|
||
// 搜索相关
|
||
const searchKeyword = ref('')
|
||
let searchTimer = null
|
||
|
||
// 加载数据
|
||
const loadData = async (isRefresh = false) => {
|
||
if (isRefresh) {
|
||
pageIndex.value = 1
|
||
transactionList.value = []
|
||
finished.value = false
|
||
}
|
||
|
||
loading.value = true
|
||
try {
|
||
const params = {
|
||
pageIndex: pageIndex.value,
|
||
pageSize: pageSize
|
||
}
|
||
|
||
// 添加搜索关键词
|
||
if (searchKeyword.value) {
|
||
params.searchKeyword = searchKeyword.value
|
||
}
|
||
|
||
const response = await getTransactionList(params)
|
||
|
||
if (response.success) {
|
||
const newList = response.data || []
|
||
total.value = response.total || 0
|
||
|
||
if (isRefresh) {
|
||
transactionList.value = newList
|
||
} else {
|
||
transactionList.value = [...(transactionList.value || []), ...newList]
|
||
}
|
||
|
||
if (newList.length === 0 || newList.length < pageSize) {
|
||
finished.value = true
|
||
} else {
|
||
finished.value = false
|
||
pageIndex.value++
|
||
}
|
||
} else {
|
||
showToast(response.message || '加载数据失败')
|
||
finished.value = true
|
||
}
|
||
} catch (error) {
|
||
console.error('加载数据出错:', error)
|
||
showToast('加载数据出错: ' + (error.message || '未知错误'))
|
||
finished.value = true
|
||
} finally {
|
||
loading.value = false
|
||
refreshing.value = false
|
||
}
|
||
}
|
||
|
||
// 下拉刷新
|
||
const onRefresh = () => {
|
||
finished.value = false
|
||
transactionList.value = []
|
||
loadData(true)
|
||
}
|
||
|
||
// 搜索相关方法
|
||
const onSearchChange = () => {
|
||
// 防抖处理,用户停止输入500ms后自动搜索
|
||
if (searchTimer) {
|
||
clearTimeout(searchTimer)
|
||
}
|
||
searchTimer = setTimeout(() => {
|
||
onSearch()
|
||
}, 500)
|
||
}
|
||
|
||
const onSearch = () => {
|
||
// 重置分页状态并刷新数据
|
||
transactionList.value = []
|
||
finished.value = false
|
||
loadData(true)
|
||
}
|
||
|
||
const onSearchClear = () => {
|
||
searchKeyword.value = ''
|
||
onSearch()
|
||
}
|
||
|
||
// 加载更多
|
||
const onLoad = () => {
|
||
loadData(false)
|
||
}
|
||
|
||
// 查看详情
|
||
const viewDetail = async (transaction) => {
|
||
try {
|
||
const response = await getTransactionDetail(transaction.id)
|
||
if (response.success) {
|
||
currentTransaction.value = response.data
|
||
detailVisible.value = true
|
||
} else {
|
||
showToast(response.message || '获取详情失败')
|
||
}
|
||
} catch (error) {
|
||
console.error('获取详情出错:', error)
|
||
showToast('获取详情失败')
|
||
}
|
||
}
|
||
|
||
// 详情保存后的回调
|
||
const onDetailSave = async () => {
|
||
loadData(true)
|
||
}
|
||
|
||
// 删除功能由 TransactionList 组件内部处理,组件通过 :show-delete 启用
|
||
|
||
onMounted(async () => {
|
||
// 不需要手动调用 loadData,van-list 会自动触发 onLoad
|
||
})
|
||
|
||
// 监听全局删除事件,保持页面一致性
|
||
const onGlobalTransactionDeleted = () => {
|
||
// 如果在此页面,重新刷新当前列表以保持数据一致
|
||
transactionList.value = []
|
||
pageIndex.value = 1
|
||
finished.value = false
|
||
loadData(true)
|
||
}
|
||
|
||
window.addEventListener &&
|
||
window.addEventListener('transaction-deleted', onGlobalTransactionDeleted)
|
||
|
||
onBeforeUnmount(() => {
|
||
window.removeEventListener &&
|
||
window.removeEventListener('transaction-deleted', onGlobalTransactionDeleted)
|
||
})
|
||
|
||
// 外部新增/修改/批量更新时的刷新监听
|
||
const onGlobalTransactionsChanged = () => {
|
||
transactionList.value = []
|
||
pageIndex.value = 1
|
||
finished.value = false
|
||
loadData(true)
|
||
}
|
||
|
||
window.addEventListener &&
|
||
window.addEventListener('transactions-changed', onGlobalTransactionsChanged)
|
||
|
||
onBeforeUnmount(() => {
|
||
window.removeEventListener &&
|
||
window.removeEventListener('transactions-changed', onGlobalTransactionsChanged)
|
||
})
|
||
</script>
|
||
|
||
<style scoped>
|
||
:deep(.van-pull-refresh) {
|
||
flex: 1;
|
||
overflow-y: auto;
|
||
-webkit-overflow-scrolling: touch;
|
||
}
|
||
|
||
.top-search-bar {
|
||
background: var(--van-background-2);
|
||
padding: 4px 12px;
|
||
z-index: 100;
|
||
margin-top: 10px;
|
||
}
|
||
|
||
.top-search-bar :deep(.van-search) {
|
||
padding: 4px 0;
|
||
background: transparent;
|
||
}
|
||
|
||
/* 设置页面容器背景色 */
|
||
:deep(.van-nav-bar) {
|
||
background: transparent !important;
|
||
}
|
||
</style>
|