├── .gitignore ├── DEPLOYMENT.md ├── README.md ├── babel.config.js ├── package.json ├── public ├── favicon.ico └── index.html ├── src ├── App.vue ├── api │ ├── category.js │ ├── detail.js │ ├── home.js │ └── index.js ├── assets │ ├── css │ │ ├── base.css │ │ ├── normalize.css │ │ └── reset.less │ ├── img │ │ ├── common │ │ │ ├── GitHub.svg │ │ │ ├── back.svg │ │ │ ├── check.svg │ │ │ ├── code.svg │ │ │ ├── cust.svg │ │ │ ├── down.svg │ │ │ ├── fail.svg │ │ │ ├── heart.svg │ │ │ ├── message.svg │ │ │ ├── normal.svg │ │ │ ├── setting.svg │ │ │ ├── shop.svg │ │ │ ├── shop_bag.svg │ │ │ ├── success.svg │ │ │ ├── top.svg │ │ │ ├── un_heart.svg │ │ │ ├── vip.svg │ │ │ ├── warning.svg │ │ │ └── yes.svg │ │ ├── profile │ │ │ ├── coupon.svg │ │ │ ├── foot.svg │ │ │ ├── in.svg │ │ │ ├── phone.svg │ │ │ ├── portrait.svg │ │ │ ├── w_comment.svg │ │ │ ├── w_pay.svg │ │ │ ├── w_recovery.svg │ │ │ ├── w_refund.svg │ │ │ └── w_send.svg │ │ └── tabbar │ │ │ ├── category.svg │ │ │ ├── category_active.svg │ │ │ ├── home.svg │ │ │ ├── home_active.svg │ │ │ ├── profile.svg │ │ │ ├── profile_active.svg │ │ │ ├── shopcart.svg │ │ │ └── shopcart_active.svg │ └── logo.png ├── common │ └── mixin.js ├── components │ ├── HelloWorld.vue │ ├── common │ │ ├── navbar │ │ │ └── NavBar.vue │ │ ├── scroll │ │ │ └── scroll.vue │ │ ├── swiper │ │ │ ├── Swiper.vue │ │ │ ├── SwiperItem.vue │ │ │ └── index.js │ │ ├── tabbar │ │ │ ├── TabBar.vue │ │ │ └── TabBarItem.vue │ │ └── toast │ │ │ ├── CustToast.vue │ │ │ ├── Toast.vue │ │ │ └── index.js │ └── content │ │ ├── backTop │ │ └── BackTop.vue │ │ ├── mainTabbar │ │ └── MainTabBar.vue │ │ └── tabControl │ │ └── TabControl.vue ├── config │ └── index.js ├── main.js ├── router │ └── index.js ├── store │ └── index.js ├── utils │ ├── public.js │ ├── request.js │ └── url.js └── views │ ├── category │ ├── Category.vue │ └── childComps │ │ ├── GoodListItem.vue │ │ ├── GoodsLIst.vue │ │ ├── LeftBar.vue │ │ └── TabBar.vue │ ├── demo │ └── Demo.vue │ ├── detail │ ├── Detail.vue │ └── childComps │ │ ├── BaseInfo.vue │ │ ├── BottomBar.vue │ │ ├── CommentInfo.vue │ │ ├── DetailSwiper.vue │ │ ├── DetailTabBar.vue │ │ ├── DiscountInfo.vue │ │ ├── GoodsDisplay.vue │ │ ├── GoodsStyleInfo.vue │ │ ├── LogisticsInfo.vue │ │ ├── SaleInfo.vue │ │ └── ShopInfo.vue │ ├── home │ ├── Home.vue │ └── childComps │ │ ├── FeatureView.vue │ │ ├── GoodListItem.vue │ │ ├── GoodsLIst.vue │ │ ├── HomeSwiper.vue │ │ ├── RecommendView.vue │ │ └── SwiperView.vue │ ├── profile │ ├── Profile.vue │ └── childComps │ │ ├── FeatureView.vue │ │ ├── OrderView.vue │ │ ├── TabView.vue │ │ └── UserView.vue │ └── shopcart │ ├── ShopCart.vue │ └── childComps │ ├── DelBottomBar.vue │ ├── SettleBottomBar.vue │ └── ShopListItem.vue └── vue.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/.gitignore -------------------------------------------------------------------------------- /DEPLOYMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/DEPLOYMENT.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/api/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/api/category.js -------------------------------------------------------------------------------- /src/api/detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/api/detail.js -------------------------------------------------------------------------------- /src/api/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/api/home.js -------------------------------------------------------------------------------- /src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/api/index.js -------------------------------------------------------------------------------- /src/assets/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/css/base.css -------------------------------------------------------------------------------- /src/assets/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/css/normalize.css -------------------------------------------------------------------------------- /src/assets/css/reset.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/css/reset.less -------------------------------------------------------------------------------- /src/assets/img/common/GitHub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/common/GitHub.svg -------------------------------------------------------------------------------- /src/assets/img/common/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/common/back.svg -------------------------------------------------------------------------------- /src/assets/img/common/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/common/check.svg -------------------------------------------------------------------------------- /src/assets/img/common/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/common/code.svg -------------------------------------------------------------------------------- /src/assets/img/common/cust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/common/cust.svg -------------------------------------------------------------------------------- /src/assets/img/common/down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/common/down.svg -------------------------------------------------------------------------------- /src/assets/img/common/fail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/common/fail.svg -------------------------------------------------------------------------------- /src/assets/img/common/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/common/heart.svg -------------------------------------------------------------------------------- /src/assets/img/common/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/common/message.svg -------------------------------------------------------------------------------- /src/assets/img/common/normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/common/normal.svg -------------------------------------------------------------------------------- /src/assets/img/common/setting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/common/setting.svg -------------------------------------------------------------------------------- /src/assets/img/common/shop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/common/shop.svg -------------------------------------------------------------------------------- /src/assets/img/common/shop_bag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/common/shop_bag.svg -------------------------------------------------------------------------------- /src/assets/img/common/success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/common/success.svg -------------------------------------------------------------------------------- /src/assets/img/common/top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/common/top.svg -------------------------------------------------------------------------------- /src/assets/img/common/un_heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/common/un_heart.svg -------------------------------------------------------------------------------- /src/assets/img/common/vip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/common/vip.svg -------------------------------------------------------------------------------- /src/assets/img/common/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/common/warning.svg -------------------------------------------------------------------------------- /src/assets/img/common/yes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/common/yes.svg -------------------------------------------------------------------------------- /src/assets/img/profile/coupon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/profile/coupon.svg -------------------------------------------------------------------------------- /src/assets/img/profile/foot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/profile/foot.svg -------------------------------------------------------------------------------- /src/assets/img/profile/in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/profile/in.svg -------------------------------------------------------------------------------- /src/assets/img/profile/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/profile/phone.svg -------------------------------------------------------------------------------- /src/assets/img/profile/portrait.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/profile/portrait.svg -------------------------------------------------------------------------------- /src/assets/img/profile/w_comment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/profile/w_comment.svg -------------------------------------------------------------------------------- /src/assets/img/profile/w_pay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/profile/w_pay.svg -------------------------------------------------------------------------------- /src/assets/img/profile/w_recovery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/profile/w_recovery.svg -------------------------------------------------------------------------------- /src/assets/img/profile/w_refund.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/profile/w_refund.svg -------------------------------------------------------------------------------- /src/assets/img/profile/w_send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/profile/w_send.svg -------------------------------------------------------------------------------- /src/assets/img/tabbar/category.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/tabbar/category.svg -------------------------------------------------------------------------------- /src/assets/img/tabbar/category_active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/tabbar/category_active.svg -------------------------------------------------------------------------------- /src/assets/img/tabbar/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/tabbar/home.svg -------------------------------------------------------------------------------- /src/assets/img/tabbar/home_active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/tabbar/home_active.svg -------------------------------------------------------------------------------- /src/assets/img/tabbar/profile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/tabbar/profile.svg -------------------------------------------------------------------------------- /src/assets/img/tabbar/profile_active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/tabbar/profile_active.svg -------------------------------------------------------------------------------- /src/assets/img/tabbar/shopcart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/tabbar/shopcart.svg -------------------------------------------------------------------------------- /src/assets/img/tabbar/shopcart_active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/img/tabbar/shopcart_active.svg -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/common/mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/common/mixin.js -------------------------------------------------------------------------------- /src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /src/components/common/navbar/NavBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/components/common/navbar/NavBar.vue -------------------------------------------------------------------------------- /src/components/common/scroll/scroll.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/components/common/scroll/scroll.vue -------------------------------------------------------------------------------- /src/components/common/swiper/Swiper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/components/common/swiper/Swiper.vue -------------------------------------------------------------------------------- /src/components/common/swiper/SwiperItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/components/common/swiper/SwiperItem.vue -------------------------------------------------------------------------------- /src/components/common/swiper/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/components/common/swiper/index.js -------------------------------------------------------------------------------- /src/components/common/tabbar/TabBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/components/common/tabbar/TabBar.vue -------------------------------------------------------------------------------- /src/components/common/tabbar/TabBarItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/components/common/tabbar/TabBarItem.vue -------------------------------------------------------------------------------- /src/components/common/toast/CustToast.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/components/common/toast/CustToast.vue -------------------------------------------------------------------------------- /src/components/common/toast/Toast.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/components/common/toast/Toast.vue -------------------------------------------------------------------------------- /src/components/common/toast/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/components/common/toast/index.js -------------------------------------------------------------------------------- /src/components/content/backTop/BackTop.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/components/content/backTop/BackTop.vue -------------------------------------------------------------------------------- /src/components/content/mainTabbar/MainTabBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/components/content/mainTabbar/MainTabBar.vue -------------------------------------------------------------------------------- /src/components/content/tabControl/TabControl.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/components/content/tabControl/TabControl.vue -------------------------------------------------------------------------------- /src/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/config/index.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/utils/public.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/utils/public.js -------------------------------------------------------------------------------- /src/utils/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/utils/request.js -------------------------------------------------------------------------------- /src/utils/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/utils/url.js -------------------------------------------------------------------------------- /src/views/category/Category.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/views/category/Category.vue -------------------------------------------------------------------------------- /src/views/category/childComps/GoodListItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/views/category/childComps/GoodListItem.vue -------------------------------------------------------------------------------- /src/views/category/childComps/GoodsLIst.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/views/category/childComps/GoodsLIst.vue -------------------------------------------------------------------------------- /src/views/category/childComps/LeftBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/views/category/childComps/LeftBar.vue -------------------------------------------------------------------------------- /src/views/category/childComps/TabBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/views/category/childComps/TabBar.vue -------------------------------------------------------------------------------- /src/views/demo/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/views/demo/Demo.vue -------------------------------------------------------------------------------- /src/views/detail/Detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/views/detail/Detail.vue -------------------------------------------------------------------------------- /src/views/detail/childComps/BaseInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/views/detail/childComps/BaseInfo.vue -------------------------------------------------------------------------------- /src/views/detail/childComps/BottomBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/views/detail/childComps/BottomBar.vue -------------------------------------------------------------------------------- /src/views/detail/childComps/CommentInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/views/detail/childComps/CommentInfo.vue -------------------------------------------------------------------------------- /src/views/detail/childComps/DetailSwiper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/views/detail/childComps/DetailSwiper.vue -------------------------------------------------------------------------------- /src/views/detail/childComps/DetailTabBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/views/detail/childComps/DetailTabBar.vue -------------------------------------------------------------------------------- /src/views/detail/childComps/DiscountInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/views/detail/childComps/DiscountInfo.vue -------------------------------------------------------------------------------- /src/views/detail/childComps/GoodsDisplay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/views/detail/childComps/GoodsDisplay.vue -------------------------------------------------------------------------------- /src/views/detail/childComps/GoodsStyleInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/views/detail/childComps/GoodsStyleInfo.vue -------------------------------------------------------------------------------- /src/views/detail/childComps/LogisticsInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/views/detail/childComps/LogisticsInfo.vue -------------------------------------------------------------------------------- /src/views/detail/childComps/SaleInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/views/detail/childComps/SaleInfo.vue -------------------------------------------------------------------------------- /src/views/detail/childComps/ShopInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/views/detail/childComps/ShopInfo.vue -------------------------------------------------------------------------------- /src/views/home/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/views/home/Home.vue -------------------------------------------------------------------------------- /src/views/home/childComps/FeatureView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/views/home/childComps/FeatureView.vue -------------------------------------------------------------------------------- /src/views/home/childComps/GoodListItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/views/home/childComps/GoodListItem.vue -------------------------------------------------------------------------------- /src/views/home/childComps/GoodsLIst.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/views/home/childComps/GoodsLIst.vue -------------------------------------------------------------------------------- /src/views/home/childComps/HomeSwiper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/views/home/childComps/HomeSwiper.vue -------------------------------------------------------------------------------- /src/views/home/childComps/RecommendView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/views/home/childComps/RecommendView.vue -------------------------------------------------------------------------------- /src/views/home/childComps/SwiperView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/views/home/childComps/SwiperView.vue -------------------------------------------------------------------------------- /src/views/profile/Profile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/views/profile/Profile.vue -------------------------------------------------------------------------------- /src/views/profile/childComps/FeatureView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/views/profile/childComps/FeatureView.vue -------------------------------------------------------------------------------- /src/views/profile/childComps/OrderView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/views/profile/childComps/OrderView.vue -------------------------------------------------------------------------------- /src/views/profile/childComps/TabView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/views/profile/childComps/TabView.vue -------------------------------------------------------------------------------- /src/views/profile/childComps/UserView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/views/profile/childComps/UserView.vue -------------------------------------------------------------------------------- /src/views/shopcart/ShopCart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/views/shopcart/ShopCart.vue -------------------------------------------------------------------------------- /src/views/shopcart/childComps/DelBottomBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/views/shopcart/childComps/DelBottomBar.vue -------------------------------------------------------------------------------- /src/views/shopcart/childComps/SettleBottomBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/views/shopcart/childComps/SettleBottomBar.vue -------------------------------------------------------------------------------- /src/views/shopcart/childComps/ShopListItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/src/views/shopcart/childComps/ShopListItem.vue -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxy2077/Mall/HEAD/vue.config.js --------------------------------------------------------------------------------