Commit 5fd2b198 authored by Bill's avatar Bill

fix: 修改跳转物流单id

parent cf569113
...@@ -184,7 +184,7 @@ const processStock: React.FC<{}> = () => { ...@@ -184,7 +184,7 @@ const processStock: React.FC<{}> = () => {
</Popconfirm> </Popconfirm>
), ),
[OuterAndInnerStatus.pending_add_logistics]: <Link to={`${ADD_LOGISTICS_PATH}?createType=3&id=${record.id}`}>新增物流单</Link>, [OuterAndInnerStatus.pending_add_logistics]: <Link to={`${ADD_LOGISTICS_PATH}?createType=3&id=${record.id}`}>新增物流单</Link>,
[OuterAndInnerStatus.pending_confirm_logistics]: <Link to={`${DETAIL_LOGISTICS_PATH}?id=${record.id}`}>查看物流单</Link>, [OuterAndInnerStatus.pending_confirm_logistics]: <Link to={`${DETAIL_LOGISTICS_PATH}?id=${record.logisticsOrderId}`}>查看物流单</Link>,
[OuterAndInnerStatus.pending_confirm_deliver]: <Link to={`${PENDING_DELIVERD_PATH}/detail?id=${record.id}`}>发货</Link>, [OuterAndInnerStatus.pending_confirm_deliver]: <Link to={`${PENDING_DELIVERD_PATH}/detail?id=${record.id}`}>发货</Link>,
[OuterAndInnerStatus.pending_add_process_in_warehouse]: ( [OuterAndInnerStatus.pending_add_process_in_warehouse]: (
<Link <Link
......
...@@ -35,22 +35,22 @@ const Circulation: React.FC<Iprops> = (props) => { ...@@ -35,22 +35,22 @@ const Circulation: React.FC<Iprops> = (props) => {
) )
}) })
} }
</Steps> </Steps>
</TabPane> </TabPane>
<TabPane tab="内部流转" key="2"> <TabPane tab="内部流转" key="2">
<Steps progressDot={customDot} style={{marginTop: '20px'}}> <Steps progressDot={customDot} style={{marginTop: '20px'}}>
{ {
innerTaskList && innerTaskList.map((item: Istatus) => { innerTaskList && innerTaskList.map((item: Istatus) => {
return ( return (
<Step title={item.taskName} status={item.isExecute == 1 ? 'finish' : 'wait'} description={item.roleName} key={item.step} /> <Step title={item.taskName} status={item.isExecute == 1 ? 'finish' : 'wait'} description={""} key={item.step} />
) )
}) })
} }
</Steps> </Steps>
</TabPane> </TabPane>
</Tabs> </Tabs>
) )
} }
export default Circulation export default Circulation
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment