├── .babelrc ├── .gitignore ├── LICENSE ├── README.md ├── UE ├── �ֲ�ͼicon │ ├── 01��Ӱicon_2.png │ ├── 01�ȼٳ���icon_8.png │ ├── 01���icon_6.png │ ├── 01�Ƶ�icon_3.png │ ├── 01����icon_7.png │ ├── 01��ʳicon_1.png │ ├── 01����icon_5.png │ ├── 01��������icon_4.png │ ├── 01�ܱ���icon_10png.png │ ├── 01���ư�Ħicon_9.png │ ├── 02KTVicon_2.png │ ├── 02����icon_3.png │ ├── 02����icon_1.png │ ├── 02�ư�icon_10.png │ ├── 02����icon_6.png │ ├── 02����icon_7.png │ ├── 02�������icon_4.png │ ├── 02С�Կ��icon_8.png │ ├── 02�˶�����icon_5.png │ ├── 02������icon_9.png │ ├── 03SPAicon_2.png │ ├── 03����icon_9.png │ ├── 03�𳵻�Ʊicon_6.png │ ├── 03��װicon_8.png │ ├── 03���icon_3.png │ ├── 03ȫ������icon_10.png │ ├── 03�ձ���icon_1.png │ ├── 03�տ�icon_7.png │ ├── 03����icon_5.png │ └── 03ѧϰ��ѵicon_4.png ├── ��ҳ01.jpg ├── ��ҳ02.jpg └── ��ҳ03.jpg ├── app ├── actions │ ├── store.js │ └── userinfo.js ├── components │ ├── BuyAndStore │ │ ├── index.jsx │ │ └── style.less │ ├── Category │ │ ├── index.jsx │ │ └── style.less │ ├── CityList │ │ ├── index.jsx │ │ └── style.less │ ├── CommentList │ │ ├── Item │ │ │ ├── index.jsx │ │ │ └── style.less │ │ ├── index.jsx │ │ └── style.less │ ├── CurrentCity │ │ ├── index.jsx │ │ └── style.less │ ├── DetailInfo │ │ ├── index.jsx │ │ └── style.less │ ├── Header │ │ ├── index.jsx │ │ └── style.less │ ├── HomeAd │ │ ├── index.jsx │ │ └── style.less │ ├── HomeHeader │ │ ├── index.jsx │ │ └── style.less │ ├── List │ │ ├── Item │ │ │ ├── index.jsx │ │ │ └── style.less │ │ ├── folder.ini │ │ ├── index.jsx │ │ └── style.less │ ├── LoadMore │ │ ├── index.jsx │ │ └── style.less │ ├── Login │ │ ├── index.jsx │ │ └── style.less │ ├── OrderList │ │ ├── Item │ │ │ ├── index.jsx │ │ │ └── style.less │ │ ├── index.jsx │ │ └── style.less │ ├── README.md │ ├── SearchHeader │ │ ├── index.jsx │ │ └── style.less │ ├── SearchInput │ │ ├── index.jsx │ │ └── style.less │ ├── Star │ │ ├── index.jsx │ │ └── style.less │ ├── UserInfo │ │ ├── index.jsx │ │ └── style.less │ └── folder.ini ├── config │ └── localStoreKey.js ├── constants │ ├── README.md │ ├── store.js │ └── userinfo.js ├── containers │ ├── 404.jsx │ ├── City │ │ ├── index.jsx │ │ └── style.less │ ├── Detail │ │ ├── index.jsx │ │ ├── style.less │ │ └── subpage │ │ │ ├── Buy.jsx │ │ │ ├── Comment.jsx │ │ │ ├── Info.jsx │ │ │ └── style.less │ ├── Home │ │ ├── folder.ini │ │ ├── index.jsx │ │ └── subpage │ │ │ ├── Ad.jsx │ │ │ ├── List.jsx │ │ │ └── style.less │ ├── Login │ │ ├── index.jsx │ │ └── style.less │ ├── README.md │ ├── Search │ │ ├── index.jsx │ │ ├── style.less │ │ └── subpage │ │ │ └── List.jsx │ ├── User │ │ ├── index.jsx │ │ ├── style.less │ │ └── subpage │ │ │ ├── OrderList.jsx │ │ │ └── style.less │ ├── folder.ini │ └── index.jsx ├── fetch │ ├── README.md │ ├── detail │ │ └── detail.js │ ├── folder.ini │ ├── get.js │ ├── home │ │ └── home.js │ ├── post.js │ ├── search │ │ └── search.js │ └── user │ │ └── orderList.js ├── folder.ini ├── index.jsx ├── index.tmpl.html ├── reducers │ ├── README.md │ ├── index.jsx │ ├── store.js │ └── userinfo.js ├── router │ └── routeMap.jsx ├── static │ ├── README.md │ ├── css │ │ ├── common.less │ │ └── font.css │ ├── folder.ini │ └── fonts │ │ ├── icomoon.eot │ │ ├── icomoon.svg │ │ ├── icomoon.ttf │ │ └── icomoon.woff ├── store │ └── configureStore.js └── util │ ├── README.md │ └── localStore.js ├── folder.ini ├── mock ├── detail │ ├── comment.js │ └── info.js ├── folder.ini ├── home │ ├── ad.js │ └── list.js ├── orderlist │ └── orderList.js ├── search │ └── list.js └── server.js ├── package.json ├── webpack.config.js └── webpack.production.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | LICENSE 1.0 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/README.md -------------------------------------------------------------------------------- /UE/�ֲ�ͼicon/01��Ӱicon_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/UE/�ֲ�ͼicon/01��Ӱicon_2.png -------------------------------------------------------------------------------- /UE/�ֲ�ͼicon/01�ȼٳ���icon_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/UE/�ֲ�ͼicon/01�ȼٳ���icon_8.png -------------------------------------------------------------------------------- /UE/�ֲ�ͼicon/01���icon_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/UE/�ֲ�ͼicon/01���icon_6.png -------------------------------------------------------------------------------- /UE/�ֲ�ͼicon/01�Ƶ�icon_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/UE/�ֲ�ͼicon/01�Ƶ�icon_3.png -------------------------------------------------------------------------------- /UE/�ֲ�ͼicon/01����icon_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/UE/�ֲ�ͼicon/01����icon_7.png -------------------------------------------------------------------------------- /UE/�ֲ�ͼicon/01��ʳicon_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/UE/�ֲ�ͼicon/01��ʳicon_1.png -------------------------------------------------------------------------------- /UE/�ֲ�ͼicon/01����icon_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/UE/�ֲ�ͼicon/01����icon_5.png -------------------------------------------------------------------------------- /UE/�ֲ�ͼicon/01��������icon_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/UE/�ֲ�ͼicon/01��������icon_4.png -------------------------------------------------------------------------------- /UE/�ֲ�ͼicon/01�ܱ���icon_10png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/UE/�ֲ�ͼicon/01�ܱ���icon_10png.png -------------------------------------------------------------------------------- /UE/�ֲ�ͼicon/01���ư�Ħicon_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/UE/�ֲ�ͼicon/01���ư�Ħicon_9.png -------------------------------------------------------------------------------- /UE/�ֲ�ͼicon/02KTVicon_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/UE/�ֲ�ͼicon/02KTVicon_2.png -------------------------------------------------------------------------------- /UE/�ֲ�ͼicon/02����icon_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/UE/�ֲ�ͼicon/02����icon_3.png -------------------------------------------------------------------------------- /UE/�ֲ�ͼicon/02����icon_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/UE/�ֲ�ͼicon/02����icon_1.png -------------------------------------------------------------------------------- /UE/�ֲ�ͼicon/02�ư�icon_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/UE/�ֲ�ͼicon/02�ư�icon_10.png -------------------------------------------------------------------------------- /UE/�ֲ�ͼicon/02����icon_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/UE/�ֲ�ͼicon/02����icon_6.png -------------------------------------------------------------------------------- /UE/�ֲ�ͼicon/02����icon_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/UE/�ֲ�ͼicon/02����icon_7.png -------------------------------------------------------------------------------- /UE/�ֲ�ͼicon/02�������icon_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/UE/�ֲ�ͼicon/02�������icon_4.png -------------------------------------------------------------------------------- /UE/�ֲ�ͼicon/02С�Կ��icon_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/UE/�ֲ�ͼicon/02С�Կ��icon_8.png -------------------------------------------------------------------------------- /UE/�ֲ�ͼicon/02�˶�����icon_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/UE/�ֲ�ͼicon/02�˶�����icon_5.png -------------------------------------------------------------------------------- /UE/�ֲ�ͼicon/02������icon_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/UE/�ֲ�ͼicon/02������icon_9.png -------------------------------------------------------------------------------- /UE/�ֲ�ͼicon/03SPAicon_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/UE/�ֲ�ͼicon/03SPAicon_2.png -------------------------------------------------------------------------------- /UE/�ֲ�ͼicon/03����icon_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/UE/�ֲ�ͼicon/03����icon_9.png -------------------------------------------------------------------------------- /UE/�ֲ�ͼicon/03�𳵻�Ʊicon_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/UE/�ֲ�ͼicon/03�𳵻�Ʊicon_6.png -------------------------------------------------------------------------------- /UE/�ֲ�ͼicon/03��װicon_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/UE/�ֲ�ͼicon/03��װicon_8.png -------------------------------------------------------------------------------- /UE/�ֲ�ͼicon/03���icon_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/UE/�ֲ�ͼicon/03���icon_3.png -------------------------------------------------------------------------------- /UE/�ֲ�ͼicon/03ȫ������icon_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/UE/�ֲ�ͼicon/03ȫ������icon_10.png -------------------------------------------------------------------------------- /UE/�ֲ�ͼicon/03�ձ���icon_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/UE/�ֲ�ͼicon/03�ձ���icon_1.png -------------------------------------------------------------------------------- /UE/�ֲ�ͼicon/03�տ�icon_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/UE/�ֲ�ͼicon/03�տ�icon_7.png -------------------------------------------------------------------------------- /UE/�ֲ�ͼicon/03����icon_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/UE/�ֲ�ͼicon/03����icon_5.png -------------------------------------------------------------------------------- /UE/�ֲ�ͼicon/03ѧϰ��ѵicon_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/UE/�ֲ�ͼicon/03ѧϰ��ѵicon_4.png -------------------------------------------------------------------------------- /UE/��ҳ01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/UE/��ҳ01.jpg -------------------------------------------------------------------------------- /UE/��ҳ02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/UE/��ҳ02.jpg -------------------------------------------------------------------------------- /UE/��ҳ03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/UE/��ҳ03.jpg -------------------------------------------------------------------------------- /app/actions/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/actions/store.js -------------------------------------------------------------------------------- /app/actions/userinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/actions/userinfo.js -------------------------------------------------------------------------------- /app/components/BuyAndStore/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/BuyAndStore/index.jsx -------------------------------------------------------------------------------- /app/components/BuyAndStore/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/BuyAndStore/style.less -------------------------------------------------------------------------------- /app/components/Category/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/Category/index.jsx -------------------------------------------------------------------------------- /app/components/Category/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/Category/style.less -------------------------------------------------------------------------------- /app/components/CityList/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/CityList/index.jsx -------------------------------------------------------------------------------- /app/components/CityList/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/CityList/style.less -------------------------------------------------------------------------------- /app/components/CommentList/Item/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/CommentList/Item/index.jsx -------------------------------------------------------------------------------- /app/components/CommentList/Item/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/CommentList/Item/style.less -------------------------------------------------------------------------------- /app/components/CommentList/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/CommentList/index.jsx -------------------------------------------------------------------------------- /app/components/CommentList/style.less: -------------------------------------------------------------------------------- 1 | .comment-list { 2 | padding: 10px; 3 | } -------------------------------------------------------------------------------- /app/components/CurrentCity/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/CurrentCity/index.jsx -------------------------------------------------------------------------------- /app/components/CurrentCity/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/CurrentCity/style.less -------------------------------------------------------------------------------- /app/components/DetailInfo/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/DetailInfo/index.jsx -------------------------------------------------------------------------------- /app/components/DetailInfo/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/DetailInfo/style.less -------------------------------------------------------------------------------- /app/components/Header/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/Header/index.jsx -------------------------------------------------------------------------------- /app/components/Header/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/Header/style.less -------------------------------------------------------------------------------- /app/components/HomeAd/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/HomeAd/index.jsx -------------------------------------------------------------------------------- /app/components/HomeAd/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/HomeAd/style.less -------------------------------------------------------------------------------- /app/components/HomeHeader/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/HomeHeader/index.jsx -------------------------------------------------------------------------------- /app/components/HomeHeader/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/HomeHeader/style.less -------------------------------------------------------------------------------- /app/components/List/Item/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/List/Item/index.jsx -------------------------------------------------------------------------------- /app/components/List/Item/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/List/Item/style.less -------------------------------------------------------------------------------- /app/components/List/folder.ini: -------------------------------------------------------------------------------- 1 | [State] 2 | Expanded=1 3 | -------------------------------------------------------------------------------- /app/components/List/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/List/index.jsx -------------------------------------------------------------------------------- /app/components/List/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/List/style.less -------------------------------------------------------------------------------- /app/components/LoadMore/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/LoadMore/index.jsx -------------------------------------------------------------------------------- /app/components/LoadMore/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/LoadMore/style.less -------------------------------------------------------------------------------- /app/components/Login/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/Login/index.jsx -------------------------------------------------------------------------------- /app/components/Login/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/Login/style.less -------------------------------------------------------------------------------- /app/components/OrderList/Item/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/OrderList/Item/index.jsx -------------------------------------------------------------------------------- /app/components/OrderList/Item/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/OrderList/Item/style.less -------------------------------------------------------------------------------- /app/components/OrderList/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/OrderList/index.jsx -------------------------------------------------------------------------------- /app/components/OrderList/style.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/components/README.md: -------------------------------------------------------------------------------- 1 | 一些木偶组件 2 | -------------------------------------------------------------------------------- /app/components/SearchHeader/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/SearchHeader/index.jsx -------------------------------------------------------------------------------- /app/components/SearchHeader/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/SearchHeader/style.less -------------------------------------------------------------------------------- /app/components/SearchInput/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/SearchInput/index.jsx -------------------------------------------------------------------------------- /app/components/SearchInput/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/SearchInput/style.less -------------------------------------------------------------------------------- /app/components/Star/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/Star/index.jsx -------------------------------------------------------------------------------- /app/components/Star/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/Star/style.less -------------------------------------------------------------------------------- /app/components/UserInfo/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/UserInfo/index.jsx -------------------------------------------------------------------------------- /app/components/UserInfo/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/components/UserInfo/style.less -------------------------------------------------------------------------------- /app/components/folder.ini: -------------------------------------------------------------------------------- 1 | [State] 2 | Expanded=1 3 | -------------------------------------------------------------------------------- /app/config/localStoreKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/config/localStoreKey.js -------------------------------------------------------------------------------- /app/constants/README.md: -------------------------------------------------------------------------------- 1 | Redux const 常量的定义 2 | -------------------------------------------------------------------------------- /app/constants/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/constants/store.js -------------------------------------------------------------------------------- /app/constants/userinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/constants/userinfo.js -------------------------------------------------------------------------------- /app/containers/404.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/containers/404.jsx -------------------------------------------------------------------------------- /app/containers/City/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/containers/City/index.jsx -------------------------------------------------------------------------------- /app/containers/City/style.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/containers/Detail/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/containers/Detail/index.jsx -------------------------------------------------------------------------------- /app/containers/Detail/style.less: -------------------------------------------------------------------------------- 1 | .heard-hr{ 2 | margin-top: 50px; 3 | } 4 | -------------------------------------------------------------------------------- /app/containers/Detail/subpage/Buy.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/containers/Detail/subpage/Buy.jsx -------------------------------------------------------------------------------- /app/containers/Detail/subpage/Comment.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/containers/Detail/subpage/Comment.jsx -------------------------------------------------------------------------------- /app/containers/Detail/subpage/Info.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/containers/Detail/subpage/Info.jsx -------------------------------------------------------------------------------- /app/containers/Detail/subpage/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/containers/Detail/subpage/style.less -------------------------------------------------------------------------------- /app/containers/Home/folder.ini: -------------------------------------------------------------------------------- 1 | [State] 2 | Expanded=1 3 | -------------------------------------------------------------------------------- /app/containers/Home/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/containers/Home/index.jsx -------------------------------------------------------------------------------- /app/containers/Home/subpage/Ad.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/containers/Home/subpage/Ad.jsx -------------------------------------------------------------------------------- /app/containers/Home/subpage/List.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/containers/Home/subpage/List.jsx -------------------------------------------------------------------------------- /app/containers/Home/subpage/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/containers/Home/subpage/style.less -------------------------------------------------------------------------------- /app/containers/Login/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/containers/Login/index.jsx -------------------------------------------------------------------------------- /app/containers/Login/style.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/containers/README.md: -------------------------------------------------------------------------------- 1 | 智能组件页面 2 | -------------------------------------------------------------------------------- /app/containers/Search/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/containers/Search/index.jsx -------------------------------------------------------------------------------- /app/containers/Search/style.less: -------------------------------------------------------------------------------- 1 | .searchList{ 2 | margin-top: 50px; 3 | } 4 | -------------------------------------------------------------------------------- /app/containers/Search/subpage/List.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/containers/Search/subpage/List.jsx -------------------------------------------------------------------------------- /app/containers/User/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/containers/User/index.jsx -------------------------------------------------------------------------------- /app/containers/User/style.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/containers/User/subpage/OrderList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/containers/User/subpage/OrderList.jsx -------------------------------------------------------------------------------- /app/containers/User/subpage/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/containers/User/subpage/style.less -------------------------------------------------------------------------------- /app/containers/folder.ini: -------------------------------------------------------------------------------- 1 | [State] 2 | Expanded=1 3 | -------------------------------------------------------------------------------- /app/containers/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/containers/index.jsx -------------------------------------------------------------------------------- /app/fetch/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/fetch/detail/detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/fetch/detail/detail.js -------------------------------------------------------------------------------- /app/fetch/folder.ini: -------------------------------------------------------------------------------- 1 | [State] 2 | Expanded=1 3 | -------------------------------------------------------------------------------- /app/fetch/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/fetch/get.js -------------------------------------------------------------------------------- /app/fetch/home/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/fetch/home/home.js -------------------------------------------------------------------------------- /app/fetch/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/fetch/post.js -------------------------------------------------------------------------------- /app/fetch/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/fetch/search/search.js -------------------------------------------------------------------------------- /app/fetch/user/orderList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/fetch/user/orderList.js -------------------------------------------------------------------------------- /app/folder.ini: -------------------------------------------------------------------------------- 1 | [State] 2 | Expanded=1 3 | -------------------------------------------------------------------------------- /app/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/index.jsx -------------------------------------------------------------------------------- /app/index.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/index.tmpl.html -------------------------------------------------------------------------------- /app/reducers/README.md: -------------------------------------------------------------------------------- 1 | Redux reducers 2 | -------------------------------------------------------------------------------- /app/reducers/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/reducers/index.jsx -------------------------------------------------------------------------------- /app/reducers/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/reducers/store.js -------------------------------------------------------------------------------- /app/reducers/userinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/reducers/userinfo.js -------------------------------------------------------------------------------- /app/router/routeMap.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/router/routeMap.jsx -------------------------------------------------------------------------------- /app/static/README.md: -------------------------------------------------------------------------------- 1 | common static files 2 | -------------------------------------------------------------------------------- /app/static/css/common.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/static/css/common.less -------------------------------------------------------------------------------- /app/static/css/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/static/css/font.css -------------------------------------------------------------------------------- /app/static/folder.ini: -------------------------------------------------------------------------------- 1 | [State] 2 | Expanded=1 3 | -------------------------------------------------------------------------------- /app/static/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/static/fonts/icomoon.eot -------------------------------------------------------------------------------- /app/static/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/static/fonts/icomoon.svg -------------------------------------------------------------------------------- /app/static/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/static/fonts/icomoon.ttf -------------------------------------------------------------------------------- /app/static/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/static/fonts/icomoon.woff -------------------------------------------------------------------------------- /app/store/configureStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/store/configureStore.js -------------------------------------------------------------------------------- /app/util/README.md: -------------------------------------------------------------------------------- 1 | utils function 2 | -------------------------------------------------------------------------------- /app/util/localStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/app/util/localStore.js -------------------------------------------------------------------------------- /folder.ini: -------------------------------------------------------------------------------- 1 | [State] 2 | Expanded=1 3 | -------------------------------------------------------------------------------- /mock/detail/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/mock/detail/comment.js -------------------------------------------------------------------------------- /mock/detail/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/mock/detail/info.js -------------------------------------------------------------------------------- /mock/folder.ini: -------------------------------------------------------------------------------- 1 | [State] 2 | Expanded=1 3 | -------------------------------------------------------------------------------- /mock/home/ad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/mock/home/ad.js -------------------------------------------------------------------------------- /mock/home/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/mock/home/list.js -------------------------------------------------------------------------------- /mock/orderlist/orderList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/mock/orderlist/orderList.js -------------------------------------------------------------------------------- /mock/search/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/mock/search/list.js -------------------------------------------------------------------------------- /mock/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/mock/server.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/package.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.production.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magiccwl/dzdp-react/HEAD/webpack.production.config.js --------------------------------------------------------------------------------