fix(mp): 小程序页面优化 + E2E 测试报告更新

- 小程序各页面优化和修复
- 更新联调报告和 E2E 测试报告
- 更新 miniprogram wiki
This commit is contained in:
iven
2026-05-15 23:03:21 +08:00
parent ced1c0ad0c
commit c06e986090
24 changed files with 905 additions and 441 deletions

View File

@@ -57,7 +57,6 @@
font-weight: bold;
color: $tx;
line-height: 1.4;
display: block;
margin-bottom: 8px;
overflow: hidden;
text-overflow: ellipsis;

View File

@@ -4,6 +4,7 @@ import Taro, { useReachBottom } from '@tarojs/taro';
import { usePageData } from '@/hooks/usePageData';
import { listArticles, listCategories, Article, ArticleCategory } from '../../services/article';
import EmptyState from '../../components/EmptyState';
import ErrorState from '../../components/ErrorState';
import Loading from '../../components/Loading';
import { useElderClass } from '../../hooks/useElderClass';
import './index.scss';
@@ -14,6 +15,7 @@ export default function ArticleList() {
const [page, setPage] = useState(1);
const [total, setTotal] = useState(0);
const [loading, setLoading] = useState(false);
const [error, setError] = useState(false);
const [categories, setCategories] = useState<ArticleCategory[]>([]);
const [activeCategory, setActiveCategory] = useState<string | null>(null);
@@ -28,6 +30,7 @@ export default function ArticleList() {
const fetchData = useCallback(async (p: number, append = false, categoryId?: string | null) => {
setLoading(true);
setError(false);
try {
const cid = categoryId !== undefined ? categoryId : activeCategory;
const res = await listArticles({
@@ -39,6 +42,7 @@ export default function ArticleList() {
setTotal(res.total);
setPage(p);
} catch {
setError(true);
Taro.showToast({ title: '加载失败', icon: 'none' });
} finally {
setLoading(false);
@@ -93,7 +97,9 @@ export default function ArticleList() {
)}
<View className='article-list'>
{articles.map((a) => (
{error ? (
<ErrorState onRetry={() => fetchData(1, false, null)} />
) : articles.map((a) => (
<View
className='article-card'
key={a.id}