修改供应商弹框样式

This commit is contained in:
linxd
2025-07-16 16:24:49 +08:00
parent 612082dedb
commit dff4e4d24f
17 changed files with 34 additions and 21 deletions

View File

@ -11,6 +11,7 @@ import {
DatePicker,
Select,
Table,
Tooltip,
} from 'antd';
import { SearchOutlined, DeleteOutlined } from '@ant-design/icons';
import { history, useIntl } from 'umi';
@ -268,7 +269,9 @@ status状态
dataIndex: 'name',
key: 'name',
render: (text: string, record: any) => (
<Button type="link" onClick={() => supplierDetailModal?.(record.supplierId)}>{text}</Button>
<Tooltip placement="topLeft" title={text}>
<a onClick={() => supplierDetailModal?.(record.supplierId)}>{text}</a>
</Tooltip>
),
},
{