5.19 增加未查询到成立时间提示
This commit is contained in:
@ -7,7 +7,7 @@ import FileDown from '@/utils/Download';
|
||||
import { getURLInformation, multipleTypeTransform, proTableValueEnum } from '@/utils/CommonUtils';
|
||||
import { btnAuthority } from '@/utils/authority';
|
||||
import ProTable from '@ant-design/pro-table';
|
||||
import { AlertOutlined } from '@ant-design/icons';
|
||||
import { AlertOutlined, InfoCircleOutlined } from '@ant-design/icons';
|
||||
|
||||
const { Panel } = Collapse;
|
||||
const { Text } = Typography;
|
||||
@ -126,6 +126,18 @@ const Index: React.FC<{}> = () => {
|
||||
>
|
||||
{(record?.supplierCreatetime && record?.supplierCreatetime.toPayTime === 0) && <AlertOutlined style={{ color: "rgb(245,156,38)", marginLeft: 6 }} />}
|
||||
</Popover>
|
||||
{record?.supplierCreatetime && record?.supplierCreatetime.foundTime === null ? (
|
||||
<Popover
|
||||
content={
|
||||
<Typography>
|
||||
<Text style={{ display: 'block', color: "rgb(245,156,38)" }}>温馨提示:</Text>
|
||||
<Text>未查询到成立时间</Text>
|
||||
</Typography>
|
||||
}
|
||||
>
|
||||
<InfoCircleOutlined style={{ color: "rgb(245,156,38)", marginLeft: 6 }} />
|
||||
</Popover>
|
||||
) : null}
|
||||
</>
|
||||
)
|
||||
},
|
||||
|
Reference in New Issue
Block a user