供应商信息检索启动安排准入明细与查看使用通用

This commit is contained in:
孙景学
2025-07-17 08:51:38 +08:00
parent 0c293f836a
commit 2381831be8
5 changed files with 43 additions and 15 deletions

View File

@ -156,15 +156,22 @@ const RegistrationQuery: React.FC<RegistrationQueryProps> = ({ dispatch }) => {
title: '操作',
key: 'option',
align: 'center',
width: 160,
width: 80,
render: (record) => (
<Space>
<a
onClick={() => { setCurrentRecord(record.id); setViewVisible(true); }}
onClick={() => {
dispatch({
type: 'globalModal/show',
payload: {
id: record.id,
},
});
}}
></a>
<a
{/* <a
onClick={() => { setCurrentRecord(record.id); setDetailVisible(true); }}
></a>
>准入明细</a> */}
</Space>
),
},