- 修复 API 返回码判断,兼容 code 为 0 的情况,增强接口健壮性 - 设计提现页面四层结构:余额卡片、提现输入区、规则区域和底部按钮 - 规则区域采用红色标题栏及两列网格显示七项参数,并列出七条详细规则,全部有默认 fallback,确保无后端时规则完整展示 - 优化提现金额输入提示,支持全部提现功能,显示手续费信息及优惠状态 - 调整样式细节,改用 #f5f6fa 背景色,卡片圆角加大,字体及布局更美观清晰 - 修正首页 tabBar 页面列表,去除积分页,避免入口冲突 - 修改用户中心积分入口为页面跳转,增强导航逻辑一致性 - 更新钱包页面快捷操作按钮,统一使用页面跳转,优化用户交互体验
268 lines
10 KiB
TypeScript
268 lines
10 KiB
TypeScript
import React, { useState, useEffect } from 'react'
|
||
import { View, Text, ScrollView, Swiper, SwiperItem, Image } from '@tarojs/components'
|
||
import Taro from '@tarojs/taro'
|
||
import { useUser } from '@/hooks/useUser'
|
||
import { useScrollHeight } from '@/hooks/useScrollHeight'
|
||
import { listCmsAd } from '@/api/cms/cmsAd'
|
||
import { listCmsArticle } from '@/api/cms/cmsArticle'
|
||
import { pageShopGoods } from '@/api/shop/shopGoods'
|
||
import type { CmsAd } from '@/api/cms/cmsAd/model'
|
||
import type { CmsArticle } from '@/api/cms/cmsArticle/model'
|
||
import type { ShopGoods } from '@/api/shop/shopGoods/model'
|
||
|
||
definePageConfig({
|
||
navigationBarTitleText: '首页',
|
||
})
|
||
|
||
const IndexPage: React.FC = () => {
|
||
const { user, isLoggedIn } = useUser()
|
||
const [banners, setBanners] = useState<CmsAd[]>([])
|
||
const [announcements, setAnnouncements] = useState<CmsArticle[]>([])
|
||
const [hotProducts, setHotProducts] = useState<ShopGoods[]>([])
|
||
const [loading, setLoading] = useState(true)
|
||
const scrollHeight = useScrollHeight(44)
|
||
|
||
|
||
const categories = ['全部', '球拍', '球鞋', '服装', '配件']
|
||
|
||
// 功能入口(8个)
|
||
const featureEntries = [
|
||
{ icon: '🎁', label: '全部商品', url: '/pages/shop/index' },
|
||
{ icon: '🎯', label: '限时秒杀', url: '/pages/shop/seckill-list/index' },
|
||
{ icon: '🎫', label: '领券中心', url: '/pages/index/coupon-center/index' },
|
||
{ icon: '⭐', label: '我的收藏', url: '/pages/user/favorite-list/index' },
|
||
{ icon: '👑', label: '会员中心', url: '/pages/user/member/index' },
|
||
{ icon: '💰', label: '积分商城', url: '/pages/points/index' },
|
||
{ icon: '🏪', label: '门店信息', url: '/pages/store/list/index' },
|
||
{ icon: '❓', label: '帮助中心', url: '/pages/user/help-center/index' },
|
||
]
|
||
|
||
// 获取轮播图
|
||
useEffect(() => {
|
||
const fetchBanners = async () => {
|
||
try {
|
||
const data = await listCmsAd({ adType: 'banner', status: 0 })
|
||
setBanners(data || [])
|
||
} catch (e) {
|
||
console.error('获取轮播图失败:', e)
|
||
}
|
||
}
|
||
|
||
const fetchAnnouncements = async () => {
|
||
try {
|
||
const data = await listCmsArticle({ category: 'notice', status: 1 })
|
||
setAnnouncements(data || [])
|
||
} catch (e) {
|
||
console.error('获取公告失败:', e)
|
||
} finally {
|
||
setLoading(false)
|
||
}
|
||
}
|
||
|
||
fetchBanners()
|
||
fetchAnnouncements()
|
||
fetchHotProducts()
|
||
}, [])
|
||
|
||
// 获取热销商品
|
||
const fetchHotProducts = async () => {
|
||
try {
|
||
const res = await pageShopGoods({ page: 1, limit: 4, status: 0, recommend: 1 })
|
||
if (res?.list) {
|
||
setHotProducts(res.list)
|
||
}
|
||
} catch (e) {
|
||
console.error('获取热销商品失败:', e)
|
||
}
|
||
}
|
||
|
||
const handleMessageClick = () => {
|
||
if (!isLoggedIn) {
|
||
Taro.navigateTo({ url: '/passport/login' })
|
||
return
|
||
}
|
||
Taro.navigateTo({ url: '/pages/index/notification' })
|
||
}
|
||
|
||
// tabBar 页面列表
|
||
const tabBarPages = ['/pages/index/index', '/pages/shop/index', '/pages/user/user']
|
||
|
||
const handleFeatureClick = (url: string) => {
|
||
if (tabBarPages.includes(url)) {
|
||
Taro.switchTab({ url })
|
||
} else {
|
||
Taro.navigateTo({ url })
|
||
}
|
||
}
|
||
|
||
return (
|
||
<View className='min-h-screen bg-gray-50'>
|
||
{/* 顶部搜索栏 */}
|
||
<View className='flex items-center px-3 py-2 bg-white'>
|
||
<View className='flex-1 mx-2'>
|
||
<View
|
||
className='flex items-center bg-gray-100 rounded-full px-3 py-2'
|
||
onClick={() => Taro.navigateTo({ url: '/pages/index/search' })}
|
||
>
|
||
<Text className='text-gray-400 text-sm mr-2'>🔍</Text>
|
||
<Text className='text-gray-400 text-sm flex-1'>搜索商品</Text>
|
||
</View>
|
||
</View>
|
||
<View onClick={handleMessageClick}>
|
||
<Text className='text-xl'>🔔</Text>
|
||
{isLoggedIn && (
|
||
<View className='absolute top-0 right-0 w-2 h-2 bg-red-500 rounded-full' />
|
||
)}
|
||
</View>
|
||
</View>
|
||
|
||
<ScrollView scrollY style={{ height: scrollHeight }}>
|
||
{/* 轮播图 */}
|
||
<View className='mx-3 mt-2 rounded-lg overflow-hidden'>
|
||
{banners.length > 0 ? (
|
||
<Swiper
|
||
autoplay
|
||
interval={3000}
|
||
className='rounded-lg'
|
||
style={{ height: '160px' }}
|
||
>
|
||
{banners.map(item => (
|
||
<SwiperItem key={item.adId}>
|
||
<Image
|
||
className='w-full h-full'
|
||
src={item.imageList?.[0]?.url || item.image || ''}
|
||
mode='aspectFill'
|
||
onClick={() => {
|
||
if (item.path) Taro.navigateTo({ url: item.path })
|
||
}}
|
||
/>
|
||
</SwiperItem>
|
||
))}
|
||
</Swiper>
|
||
) : (
|
||
<View className='w-full bg-green-50 flex items-center justify-center' style={{ height: '160px' }}>
|
||
<Text className='text-gray-400 text-sm'>暂无轮播图</Text>
|
||
</View>
|
||
)}
|
||
</View>
|
||
|
||
{/* 功能入口网格 */}
|
||
<View className='mx-3 mt-3 p-3 bg-white rounded-lg'>
|
||
<View className='grid grid-cols-4 gap-2'>
|
||
{featureEntries.map(item => (
|
||
<View
|
||
key={item.label}
|
||
className='flex flex-col items-center py-2'
|
||
onClick={() => handleFeatureClick(item.url)}
|
||
>
|
||
<Text className='text-2xl mb-1'>{item.icon}</Text>
|
||
<Text className='text-xs text-gray-600'>{item.label}</Text>
|
||
</View>
|
||
))}
|
||
</View>
|
||
</View>
|
||
|
||
{/* 公告栏 */}
|
||
{announcements.length > 0 && (
|
||
<View className='mx-3 mt-3 px-3 py-2 bg-yellow-50 rounded-lg flex items-center' style={{ display: 'none' }}>
|
||
<Text className='text-xs text-yellow-600 font-medium mr-2'>公告</Text>
|
||
<Swiper
|
||
autoplay
|
||
direction='vertical'
|
||
interval={3000}
|
||
className='flex-1'
|
||
style={{ height: '20px' }}
|
||
>
|
||
{announcements.map(item => (
|
||
<SwiperItem key={item.articleId}>
|
||
<Text
|
||
className='text-xs text-gray-600 truncate'
|
||
onClick={() => Taro.navigateTo({ url: `/pages/index/article-detail?id=${item.articleId}` })}
|
||
>
|
||
{item.title}
|
||
</Text>
|
||
</SwiperItem>
|
||
))}
|
||
</Swiper>
|
||
</View>
|
||
)}
|
||
|
||
{/* 分类导航 */}
|
||
<View className='mx-3 mt-3 p-3 bg-white rounded-lg' style={{ display: 'none' }}>
|
||
<Text className='text-base font-medium text-gray-800 mb-3 block'>商品分类</Text>
|
||
<View className='flex justify-around'>
|
||
{categories.map((item) => (
|
||
<View
|
||
key={item}
|
||
className='flex flex-col items-center'
|
||
onClick={() => Taro.navigateTo({ url: '/pages/shop/category' })}
|
||
>
|
||
<View className='w-10 h-10 rounded-full bg-gray-100 flex items-center justify-center mb-1'>
|
||
<Text className='text-xs text-gray-500'>{item.slice(0, 1)}</Text>
|
||
</View>
|
||
<Text className='text-xs text-gray-600'>{item}</Text>
|
||
</View>
|
||
))}
|
||
</View>
|
||
</View>
|
||
|
||
{/* 热销推荐 */}
|
||
<View className='mx-3 mt-3 mb-4'>
|
||
<View className='flex justify-between items-center mb-3'>
|
||
<Text className='text-base font-medium text-gray-800 block'>热销推荐</Text>
|
||
<Text
|
||
className='text-xs text-gray-400 block'
|
||
onClick={() => Taro.switchTab({ url: '/pages/shop/index' })}
|
||
>
|
||
查看更多 {'>'}
|
||
</Text>
|
||
</View>
|
||
<View className='grid grid-cols-2 gap-2'>
|
||
{hotProducts.length > 0 ? (
|
||
hotProducts.map((item) => (
|
||
<View
|
||
key={item.goodsId}
|
||
className='bg-white rounded-lg overflow-hidden'
|
||
onClick={() => Taro.navigateTo({ url: `/pages/shop/product-detail?id=${item.goodsId}` })}
|
||
>
|
||
<View className='w-full' style={{ paddingTop: '100%', position: 'relative' }}>
|
||
{item.image ? (
|
||
<Image
|
||
style={{ position: 'absolute', top: 0, left: 0, width: '100%', height: '100%' }}
|
||
src={item.image}
|
||
mode='aspectFill'
|
||
/>
|
||
) : (
|
||
<View style={{ position: 'absolute', top: 0, left: 0, width: '100%', height: '100%' }} className='bg-gray-100 flex items-center justify-center'>
|
||
<Text className='text-xs text-gray-300'>暂无图片</Text>
|
||
</View>
|
||
)}
|
||
</View>
|
||
<View className='p-2'>
|
||
<Text className='text-sm text-gray-700 truncate block'>{item.goodsName || item.name}</Text>
|
||
<View className='flex items-center mt-1'>
|
||
<Text className='text-sm font-bold text-red-500 mr-1'>¥{item.price || '0'}</Text>
|
||
{item.salePrice && item.salePrice !== item.price && (
|
||
<Text className='text-xs text-gray-400 line-through'>¥{item.salePrice}</Text>
|
||
)}
|
||
</View>
|
||
{item.sales !== undefined && item.sales > 0 && (
|
||
<Text className='text-xs text-gray-400 mt-1'>已售 {item.sales}</Text>
|
||
)}
|
||
</View>
|
||
</View>
|
||
))
|
||
) : (
|
||
<View className='col-span-2 py-8 text-center'>
|
||
<Text className='text-sm text-gray-400'>暂无热销商品</Text>
|
||
</View>
|
||
)}
|
||
</View>
|
||
</View>
|
||
</ScrollView>
|
||
</View>
|
||
)
|
||
}
|
||
|
||
export default IndexPage
|