import React from 'react';
import { Card, Table, Input, Button, Space } from 'antd';
import { PlusOutlined, SearchOutlined } from '@ant-design/icons';
import styles from './CustomerInfoManagement.less';
const CustomerInfoManagement = () => {
const onSearch = (value) => {
console.log('搜索内容:', value);
};
const columns = [
{
title: '编号3333',
dataIndex: 'id',
key: 'id',
width: 80,
},
{
title: '客户名称',
dataIndex: 'customerName',
key: 'customerName',
width: 150,
},
{
title: '联系人',
dataIndex: 'contact',
key: 'contact',
width: 120,
},
{
title: '联系电话',
dataIndex: 'phone',
key: 'phone',
width: 150,
},
{
title: '公司地址',
dataIndex: 'address',
key: 'address',
width: 200,
},
{
title: '客户类型',
dataIndex: 'customerType',
key: 'customerType',
width: 120,
},
{
title: '创建时间',
dataIndex: 'createTime',
key: 'createTime',
width: 180,
},
{
title: '操作',
dataIndex: 'action',
key: 'action',
width: 150,
render: (text, record) => (