feat: 为模拟考试功能添加"待测试"标签

在首页的模拟考试卡片标题旁添加橙色"待测试"标签,以醒目地标识该功能当前处于测试阶段。

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
yanlongqi 2025-11-10 10:45:50 +08:00
parent b9844c7398
commit c50cf9ee7b

View File

@ -1,6 +1,6 @@
import React, { useEffect, useState } from 'react'
import { useNavigate } from 'react-router-dom'
import { Typography, message, Space, Avatar, Button, Modal, Form, Radio, Alert, Input, Switch, InputNumber, Dropdown, Row, Col, Card } from 'antd'
import { Typography, message, Space, Avatar, Button, Modal, Form, Radio, Alert, Input, Switch, InputNumber, Dropdown, Row, Col, Card, Tag } from 'antd'
import type { MenuProps } from 'antd'
import {
FileTextOutlined,
@ -564,7 +564,9 @@ const Home: React.FC = () => {
<FileTextOutlined className={styles.quickIcon} style={{ color: '#fa8c16' }} />
</div>
<div style={{ flex: 1 }}>
<Title level={5} style={{ margin: 0 }}></Title>
<Title level={5} style={{ margin: 0 }}>
<Tag color="orange"></Tag>
</Title>
<Paragraph type="secondary" style={{ margin: 0, fontSize: '13px' }}>线</Paragraph>
</div>
</Space>