Commit 5a18280d9fecd978bc981d2ef99de9bb36f62fe3

Authored by jiangwei
1 parent d7be03e2

计划池弹框展示层级问题fix

src/pages/pms/partPlan/PlanPool/components/DetailModal.tsx
... ... @@ -5,6 +5,7 @@ import StorageTable from './StorageTable';
5 5 import SeriesTable from './SeriesTable';
6 6 import SpecTable from './SpecTable';
7 7 import PartTable from './PartTable';
  8 +import OutFlowModal from './OutFlowModal';
8 9  
9 10 interface Props {
10 11 visible: boolean,
... ... @@ -33,6 +34,7 @@ export default function Index(props: Props) {
33 34 {detailType == 3 && <SeriesTable type={type} detailType={detailType} id={id} showAnalyse={false} />}
34 35 {detailType == 4 && <SpecTable type={type} detailType={detailType} id={id} />}
35 36 {detailType == 5 && <PartTable type={type} detailType={detailType} id={id} showAnalyse={false} />}
  37 + <OutFlowModal />
36 38 </Modal>
37 39 );
38 40 }
... ...
src/pages/pms/partPlan/PlanPool/index.tsx
... ... @@ -11,7 +11,6 @@ import st from &quot;@/pages/pms/partPlan/PlanShipping/style.less&quot;;
11 11 import Filter from './components/Filter';
12 12 import {createStore} from "@/hooks/moz";
13 13 import store from "./useStore";
14   -import OutFlowModal from './components/OutFlowModal';
15 14 import CustBuyModal from './components/CustBuyModal';
16 15  
17 16 export const { Provider, useStore } = createStore(store);
... ... @@ -40,7 +39,7 @@ function Index() {
40 39 <StoragePartTable type={6} />
41 40 </Tabs.TabPane>
42 41 </Tabs>
43   - <OutFlowModal />
  42 + {/* <OutFlowModal /> */}
44 43 <CustBuyModal />
45 44 </Card>
46 45 </ConfigProvider>
... ...