├── .browserslistrc ├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── babel.config.js ├── package.json ├── public ├── favicon.ico └── index.html ├── src ├── App.vue ├── assets │ ├── css │ │ ├── base.css │ │ └── normalize.css │ └── img │ │ ├── cart │ │ └── tick.svg │ │ ├── common │ │ ├── back.svg │ │ ├── collect.svg │ │ ├── placeholder.png │ │ └── top.png │ │ ├── detail │ │ └── detail_bottom.png │ │ ├── home │ │ └── recommend_bg.jpg │ │ ├── profile │ │ ├── back.svg │ │ ├── enter.svg │ │ ├── guanyu.svg │ │ ├── huiyuan.svg │ │ ├── phone.svg │ │ ├── shangcheng.svg │ │ ├── shezhi.svg │ │ └── xiaoxi.svg │ │ └── tabbar │ │ ├── fenlei-b.svg │ │ ├── fenlei.svg │ │ ├── gouwuche-b.svg │ │ ├── gouwuche.svg │ │ ├── shouye-b.svg │ │ ├── shouye.svg │ │ ├── wode-b.svg │ │ └── wode.svg ├── common │ └── utils.js ├── components │ ├── common │ │ ├── scroll │ │ │ └── Scroll.vue │ │ ├── swiper │ │ │ ├── Swiper.vue │ │ │ ├── SwiperItem.vue │ │ │ └── index.js │ │ ├── tabbar │ │ │ ├── TabBar.vue │ │ │ └── TabBarItem.vue │ │ ├── toast │ │ │ ├── Toast.vue │ │ │ └── index.js │ │ └── topbar │ │ │ └── TopBar.vue │ └── content │ │ ├── backTop │ │ └── BackTop.vue │ │ ├── cartCheck │ │ └── cartCheckBar.vue │ │ ├── goods │ │ ├── GoodsList.vue │ │ └── GoodsListItem.vue │ │ ├── mainTabbar │ │ └── MainTabBar.vue │ │ └── tabCon │ │ └── TabCon.vue ├── main.js ├── network │ ├── axios.js │ ├── category.js │ ├── detail.js │ └── home.js ├── router │ └── index.js ├── store │ ├── actions.js │ ├── index.js │ ├── mutation.type.js │ └── mutations.js └── views │ ├── cart │ ├── Cart.vue │ └── childsComps │ │ ├── cartBottom.vue │ │ ├── cartList.vue │ │ └── cartListItem.vue │ ├── category │ ├── Category.vue │ └── childComps │ │ ├── TabContentCategory.vue │ │ └── TabMenu.vue │ ├── detail │ ├── Detail.vue │ └── childsComps │ │ ├── DetailButton.vue │ │ ├── DetailComment.vue │ │ ├── DetailGoods.vue │ │ ├── DetailInfo.vue │ │ ├── DetailParam.vue │ │ ├── DetailShop.vue │ │ ├── DetailSwiper.vue │ │ └── DetailTopBar.vue │ ├── home │ ├── Home.vue │ └── childComps │ │ ├── HomeFeatureView.vue │ │ ├── HomeRecommendView.vue │ │ └── HomeSwiper.vue │ └── profile │ ├── Profile.vue │ └── childCopms │ ├── ListView.vue │ └── User.vue └── vue.config.js /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/assets/css/base.css -------------------------------------------------------------------------------- /src/assets/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/assets/css/normalize.css -------------------------------------------------------------------------------- /src/assets/img/cart/tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/assets/img/cart/tick.svg -------------------------------------------------------------------------------- /src/assets/img/common/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/assets/img/common/back.svg -------------------------------------------------------------------------------- /src/assets/img/common/collect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/assets/img/common/collect.svg -------------------------------------------------------------------------------- /src/assets/img/common/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/assets/img/common/placeholder.png -------------------------------------------------------------------------------- /src/assets/img/common/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/assets/img/common/top.png -------------------------------------------------------------------------------- /src/assets/img/detail/detail_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/assets/img/detail/detail_bottom.png -------------------------------------------------------------------------------- /src/assets/img/home/recommend_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/assets/img/home/recommend_bg.jpg -------------------------------------------------------------------------------- /src/assets/img/profile/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/assets/img/profile/back.svg -------------------------------------------------------------------------------- /src/assets/img/profile/enter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/assets/img/profile/enter.svg -------------------------------------------------------------------------------- /src/assets/img/profile/guanyu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/assets/img/profile/guanyu.svg -------------------------------------------------------------------------------- /src/assets/img/profile/huiyuan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/assets/img/profile/huiyuan.svg -------------------------------------------------------------------------------- /src/assets/img/profile/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/assets/img/profile/phone.svg -------------------------------------------------------------------------------- /src/assets/img/profile/shangcheng.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/assets/img/profile/shangcheng.svg -------------------------------------------------------------------------------- /src/assets/img/profile/shezhi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/assets/img/profile/shezhi.svg -------------------------------------------------------------------------------- /src/assets/img/profile/xiaoxi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/assets/img/profile/xiaoxi.svg -------------------------------------------------------------------------------- /src/assets/img/tabbar/fenlei-b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/assets/img/tabbar/fenlei-b.svg -------------------------------------------------------------------------------- /src/assets/img/tabbar/fenlei.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/assets/img/tabbar/fenlei.svg -------------------------------------------------------------------------------- /src/assets/img/tabbar/gouwuche-b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/assets/img/tabbar/gouwuche-b.svg -------------------------------------------------------------------------------- /src/assets/img/tabbar/gouwuche.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/assets/img/tabbar/gouwuche.svg -------------------------------------------------------------------------------- /src/assets/img/tabbar/shouye-b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/assets/img/tabbar/shouye-b.svg -------------------------------------------------------------------------------- /src/assets/img/tabbar/shouye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/assets/img/tabbar/shouye.svg -------------------------------------------------------------------------------- /src/assets/img/tabbar/wode-b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/assets/img/tabbar/wode-b.svg -------------------------------------------------------------------------------- /src/assets/img/tabbar/wode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/assets/img/tabbar/wode.svg -------------------------------------------------------------------------------- /src/common/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/common/utils.js -------------------------------------------------------------------------------- /src/components/common/scroll/Scroll.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/components/common/scroll/Scroll.vue -------------------------------------------------------------------------------- /src/components/common/swiper/Swiper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/components/common/swiper/Swiper.vue -------------------------------------------------------------------------------- /src/components/common/swiper/SwiperItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/components/common/swiper/SwiperItem.vue -------------------------------------------------------------------------------- /src/components/common/swiper/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/components/common/swiper/index.js -------------------------------------------------------------------------------- /src/components/common/tabbar/TabBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/components/common/tabbar/TabBar.vue -------------------------------------------------------------------------------- /src/components/common/tabbar/TabBarItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/components/common/tabbar/TabBarItem.vue -------------------------------------------------------------------------------- /src/components/common/toast/Toast.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/components/common/toast/Toast.vue -------------------------------------------------------------------------------- /src/components/common/toast/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/components/common/toast/index.js -------------------------------------------------------------------------------- /src/components/common/topbar/TopBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/components/common/topbar/TopBar.vue -------------------------------------------------------------------------------- /src/components/content/backTop/BackTop.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/components/content/backTop/BackTop.vue -------------------------------------------------------------------------------- /src/components/content/cartCheck/cartCheckBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/components/content/cartCheck/cartCheckBar.vue -------------------------------------------------------------------------------- /src/components/content/goods/GoodsList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/components/content/goods/GoodsList.vue -------------------------------------------------------------------------------- /src/components/content/goods/GoodsListItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/components/content/goods/GoodsListItem.vue -------------------------------------------------------------------------------- /src/components/content/mainTabbar/MainTabBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/components/content/mainTabbar/MainTabBar.vue -------------------------------------------------------------------------------- /src/components/content/tabCon/TabCon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/components/content/tabCon/TabCon.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/main.js -------------------------------------------------------------------------------- /src/network/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/network/axios.js -------------------------------------------------------------------------------- /src/network/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/network/category.js -------------------------------------------------------------------------------- /src/network/detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/network/detail.js -------------------------------------------------------------------------------- /src/network/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/network/home.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/store/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/store/actions.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/mutation.type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/store/mutation.type.js -------------------------------------------------------------------------------- /src/store/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/store/mutations.js -------------------------------------------------------------------------------- /src/views/cart/Cart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/views/cart/Cart.vue -------------------------------------------------------------------------------- /src/views/cart/childsComps/cartBottom.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/views/cart/childsComps/cartBottom.vue -------------------------------------------------------------------------------- /src/views/cart/childsComps/cartList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/views/cart/childsComps/cartList.vue -------------------------------------------------------------------------------- /src/views/cart/childsComps/cartListItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/views/cart/childsComps/cartListItem.vue -------------------------------------------------------------------------------- /src/views/category/Category.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/views/category/Category.vue -------------------------------------------------------------------------------- /src/views/category/childComps/TabContentCategory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/views/category/childComps/TabContentCategory.vue -------------------------------------------------------------------------------- /src/views/category/childComps/TabMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/views/category/childComps/TabMenu.vue -------------------------------------------------------------------------------- /src/views/detail/Detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/views/detail/Detail.vue -------------------------------------------------------------------------------- /src/views/detail/childsComps/DetailButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/views/detail/childsComps/DetailButton.vue -------------------------------------------------------------------------------- /src/views/detail/childsComps/DetailComment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/views/detail/childsComps/DetailComment.vue -------------------------------------------------------------------------------- /src/views/detail/childsComps/DetailGoods.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/views/detail/childsComps/DetailGoods.vue -------------------------------------------------------------------------------- /src/views/detail/childsComps/DetailInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/views/detail/childsComps/DetailInfo.vue -------------------------------------------------------------------------------- /src/views/detail/childsComps/DetailParam.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/views/detail/childsComps/DetailParam.vue -------------------------------------------------------------------------------- /src/views/detail/childsComps/DetailShop.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/views/detail/childsComps/DetailShop.vue -------------------------------------------------------------------------------- /src/views/detail/childsComps/DetailSwiper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/views/detail/childsComps/DetailSwiper.vue -------------------------------------------------------------------------------- /src/views/detail/childsComps/DetailTopBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/views/detail/childsComps/DetailTopBar.vue -------------------------------------------------------------------------------- /src/views/home/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/views/home/Home.vue -------------------------------------------------------------------------------- /src/views/home/childComps/HomeFeatureView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/views/home/childComps/HomeFeatureView.vue -------------------------------------------------------------------------------- /src/views/home/childComps/HomeRecommendView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/views/home/childComps/HomeRecommendView.vue -------------------------------------------------------------------------------- /src/views/home/childComps/HomeSwiper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/views/home/childComps/HomeSwiper.vue -------------------------------------------------------------------------------- /src/views/profile/Profile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/views/profile/Profile.vue -------------------------------------------------------------------------------- /src/views/profile/childCopms/ListView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/views/profile/childCopms/ListView.vue -------------------------------------------------------------------------------- /src/views/profile/childCopms/User.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/src/views/profile/childCopms/User.vue -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhimo/yizhimo.supermall/HEAD/vue.config.js --------------------------------------------------------------------------------