├── .angular-cli.json ├── .editorconfig ├── .gitignore ├── README.md ├── e2e ├── app.e2e-spec.ts ├── app.po.ts └── tsconfig.e2e.json ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── src ├── app │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── carousel │ │ ├── carousel.component.css │ │ ├── carousel.component.html │ │ ├── carousel.component.spec.ts │ │ └── carousel.component.ts │ ├── footer │ │ ├── footer.component.css │ │ ├── footer.component.html │ │ ├── footer.component.spec.ts │ │ └── footer.component.ts │ ├── home │ │ ├── home.component.css │ │ ├── home.component.html │ │ ├── home.component.spec.ts │ │ └── home.component.ts │ ├── navbar │ │ ├── navbar.component.css │ │ ├── navbar.component.html │ │ ├── navbar.component.spec.ts │ │ └── navbar.component.ts │ ├── pipe │ │ ├── filter.pipe.spec.ts │ │ └── filter.pipe.ts │ ├── product-detail │ │ ├── product-detail.component.css │ │ ├── product-detail.component.html │ │ ├── product-detail.component.spec.ts │ │ └── product-detail.component.ts │ ├── product │ │ ├── product.component.css │ │ ├── product.component.html │ │ ├── product.component.spec.ts │ │ └── product.component.ts │ ├── search │ │ ├── search.component.css │ │ ├── search.component.html │ │ ├── search.component.spec.ts │ │ └── search.component.ts │ ├── shared │ │ ├── product.service.spec.ts │ │ └── product.service.ts │ └── stars │ │ ├── stars.component.css │ │ ├── stars.component.html │ │ ├── stars.component.spec.ts │ │ └── stars.component.ts ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.css ├── test.ts ├── tsconfig.app.json ├── tsconfig.spec.json └── typings.d.ts ├── tsconfig.json └── tslint.json /.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/.angular-cli.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/README.md -------------------------------------------------------------------------------- /e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/e2e/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/package.json -------------------------------------------------------------------------------- /protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/protractor.conf.js -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- 1 | .carousel-container{ 2 | margin-bottom: 40px; 3 | } -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/carousel/carousel.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/carousel/carousel.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/app/carousel/carousel.component.html -------------------------------------------------------------------------------- /src/app/carousel/carousel.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/app/carousel/carousel.component.spec.ts -------------------------------------------------------------------------------- /src/app/carousel/carousel.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/app/carousel/carousel.component.ts -------------------------------------------------------------------------------- /src/app/footer/footer.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/footer/footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/app/footer/footer.component.html -------------------------------------------------------------------------------- /src/app/footer/footer.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/app/footer/footer.component.spec.ts -------------------------------------------------------------------------------- /src/app/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/app/footer/footer.component.ts -------------------------------------------------------------------------------- /src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/app/home/home.component.html -------------------------------------------------------------------------------- /src/app/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/app/home/home.component.spec.ts -------------------------------------------------------------------------------- /src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/app/home/home.component.ts -------------------------------------------------------------------------------- /src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/navbar/navbar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/app/navbar/navbar.component.html -------------------------------------------------------------------------------- /src/app/navbar/navbar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/app/navbar/navbar.component.spec.ts -------------------------------------------------------------------------------- /src/app/navbar/navbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/app/navbar/navbar.component.ts -------------------------------------------------------------------------------- /src/app/pipe/filter.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/app/pipe/filter.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/pipe/filter.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/app/pipe/filter.pipe.ts -------------------------------------------------------------------------------- /src/app/product-detail/product-detail.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/product-detail/product-detail.component.html: -------------------------------------------------------------------------------- 1 |

2 | 商品ID为{{productId}} 3 |

4 | -------------------------------------------------------------------------------- /src/app/product-detail/product-detail.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/app/product-detail/product-detail.component.spec.ts -------------------------------------------------------------------------------- /src/app/product-detail/product-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/app/product-detail/product-detail.component.ts -------------------------------------------------------------------------------- /src/app/product/product.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/product/product.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/app/product/product.component.html -------------------------------------------------------------------------------- /src/app/product/product.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/app/product/product.component.spec.ts -------------------------------------------------------------------------------- /src/app/product/product.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/app/product/product.component.ts -------------------------------------------------------------------------------- /src/app/search/search.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/search/search.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/app/search/search.component.html -------------------------------------------------------------------------------- /src/app/search/search.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/app/search/search.component.spec.ts -------------------------------------------------------------------------------- /src/app/search/search.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/app/search/search.component.ts -------------------------------------------------------------------------------- /src/app/shared/product.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/app/shared/product.service.spec.ts -------------------------------------------------------------------------------- /src/app/shared/product.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/app/shared/product.service.ts -------------------------------------------------------------------------------- /src/app/stars/stars.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/stars/stars.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/app/stars/stars.component.html -------------------------------------------------------------------------------- /src/app/stars/stars.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/app/stars/stars.component.spec.ts -------------------------------------------------------------------------------- /src/app/stars/stars.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/app/stars/stars.component.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyanwen/angularProjectPlus/HEAD/tslint.json --------------------------------------------------------------------------------