@@ -80,15 +80,10 @@ const goodspush = () => { | |||||
dataIndex: 'type', | dataIndex: 'type', | ||||
ellipsis: true, | ellipsis: true, | ||||
valueEnum: { | valueEnum: { | ||||
1: { | |||||
text: '商品', | |||||
}, | |||||
2: { | 2: { | ||||
text: '物料', | text: '物料', | ||||
}, | }, | ||||
3: { | |||||
text: '配方', | |||||
}, | |||||
}, | }, | ||||
}, | }, | ||||
{ | { | ||||
@@ -255,7 +250,7 @@ const HandleOk= async(values)=>{ | |||||
<ProDescriptions.Item label="topic" valueType="text" copyable={true}> | <ProDescriptions.Item label="topic" valueType="text" copyable={true}> | ||||
<a href='#'>{currentRow?.topic}</a> | <a href='#'>{currentRow?.topic}</a> | ||||
</ProDescriptions.Item> | </ProDescriptions.Item> | ||||
<ProDescriptions.Item label="下发数据" valueType="jsonCode" > | |||||
<ProDescriptions.Item contentStyle={{ maxWidth: '85%'}} label="下发数据" valueType="jsonCode" > | |||||
{currentRow?.dataResore} | {currentRow?.dataResore} | ||||
</ProDescriptions.Item> | </ProDescriptions.Item> | ||||
</ProDescriptions> | </ProDescriptions> | ||||
@@ -83,12 +83,7 @@ const goodspush = () => { | |||||
1: { | 1: { | ||||
text: '商品', | text: '商品', | ||||
}, | }, | ||||
2: { | |||||
text: '物料', | |||||
}, | |||||
3: { | |||||
text: '配方', | |||||
}, | |||||
}, | }, | ||||
}, | }, | ||||
{ | { | ||||
@@ -255,7 +250,7 @@ const HandleOk= async(values)=>{ | |||||
<ProDescriptions.Item label="topic" valueType="text" copyable={true}> | <ProDescriptions.Item label="topic" valueType="text" copyable={true}> | ||||
<a href='#'>{currentRow?.topic}</a> | <a href='#'>{currentRow?.topic}</a> | ||||
</ProDescriptions.Item> | </ProDescriptions.Item> | ||||
<ProDescriptions.Item label="下发数据" valueType="jsonCode" > | |||||
<ProDescriptions.Item contentStyle={{ maxWidth: '85%'}} label="下发数据" valueType="jsonCode" > | |||||
{currentRow?.dataResore} | {currentRow?.dataResore} | ||||
</ProDescriptions.Item> | </ProDescriptions.Item> | ||||
</ProDescriptions> | </ProDescriptions> | ||||
@@ -102,9 +102,14 @@ const PushFrom = (props) => { | |||||
} | } | ||||
// } | // } | ||||
}) | }) | ||||
var parm={deviceId:de.id,deviceName:de.name,deviceAutoKey:de.autoKey,type:4,data:data} | |||||
props.HandleOk(parm) | |||||
console.log(de) | |||||
if(data.goodstechnology.length==0){ | |||||
message.error('选择的商品还没有工艺'); | |||||
}else{ | |||||
var parm={deviceId:de.id,deviceName:de.name,deviceAutoKey:de.autoKey,type:4,data:data} | |||||
props.HandleOk(parm) | |||||
console.log(de) | |||||
} | |||||
} | } | ||||
}} | }} | ||||
onCancel={() => { | onCancel={() => { | ||||
@@ -80,15 +80,6 @@ const goodspush = () => { | |||||
dataIndex: 'type', | dataIndex: 'type', | ||||
ellipsis: true, | ellipsis: true, | ||||
valueEnum: { | valueEnum: { | ||||
1: { | |||||
text: '商品', | |||||
}, | |||||
2: { | |||||
text: '物料', | |||||
}, | |||||
3: { | |||||
text: '配方', | |||||
}, | |||||
4: { | 4: { | ||||
text: '工艺', | text: '工艺', | ||||
}, | }, | ||||
@@ -258,7 +249,7 @@ const HandleOk= async(values)=>{ | |||||
<ProDescriptions.Item label="topic" valueType="text" copyable={true}> | <ProDescriptions.Item label="topic" valueType="text" copyable={true}> | ||||
<a href='#'>{currentRow?.topic}</a> | <a href='#'>{currentRow?.topic}</a> | ||||
</ProDescriptions.Item> | </ProDescriptions.Item> | ||||
<ProDescriptions.Item label="下发数据" valueType="jsonCode" > | |||||
<ProDescriptions.Item contentStyle={{ maxWidth: '85%'}} label="下发数据" valueType="jsonCode" > | |||||
{currentRow?.dataResore} | {currentRow?.dataResore} | ||||
</ProDescriptions.Item> | </ProDescriptions.Item> | ||||
</ProDescriptions> | </ProDescriptions> | ||||
@@ -5,7 +5,6 @@ import { PageContainer, FooterToolbar } from '@ant-design/pro-layout'; | |||||
import ProTable from '@ant-design/pro-table'; | import ProTable from '@ant-design/pro-table'; | ||||
import CreateForm from './components/CreateForm'; | import CreateForm from './components/CreateForm'; | ||||
import FoodMenuGoods from './components/FoodMenuGoods' | import FoodMenuGoods from './components/FoodMenuGoods' | ||||
import PushDevice from './components/PushDevice' | |||||
import { | import { | ||||
GetFoodPage, | GetFoodPage, | ||||
FoodAdd, | FoodAdd, | ||||
@@ -92,15 +91,7 @@ const FoodMenu = () => { | |||||
> | > | ||||
关联商品 | 关联商品 | ||||
</a>, | </a>, | ||||
<a | |||||
key="update" | |||||
onClick={() => { | |||||
setpushdeviceModalVisible(true); | |||||
setCurrentRow(record); | |||||
}} | |||||
> | |||||
下发 | |||||
</a>, | |||||
], | ], | ||||
}, | }, | ||||
]; | ]; | ||||
@@ -253,15 +244,6 @@ const handleRemove = async (selectedRows) => { | |||||
message.error(r.errors); | message.error(r.errors); | ||||
} | } | ||||
}) | }) | ||||
}} | |||||
/> | |||||
<PushDevice pushdeviceModalVisible={pushdeviceModalVisible} values={currentRow || {}} | |||||
onCancel={() => { | |||||
setpushdeviceModalVisible(false); | |||||
setCurrentRow(undefined); | |||||
}} | |||||
handleOk={(values)=>{ | |||||
}} | }} | ||||
/> | /> | ||||
</PageContainer> | </PageContainer> | ||||