import React, { FC } from "react"; import { Typography, Empty } from "antd"; const { Paragraph, Text, Title } = Typography; import { Product } from "@/api/service/ProductService"; type P = { product: Product; }; const Specifications: FC

= props => (

暂无规格数据 {/* 产品名称: 小雅AI音响 */} {/* 产品型号: AI-001 颜色: 红色、黑色、灰色 材质: 塑料 重量: 2.51kg 音箱控制: 手动 尺寸: 120*264mm 声道: 2.0 */}
); export default Specifications;