gitextract_wmw74cji/ ├── .babelrc ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── README.md ├── asset/ │ └── css/ │ ├── app.less │ ├── base.less │ ├── icon.less │ ├── reset.less │ ├── variables.less │ └── vendor_antd.less ├── build/ │ ├── env.js │ ├── postcss.config.js │ ├── publicPath.js │ ├── theme.js │ ├── webpack.base.conf.js │ ├── webpack.dev.conf.js │ └── webpack.prod.conf.js ├── index.html ├── mock/ │ ├── config/ │ │ └── mockConfig.json │ ├── data/ │ │ └── skuunit/ │ │ ├── deleteSkuUnit.json │ │ ├── showSkuUnitList.json │ │ └── updateSkuUnitPause.json │ └── template/ │ └── query/ │ └── table.template ├── package.json ├── src/ │ ├── app.jsx │ ├── common/ │ │ └── request.js │ ├── components/ │ │ ├── ErrorBoundary.jsx │ │ ├── Layout/ │ │ │ ├── Footer.jsx │ │ │ ├── Header.jsx │ │ │ ├── Sider.jsx │ │ │ └── index.css │ │ ├── Pages/ │ │ │ ├── index.css │ │ │ └── index.jsx │ │ └── index.jsx │ ├── constants/ │ │ ├── constant.js │ │ └── url.js │ ├── redux/ │ │ ├── configureStore.js │ │ ├── reducers.js │ │ └── skuunit/ │ │ ├── api.js │ │ └── skuunit.js │ └── routers/ │ ├── PrimaryLayout.jsx │ ├── Skuunit/ │ │ ├── columns.jsx │ │ └── index.jsx │ ├── index.jsx │ └── index.less ├── template.html └── webpack.config.js