Files
xinlong-shop-taro/src/pages/records.tsx
赵忠林 f3886664f7 fix(api): 替换所有接口请求的域名为 guilixu-api.websoft.top
- 将获取 STS Token 的接口地址由 paopao-api 改为 guilixu-api
- 更新图片上传接口地址为新的 guilixu-api 域名
- 修改用户推广页面中邀请码链接和二维码接口的域名
- 更改注册页微信登录接口请求的域名为 guilixu-api
2026-06-16 17:15:59 +08:00

225 lines
8.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { View, Text, ScrollView } from '@tarojs/components';
import { useState, useEffect, useCallback } from 'react';
import { useDidShow } from '@tarojs/taro';
import Taro from '@tarojs/taro';
import NavBar from '@/components/NavBar';
import LoadMore from '@/components/common/LoadMore';
import EmptyState from '@/components/common/EmptyState';
import { pageShopInvoiceRecord } from '@/api/shop/shopInvoiceTitle';
import type { ShopInvoiceRecord, ShopInvoiceRecordParam } from '@/api/shop/shopInvoiceTitle/model';
import type { PageResult } from '@/api';
// 发票状态映射
const statusMap = {
0: { text: '待处理', color: 'text-orange-500', bgColor: 'bg-orange-100', textColor: 'text-orange-600' },
1: { text: '开票中', color: 'text-blue-500', bgColor: 'bg-blue-100', textColor: 'text-blue-600' },
2: { text: '已完成', color: 'text-green-500', bgColor: 'bg-green-100', textColor: 'text-green-600' },
3: { text: '失败', color: 'text-red-500', bgColor: 'bg-red-100', textColor: 'text-red-600' },
};
// 发票类型映射
const invoiceTypeMap = {
normal: { label: '普通发票', bgColor: 'bg-blue-100', textColor: 'text-blue-600' },
vat: { label: '增值税发票', bgColor: 'bg-orange-100', textColor: 'text-orange-600' },
};
export default function InvoiceRecordsPage() {
const [records, setRecords] = useState<ShopInvoiceRecord[]>([]);
const [loading, setLoading] = useState(true);
const [loadingMore, setLoadingMore] = useState(false);
const [hasMore, setHasMore] = useState(true);
const [page, setPage] = useState(1);
const [activeTab, setActiveTab] = useState<'all' | 'pending' | 'completed'>('all');
// 过滤后的记录
const filteredRecords = records.filter(record => {
if (activeTab === 'all') return true;
if (activeTab === 'pending') return record.status === 0 || record.status === 1;
if (activeTab === 'completed') return record.status === 2;
return true;
});
// 加载数据
const loadData = useCallback(async (pageNum: number = 1, isLoadMore = false) => {
if (isLoadMore) {
setLoadingMore(true);
} else {
setLoading(true);
}
try {
const params: ShopInvoiceRecordParam = {
page: pageNum,
limit: 10,
order: 'desc',
sort: 'createTime',
};
const result: PageResult<ShopInvoiceRecord> = await pageShopInvoiceRecord(params);
if (result && result.list) {
if (isLoadMore) {
setRecords(prev => [...prev, ...result.list]);
} else {
setRecords(result.list);
}
setHasMore(result.list.length >= 10);
setPage(pageNum);
}
} catch (e: any) {
console.error('获取发票记录失败:', e);
Taro.showToast({ title: e.message || '获取数据失败', icon: 'none' });
} finally {
setLoading(false);
setLoadingMore(false);
}
}, []);
// 下拉刷新
const onPullDownRefresh = useCallback(() => {
loadData(1).then(() => {
Taro.stopPullDownRefresh();
});
}, [loadData]);
// 上拉加载更多
const onReachBottom = useCallback(() => {
if (!loadingMore && hasMore) {
loadData(page + 1, true);
}
}, [loadingMore, hasMore, page, loadData]);
useEffect(() => {
loadData(1);
}, []);
// 格式化金额
const formatMoney = (money: number | undefined) => {
return `¥${(money || 0).toFixed(2)}`;
};
// 格式化时间
const formatDate = (dateStr: string | undefined) => {
if (!dateStr) return '';
const date = new Date(dateStr);
const month = String(date.getMonth() + 1).padStart(2, '0');
const day = String(date.getDate()).padStart(2, '0');
const hour = String(date.getHours()).padStart(2, '0');
const minute = String(date.getMinutes()).padStart(2, '0');
return `${date.getFullYear()}-${month}-${day} ${hour}:${minute}`;
};
// 获取状态信息
const getStatusInfo = (status: number | undefined) => {
return statusMap[status as keyof typeof statusMap] || statusMap[0];
};
// 获取类型信息
const getTypeInfo = (invoiceType: string | undefined) => {
return invoiceTypeMap[invoiceType as keyof typeof invoiceTypeMap] || invoiceTypeMap.normal;
};
// 查看发票
const handleViewInvoice = (record: ShopInvoiceRecord) => {
if (record.invoiceUrl) {
Taro.previewImage({ urls: [record.invoiceUrl] });
} else {
Taro.showToast({ title: '暂无发票', icon: 'none' });
}
};
return (
<View className="min-h-screen bg-gray-100">
<NavBar title="发票记录" />
{/* 标签切换 */}
<View className="bg-white flex">
{[
{ key: 'all', label: '全部' },
{ key: 'pending', label: '待处理' },
{ key: 'completed', label: '已完成' }
].map(tab => (
<View
key={tab.key}
className={`flex-1 py-3 text-center relative ${
activeTab === tab.key ? 'text-red-500 font-medium' : 'text-gray-500'
}`}
onClick={() => setActiveTab(tab.key as any)}
>
<Text>{tab.label}</Text>
{activeTab === tab.key && (
<View className="absolute bottom-0 w-8 bg-red-500 rounded-t" style={{ left: '50%', transform: 'translateX(-50%)', height: '4px' }} />
)}
</View>
))}
</View>
{/* 记录列表 */}
{loading ? (
<LoadMore loading />
) : filteredRecords.length === 0 ? (
<EmptyState message="暂无发票记录" />
) : (
<ScrollView
scrollY
className="p-4"
onScrollToLower={onReachBottom}
onScrollUpperThreshold={50}
>
{filteredRecords.map(record => {
const statusInfo = getStatusInfo(record.status);
const typeInfo = getTypeInfo(record.invoiceType);
return (
<View key={record.id} className="bg-white rounded-lg p-4 mb-4">
<View className="flex justify-between items-start mb-3">
<View className="flex-1">
<View className="flex items-center mb-2">
<Text className={`text-xs px-2 py-1 rounded mr-2 ${typeInfo.bgColor} ${typeInfo.textColor}`}>
{typeInfo.label}
</Text>
<Text className={`text-xs px-2 py-1 rounded mr-2 ${statusInfo.bgColor} ${statusInfo.textColor}`}>
{statusInfo.text}
</Text>
</View>
<Text className="text-lg font-medium">{record.titleName}</Text>
{record.orderNo && (
<Text className="text-xs text-gray-500 mt-1 block">{record.orderNo}</Text>
)}
</View>
<Text className="text-xl font-bold text-red-500">{formatMoney(record.amount)}</Text>
</View>
<View className="text-sm text-gray-500 flex flex-col" style={{ gap: '4px' }}>
<View className="flex justify-between">
<Text></Text>
<Text>{formatDate(record.applyTime)}</Text>
</View>
{record.invoiceNo && (
<View className="flex justify-between">
<Text></Text>
<Text>{record.invoiceNo}</Text>
</View>
)}
</View>
{record.status === 2 && (
<View className="mt-3 pt-3 border-t border-gray-100 flex justify-end">
<View
className="px-4 py-2 bg-blue-500 text-white rounded-full"
onClick={() => handleViewInvoice(record)}
>
<Text className="text-sm"></Text>
</View>
</View>
)}
</View>
);
})}
<LoadMore loading={loadingMore} hasMore={hasMore} />
</ScrollView>
)}
</View>
);
}