/* * @Author: donghao donghao@supervision.ltd * @Date: 2024-04-23 17:00:00 * @LastEditors: donghao donghao@supervision.ltd * @LastEditTime: 2024-04-28 09:33:34 * @FilePath: \general-ai-platform-web\src\pages\Project\BusinessInfo\components\baseInfo.tsx * @Description: 基本信息展示 * */ import { ProDescriptions } from '@ant-design/pro-components'; import { FormattedMessage } from '@umijs/max'; type BaseInfoProps = { info: Record; }; const BaseInfo: React.FC = ({ info }) => { // 模型基本信息 const ModelDetailColumns = [ { title: , dataIndex: 'address', render: (_, record) => { return record?.province + record?.city + record.address; }, }, { title: , dataIndex: 'industryName', }, { title: , dataIndex: 'contacts', }, { title: ( ), dataIndex: 'contactWay', }, { title: , dataIndex: 'remark', }, ]; return (
); }; export default BaseInfo;