import React from 'react'; import styles from './BasicInfo.less'; const BasicInfo = ({ data }) => { const mockData = { // 基本信息 companyName: '中国石化销售股份有限公司', contactName: '张经理', address: '北京市朝阳区朝阳门北大街22号', creditCode: '9110000100012345X', email: 'zhang@sinopec.com', legalEntity: '中国石油化工股份有限公司', customerId: 'CUST-001', phone: '13800138000', // 交易信息 annualPurchase: 15680000, paymentTerm: '30 天', cooperationStart: '2020-03-15', paymentMethod: '银行转账', lastTransaction: '2023-10-28', creditRating: 'A+' } const safe = (v) => (v ?? '-') const currency = (n) => { if (typeof n === 'number') return `¥${n.toLocaleString()}`; if (typeof n === 'string') return n; return '-'; } return (