|
|
@@ -287,11 +287,11 @@ const GoodsTypeManage = () => { |
|
|
|
</FooterToolbar> |
|
|
|
)} |
|
|
|
<Modal title="上传工艺模版" open={isModalOpen} footer={null} maskClosable={false} |
|
|
|
destroyOnClose onCancel={() => { setIsModalOpen(false) }}> |
|
|
|
destroyOnClose onCancel={() => { setDeviceVesionData();setIsModalOpen(false) }}> |
|
|
|
<div style={{marginBottom:10}}> |
|
|
|
<span style={{marginRight:10}}>选择产品</span> |
|
|
|
<Select style={{width: '60%'}} onChange={handleChange}> |
|
|
|
{DictData.map((item, index) => { |
|
|
|
{DictData?.map((item, index) => { |
|
|
|
return ( |
|
|
|
<Select.Option index={index} value={item.id} key={item.id}> |
|
|
|
{item.label} |
|
|
@@ -303,7 +303,7 @@ const GoodsTypeManage = () => { |
|
|
|
<div style={{marginBottom:10}}> |
|
|
|
<span style={{marginRight:10}}>选择版本</span> |
|
|
|
<Select style={{width: '60%'}} onChange={handleVisChange}> |
|
|
|
{DeviceVesionData.map((item, index) => { |
|
|
|
{DeviceVesionData?.map((item, index) => { |
|
|
|
return ( |
|
|
|
<Select.Option index={index} value={item.id} key={item.id}> |
|
|
|
{item.label} |
|
|
|