├── .browserslistrc ├── .eslintrc.js ├── .gitignore ├── README.md ├── babel.config.js ├── package.json ├── postcss.config.js ├── public ├── favicon.ico ├── img │ └── icons │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── android-chrome-maskable-192x192.png │ │ ├── android-chrome-maskable-512x512.png │ │ ├── apple-touch-icon-120x120.png │ │ ├── apple-touch-icon-152x152.png │ │ ├── apple-touch-icon-180x180.png │ │ ├── apple-touch-icon-60x60.png │ │ ├── apple-touch-icon-76x76.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── msapplication-icon-144x144.png │ │ ├── mstile-150x150.png │ │ └── safari-pinned-tab.svg ├── index.html └── robots.txt ├── src ├── App.vue ├── api │ └── index.ts ├── assets │ └── styles │ │ ├── index.scss │ │ ├── main.scss │ │ ├── mixin.scss │ │ └── reset.scss ├── components │ ├── confirm │ │ └── index.vue │ ├── menu │ │ ├── index.scss │ │ └── index.vue │ ├── modal │ │ └── index.vue │ ├── page-head │ │ ├── assets │ │ │ ├── index.scss │ │ │ ├── left-normal.png │ │ │ └── left-white.png │ │ └── index.vue │ ├── product-item │ │ ├── index.scss │ │ ├── index.vue │ │ └── product_default.jpg │ └── scroll │ │ └── index.vue ├── config │ └── index.ts ├── main.ts ├── mock │ └── data.ts ├── registerServiceWorker.ts ├── router │ └── index.ts ├── shims-tsx.d.ts ├── shims-vue.d.ts ├── store │ ├── home │ │ ├── index.ts │ │ └── interface.ts │ ├── index.ts │ └── product │ │ ├── index.ts │ │ └── interface.ts ├── utils │ └── http.ts └── views │ ├── home │ ├── components │ │ ├── floor │ │ │ ├── index.scss │ │ │ └── index.vue │ │ └── swiper │ │ │ └── swiper.vue │ └── index.vue │ ├── login │ ├── index.scss │ └── index.vue │ ├── product-detail │ ├── components │ │ ├── detail-con.vue │ │ └── head.vue │ ├── index.scss │ └── index.vue │ ├── product-list │ ├── component │ │ ├── list-item │ │ │ └── index.vue │ │ ├── search-head │ │ │ └── index.vue │ │ └── select-tab │ │ │ └── index.vue │ ├── index.scss │ └── index.vue │ ├── profile │ ├── component │ │ ├── profile-foot │ │ │ └── index.vue │ │ └── profile-info │ │ │ └── index.vue │ ├── index.scss │ └── index.vue │ ├── register │ ├── index.scss │ └── index.vue │ └── user │ ├── components │ ├── head-info │ │ └── index.vue │ └── tab-list │ │ └── index.vue │ ├── index.scss │ └── index.vue ├── tsconfig.json ├── vue.config.js └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/img/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/public/img/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/img/icons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/public/img/icons/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/img/icons/android-chrome-maskable-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/public/img/icons/android-chrome-maskable-192x192.png -------------------------------------------------------------------------------- /public/img/icons/android-chrome-maskable-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/public/img/icons/android-chrome-maskable-512x512.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/public/img/icons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/public/img/icons/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/public/img/icons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/public/img/icons/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/public/img/icons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/public/img/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /public/img/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/public/img/icons/favicon-16x16.png -------------------------------------------------------------------------------- /public/img/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/public/img/icons/favicon-32x32.png -------------------------------------------------------------------------------- /public/img/icons/msapplication-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/public/img/icons/msapplication-icon-144x144.png -------------------------------------------------------------------------------- /public/img/icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/public/img/icons/mstile-150x150.png -------------------------------------------------------------------------------- /public/img/icons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/public/img/icons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/public/index.html -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/api/index.ts -------------------------------------------------------------------------------- /src/assets/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/assets/styles/index.scss -------------------------------------------------------------------------------- /src/assets/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/assets/styles/main.scss -------------------------------------------------------------------------------- /src/assets/styles/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/assets/styles/mixin.scss -------------------------------------------------------------------------------- /src/assets/styles/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/assets/styles/reset.scss -------------------------------------------------------------------------------- /src/components/confirm/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/components/confirm/index.vue -------------------------------------------------------------------------------- /src/components/menu/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/components/menu/index.scss -------------------------------------------------------------------------------- /src/components/menu/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/components/menu/index.vue -------------------------------------------------------------------------------- /src/components/modal/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/components/modal/index.vue -------------------------------------------------------------------------------- /src/components/page-head/assets/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/components/page-head/assets/index.scss -------------------------------------------------------------------------------- /src/components/page-head/assets/left-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/components/page-head/assets/left-normal.png -------------------------------------------------------------------------------- /src/components/page-head/assets/left-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/components/page-head/assets/left-white.png -------------------------------------------------------------------------------- /src/components/page-head/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/components/page-head/index.vue -------------------------------------------------------------------------------- /src/components/product-item/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/components/product-item/index.scss -------------------------------------------------------------------------------- /src/components/product-item/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/components/product-item/index.vue -------------------------------------------------------------------------------- /src/components/product-item/product_default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/components/product-item/product_default.jpg -------------------------------------------------------------------------------- /src/components/scroll/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/components/scroll/index.vue -------------------------------------------------------------------------------- /src/config/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/mock/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/mock/data.ts -------------------------------------------------------------------------------- /src/registerServiceWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/registerServiceWorker.ts -------------------------------------------------------------------------------- /src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/router/index.ts -------------------------------------------------------------------------------- /src/shims-tsx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/shims-tsx.d.ts -------------------------------------------------------------------------------- /src/shims-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/shims-vue.d.ts -------------------------------------------------------------------------------- /src/store/home/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/store/home/index.ts -------------------------------------------------------------------------------- /src/store/home/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/store/home/interface.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/product/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/store/product/index.ts -------------------------------------------------------------------------------- /src/store/product/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/store/product/interface.ts -------------------------------------------------------------------------------- /src/utils/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/utils/http.ts -------------------------------------------------------------------------------- /src/views/home/components/floor/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/views/home/components/floor/index.scss -------------------------------------------------------------------------------- /src/views/home/components/floor/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/views/home/components/floor/index.vue -------------------------------------------------------------------------------- /src/views/home/components/swiper/swiper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/views/home/components/swiper/swiper.vue -------------------------------------------------------------------------------- /src/views/home/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/views/home/index.vue -------------------------------------------------------------------------------- /src/views/login/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/views/login/index.scss -------------------------------------------------------------------------------- /src/views/login/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/views/login/index.vue -------------------------------------------------------------------------------- /src/views/product-detail/components/detail-con.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/views/product-detail/components/detail-con.vue -------------------------------------------------------------------------------- /src/views/product-detail/components/head.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/views/product-detail/components/head.vue -------------------------------------------------------------------------------- /src/views/product-detail/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/views/product-detail/index.scss -------------------------------------------------------------------------------- /src/views/product-detail/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/views/product-detail/index.vue -------------------------------------------------------------------------------- /src/views/product-list/component/list-item/index.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/product-list/component/search-head/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/views/product-list/component/search-head/index.vue -------------------------------------------------------------------------------- /src/views/product-list/component/select-tab/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/views/product-list/component/select-tab/index.vue -------------------------------------------------------------------------------- /src/views/product-list/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/views/product-list/index.scss -------------------------------------------------------------------------------- /src/views/product-list/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/views/product-list/index.vue -------------------------------------------------------------------------------- /src/views/profile/component/profile-foot/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/views/profile/component/profile-foot/index.vue -------------------------------------------------------------------------------- /src/views/profile/component/profile-info/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/views/profile/component/profile-info/index.vue -------------------------------------------------------------------------------- /src/views/profile/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/views/profile/index.scss -------------------------------------------------------------------------------- /src/views/profile/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/views/profile/index.vue -------------------------------------------------------------------------------- /src/views/register/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/views/register/index.scss -------------------------------------------------------------------------------- /src/views/register/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/views/register/index.vue -------------------------------------------------------------------------------- /src/views/user/components/head-info/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/views/user/components/head-info/index.vue -------------------------------------------------------------------------------- /src/views/user/components/tab-list/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/views/user/components/tab-list/index.vue -------------------------------------------------------------------------------- /src/views/user/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/views/user/index.scss -------------------------------------------------------------------------------- /src/views/user/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/src/views/user/index.vue -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/vue.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rosen97/web-shop/HEAD/yarn.lock --------------------------------------------------------------------------------