...
|
...
|
@@ -36,6 +36,7 @@ import deliveryStatsInitialState from './reducers/deliveryStats/deliveryStatsIni |
|
|
import requestStatsInitialState from './reducers/requestStats/requestStatsInitialState';
|
|
|
import refoundStatisticsInitialState from './reducers/refoundStatistics/refoundStatisticsInitialState';
|
|
|
import transferShipmentInitialState from './reducers/transferShipment/transferShipmentInitialState';
|
|
|
import outOfStockInitialState from './reducers/outOfStock/outOfStockInitialState';
|
|
|
|
|
|
import App from './containers/App';
|
|
|
import GuideContainer from './containers/GuideContainer';
|
...
|
...
|
@@ -55,6 +56,7 @@ import MessageDetailContainer from './containers/MessageDetailContainer' |
|
|
import RequestStatsContainer from './containers/RequestStatsContainer'
|
|
|
import RefoundStatisticsContainer from './containers/RefoundStatisticsContainer'
|
|
|
import TransferShipmentContainer from './containers/TransferShipmentContainer'
|
|
|
import OutOfStockContainer from './containers/OutOfStockContainer'
|
|
|
|
|
|
import NavBar from './components/NavBar';
|
|
|
import TabIcon from './containers/TabIcon';
|
...
|
...
|
@@ -82,6 +84,7 @@ function getInitialState() { |
|
|
requestStats: (new requestStatsInitialState()),
|
|
|
refoundStats: (new refoundStatisticsInitialState()),
|
|
|
transferShipment: (new transferShipmentInitialState()),
|
|
|
outOfStock: (new outOfStockInitialState()),
|
|
|
};
|
|
|
return _initState;
|
|
|
}
|
...
|
...
|
@@ -286,6 +289,17 @@ export default function native(platform) { |
|
|
panHandlers={Platform.OS === 'android' ? null : undefined}
|
|
|
/>
|
|
|
<Scene
|
|
|
key="OutOfStock"
|
|
|
component={OutOfStockContainer}
|
|
|
hideNavBar={false}
|
|
|
initial={false}
|
|
|
navBar={NavBar}
|
|
|
title='提示缺货'
|
|
|
titleStyle={styles.navTitle}
|
|
|
type="push"
|
|
|
panHandlers={Platform.OS === 'android' ? null : undefined}
|
|
|
/>
|
|
|
<Scene
|
|
|
key='AboutUs'
|
|
|
component={AboutUsContainer}
|
|
|
title='关于我们'
|
...
|
...
|
|