Browse Source
Merge branch 'develop' of http://120.27.195.166:3000/chenglb/PMS_Frontend_v1.0.0 into develop
tags/PMS_Frontend_v1.0.6-develop
Merge branch 'develop' of http://120.27.195.166:3000/chenglb/PMS_Frontend_v1.0.0 into develop
tags/PMS_Frontend_v1.0.6-develop
9 changed files with 47 additions and 11 deletions
-
2src/pages/FinancialMgm/OrderInquiry/ParkingOrderInquiry/index.jsx
-
1src/pages/InRoadMgm/RoadMgm/RoadConf/loadable.jsx
-
1src/pages/MerchantMgm/FunctionMgm/loadable.jsx
-
12src/pages/MerchantMgm/InvoiceConf/index.jsx
-
6src/pages/MerchantMgm/InvoiceConf/loadable.jsx
-
7src/pages/MerchantMgm/MerchantAdmin/loadable.jsx
-
11src/pages/MerchantMgm/MerchantInfo/index.jsx
-
16src/pages/MerchantMgm/MerchantInfo/loadable.jsx
-
2src/pages/OperationCenter/OperationSales/AdsMgm/loadable.jsx
@ -1,6 +1,16 @@ |
|||
import React from "react" |
|||
import { connect } from "react-redux"; |
|||
import loadable from "@loadable/component" |
|||
import { LoadingImg } from "@/components" |
|||
|
|||
const InvoiceConfLoadable = loadable(() => import("./loadable")) |
|||
export default (pros) => <InvoiceConfLoadable {...pros} fallback={<LoadingImg />} /> |
|||
export default connect(function mapStateToProps(state) { |
|||
return { |
|||
user: state.user, |
|||
}; |
|||
})((props) => { |
|||
|
|||
return( |
|||
<InvoiceConfLoadable {...props} fallback={<LoadingImg />} /> |
|||
) |
|||
}) |
@ -1,6 +1,15 @@ |
|||
import React from "react" |
|||
import { connect } from "react-redux"; |
|||
import loadable from "@loadable/component" |
|||
import { LoadingImg } from "@/components" |
|||
|
|||
const MerchantInfoLoadable = loadable(() => import("./loadable")) |
|||
export default (pros) => <MerchantInfoLoadable {...pros} fallback={<LoadingImg />} /> |
|||
export default connect(function mapStateToProps(state) { |
|||
return { |
|||
user: state.user, |
|||
}; |
|||
})((props) => { |
|||
return ( |
|||
<MerchantInfoLoadable {...props} fallback={<LoadingImg />} /> |
|||
) |
|||
}) |
Write
Preview
Loading…
Cancel
Save
Reference in new issue