5.19 增加未查询到成立时间提示
This commit is contained in:
@ -11,6 +11,7 @@ import {
|
|||||||
DownloadOutlined,
|
DownloadOutlined,
|
||||||
ExclamationCircleOutlined,
|
ExclamationCircleOutlined,
|
||||||
FullscreenExitOutlined,
|
FullscreenExitOutlined,
|
||||||
|
InfoCircleOutlined,
|
||||||
UnorderedListOutlined
|
UnorderedListOutlined
|
||||||
} from "@ant-design/icons";
|
} from "@ant-design/icons";
|
||||||
import {
|
import {
|
||||||
@ -383,6 +384,18 @@ const BiddingDocumentsDecrypt: React.FC<BiddingDocumentsDecryptProps> = (props)
|
|||||||
>
|
>
|
||||||
{(record?.supplierCreatetime && record?.supplierCreatetime.toOpenbidTime === 0) && <AlertOutlined style={{ color: "rgb(245,156,38)", marginLeft: 6 }} />}
|
{(record?.supplierCreatetime && record?.supplierCreatetime.toOpenbidTime === 0) && <AlertOutlined style={{ color: "rgb(245,156,38)", marginLeft: 6 }} />}
|
||||||
</Popover>
|
</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}
|
||||||
</>
|
</>
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
|
@ -7,7 +7,7 @@ import FileDown from '@/utils/Download';
|
|||||||
import { getURLInformation, multipleTypeTransform, proTableValueEnum } from '@/utils/CommonUtils';
|
import { getURLInformation, multipleTypeTransform, proTableValueEnum } from '@/utils/CommonUtils';
|
||||||
import { btnAuthority } from '@/utils/authority';
|
import { btnAuthority } from '@/utils/authority';
|
||||||
import ProTable from '@ant-design/pro-table';
|
import ProTable from '@ant-design/pro-table';
|
||||||
import { AlertOutlined } from '@ant-design/icons';
|
import { AlertOutlined, InfoCircleOutlined } from '@ant-design/icons';
|
||||||
|
|
||||||
const { Panel } = Collapse;
|
const { Panel } = Collapse;
|
||||||
const { Text } = Typography;
|
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 }} />}
|
{(record?.supplierCreatetime && record?.supplierCreatetime.toPayTime === 0) && <AlertOutlined style={{ color: "rgb(245,156,38)", marginLeft: 6 }} />}
|
||||||
</Popover>
|
</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}
|
||||||
</>
|
</>
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
|
@ -6,7 +6,7 @@ import { getURLInformation, multipleTypeTransform, proTableValueEnum } from '@/u
|
|||||||
import { getDetail, getOpen } from './service';
|
import { getDetail, getOpen } from './service';
|
||||||
import { btnAuthority } from '@/utils/authority';
|
import { btnAuthority } from '@/utils/authority';
|
||||||
import ProTable from '@ant-design/pro-table';
|
import ProTable from '@ant-design/pro-table';
|
||||||
import { AlertOutlined } from '@ant-design/icons';
|
import { AlertOutlined, InfoCircleOutlined } from '@ant-design/icons';
|
||||||
|
|
||||||
const { Panel } = Collapse;
|
const { Panel } = Collapse;
|
||||||
const { Text } = Typography;
|
const { Text } = Typography;
|
||||||
@ -55,6 +55,18 @@ const Index: React.FC<IndexProps> = (props) => {
|
|||||||
>
|
>
|
||||||
{(record?.supplierCreatetime && record?.supplierCreatetime.toPayTime === 0) && <AlertOutlined style={{ color: "rgb(245,156,38)", marginLeft: 6 }} />}
|
{(record?.supplierCreatetime && record?.supplierCreatetime.toPayTime === 0) && <AlertOutlined style={{ color: "rgb(245,156,38)", marginLeft: 6 }} />}
|
||||||
</Popover>
|
</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