├── 3MIG_client ├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .postcssrc.js ├── build │ ├── build.js │ ├── check-versions.js │ ├── logo.png │ ├── utils.js │ ├── vue-loader.conf.js │ ├── webpack.base.conf.js │ ├── webpack.dev.conf.js │ └── webpack.prod.conf.js ├── config │ ├── dev.env.js │ ├── index.js │ ├── prod.env.js │ └── test.env.js ├── index.html ├── package-lock.json ├── package.json ├── src │ ├── App.vue │ ├── assets │ │ ├── icon │ │ │ ├── RMB.svg │ │ │ ├── back.svg │ │ │ ├── back1.png │ │ │ ├── cart.svg │ │ │ ├── cart1.svg │ │ │ ├── cart3.png │ │ │ ├── category.svg │ │ │ ├── close.svg │ │ │ ├── customer.png │ │ │ ├── delete.png │ │ │ ├── good.svg │ │ │ ├── home.svg │ │ │ ├── home1.png │ │ │ ├── layer │ │ │ │ ├── mark.svg │ │ │ │ └── success.svg │ │ │ ├── mark.svg │ │ │ ├── pay.svg │ │ │ ├── phone1.png │ │ │ ├── phone2.png │ │ │ ├── phone3.png │ │ │ ├── receive.svg │ │ │ ├── repair.svg │ │ │ ├── rmb1.svg │ │ │ ├── search.svg │ │ │ ├── search1.svg │ │ │ ├── search2.svg │ │ │ ├── user.svg │ │ │ ├── user1.svg │ │ │ ├── userPage.svg │ │ │ ├── what.png │ │ │ ├── yes.svg │ │ │ ├── yes1.png │ │ │ └── yes2.svg │ │ └── img │ │ │ ├── logo.png │ │ │ ├── logo1.png │ │ │ ├── service │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ └── 8.png │ │ │ └── smile.png │ ├── components │ │ ├── common │ │ │ ├── ContentList.vue │ │ │ ├── MyMask.vue │ │ │ ├── commentBox.vue │ │ │ ├── goodsListOne.vue │ │ │ ├── goodsListTwo.vue │ │ │ ├── guessLike.vue │ │ │ ├── loading.vue │ │ │ ├── myLayer.vue │ │ │ ├── numCounter.vue │ │ │ ├── productButton.vue │ │ │ └── type │ │ │ │ ├── cellsAutoFill.vue │ │ │ │ ├── dividerLine.vue │ │ │ │ ├── gallery.vue │ │ │ │ ├── galleryCustom.vue │ │ │ │ ├── listActionTitle.vue │ │ │ │ ├── listVideo.vue │ │ │ │ ├── luckyDrawType.vue │ │ │ │ └── productInfo.vue │ │ ├── footer │ │ │ └── Foot.vue │ │ └── header │ │ │ └── Head.vue │ ├── config │ │ ├── ajax.js │ │ ├── cookie.js │ │ ├── directives.js │ │ └── rem.js │ ├── main.js │ ├── page │ │ ├── host │ │ │ ├── cart │ │ │ │ └── cart.vue │ │ │ ├── category │ │ │ │ └── category.vue │ │ │ ├── channel │ │ │ │ └── Channel.vue │ │ │ ├── comment │ │ │ │ ├── comment.vue │ │ │ │ ├── commentList.vue │ │ │ │ └── commentView.vue │ │ │ ├── fcode │ │ │ │ └── Fcode.vue │ │ │ ├── home │ │ │ │ └── home.vue │ │ │ ├── host.vue │ │ │ ├── mihome │ │ │ │ └── Mihome.vue │ │ │ ├── product │ │ │ │ ├── Product.vue │ │ │ │ ├── ProductList.vue │ │ │ │ ├── ProductView.vue │ │ │ │ └── product-component │ │ │ │ │ ├── BuyInfo.vue │ │ │ │ │ ├── DescTabsView.vue │ │ │ │ │ ├── GalleryView.vue │ │ │ │ │ ├── ProductParameter.vue │ │ │ │ │ ├── RecommendView.vue │ │ │ │ │ ├── TitleView.vue │ │ │ │ │ └── productCommentView.vue │ │ │ ├── search │ │ │ │ ├── search.vue │ │ │ │ ├── searchList.vue │ │ │ │ └── searchShow.vue │ │ │ ├── service │ │ │ │ └── Service.vue │ │ │ ├── set │ │ │ │ └── SetFocus.vue │ │ │ ├── user │ │ │ │ └── user.vue │ │ │ └── vip │ │ │ │ └── Vip.vue │ │ ├── login │ │ │ └── Login.vue │ │ └── product │ │ │ ├── productList │ │ │ └── productList.vue │ │ │ └── productView │ │ │ └── productView.vue │ ├── router │ │ ├── changeRouter.js │ │ └── index.js │ ├── store │ │ ├── action.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── modules │ │ │ └── cart.js │ │ ├── mutation-types.js │ │ └── mutations.js │ └── style │ │ └── common.css ├── static │ └── .gitkeep └── test │ ├── e2e │ ├── custom-assertions │ │ └── elementCount.js │ ├── nightwatch.conf.js │ ├── runner.js │ └── specs │ │ └── test.js │ └── unit │ ├── .eslintrc │ ├── jest.conf.js │ ├── setup.js │ └── specs │ └── HelloWorld.spec.js ├── 3MIG_server ├── .gitignore ├── app.js ├── modules │ ├── host │ │ ├── cart │ │ │ ├── cartPageData.js │ │ │ └── cartShoppingData.js │ │ ├── category │ │ │ └── categoryPageData.js │ │ ├── channel │ │ │ └── channelPageData.js │ │ ├── comment │ │ │ ├── commentList.js │ │ │ └── commentView.js │ │ ├── home │ │ │ ├── homeMenuContent.js │ │ │ └── homePageData.js │ │ ├── product │ │ │ ├── productList.js │ │ │ ├── productRecomm.js │ │ │ └── productView.js │ │ └── search │ │ │ ├── searchKeyData.js │ │ │ ├── searchListData.js │ │ │ └── searchPageData.js │ ├── login │ │ ├── getPersonalData.js │ │ ├── login.js │ │ ├── phoneVcode.js │ │ └── verCode.js │ └── product │ │ ├── product.js │ │ └── productRecomm.js ├── package-lock.json └── package.json ├── README.md └── demoImg ├── 1.png ├── 2.png ├── 3.png └── 4.png /3MIG_client/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/.babelrc -------------------------------------------------------------------------------- /3MIG_client/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/.editorconfig -------------------------------------------------------------------------------- /3MIG_client/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/.eslintignore -------------------------------------------------------------------------------- /3MIG_client/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/.eslintrc.js -------------------------------------------------------------------------------- /3MIG_client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/.gitignore -------------------------------------------------------------------------------- /3MIG_client/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/.postcssrc.js -------------------------------------------------------------------------------- /3MIG_client/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/build/build.js -------------------------------------------------------------------------------- /3MIG_client/build/check-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/build/check-versions.js -------------------------------------------------------------------------------- /3MIG_client/build/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/build/logo.png -------------------------------------------------------------------------------- /3MIG_client/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/build/utils.js -------------------------------------------------------------------------------- /3MIG_client/build/vue-loader.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/build/vue-loader.conf.js -------------------------------------------------------------------------------- /3MIG_client/build/webpack.base.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/build/webpack.base.conf.js -------------------------------------------------------------------------------- /3MIG_client/build/webpack.dev.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/build/webpack.dev.conf.js -------------------------------------------------------------------------------- /3MIG_client/build/webpack.prod.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/build/webpack.prod.conf.js -------------------------------------------------------------------------------- /3MIG_client/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/config/dev.env.js -------------------------------------------------------------------------------- /3MIG_client/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/config/index.js -------------------------------------------------------------------------------- /3MIG_client/config/prod.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = { 3 | NODE_ENV: '"production"' 4 | } 5 | -------------------------------------------------------------------------------- /3MIG_client/config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/config/test.env.js -------------------------------------------------------------------------------- /3MIG_client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/index.html -------------------------------------------------------------------------------- /3MIG_client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/package-lock.json -------------------------------------------------------------------------------- /3MIG_client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/package.json -------------------------------------------------------------------------------- /3MIG_client/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/App.vue -------------------------------------------------------------------------------- /3MIG_client/src/assets/icon/RMB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/icon/RMB.svg -------------------------------------------------------------------------------- /3MIG_client/src/assets/icon/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/icon/back.svg -------------------------------------------------------------------------------- /3MIG_client/src/assets/icon/back1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/icon/back1.png -------------------------------------------------------------------------------- /3MIG_client/src/assets/icon/cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/icon/cart.svg -------------------------------------------------------------------------------- /3MIG_client/src/assets/icon/cart1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/icon/cart1.svg -------------------------------------------------------------------------------- /3MIG_client/src/assets/icon/cart3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/icon/cart3.png -------------------------------------------------------------------------------- /3MIG_client/src/assets/icon/category.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/icon/category.svg -------------------------------------------------------------------------------- /3MIG_client/src/assets/icon/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/icon/close.svg -------------------------------------------------------------------------------- /3MIG_client/src/assets/icon/customer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/icon/customer.png -------------------------------------------------------------------------------- /3MIG_client/src/assets/icon/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/icon/delete.png -------------------------------------------------------------------------------- /3MIG_client/src/assets/icon/good.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/icon/good.svg -------------------------------------------------------------------------------- /3MIG_client/src/assets/icon/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/icon/home.svg -------------------------------------------------------------------------------- /3MIG_client/src/assets/icon/home1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/icon/home1.png -------------------------------------------------------------------------------- /3MIG_client/src/assets/icon/layer/mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/icon/layer/mark.svg -------------------------------------------------------------------------------- /3MIG_client/src/assets/icon/layer/success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/icon/layer/success.svg -------------------------------------------------------------------------------- /3MIG_client/src/assets/icon/mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/icon/mark.svg -------------------------------------------------------------------------------- /3MIG_client/src/assets/icon/pay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/icon/pay.svg -------------------------------------------------------------------------------- /3MIG_client/src/assets/icon/phone1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/icon/phone1.png -------------------------------------------------------------------------------- /3MIG_client/src/assets/icon/phone2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/icon/phone2.png -------------------------------------------------------------------------------- /3MIG_client/src/assets/icon/phone3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/icon/phone3.png -------------------------------------------------------------------------------- /3MIG_client/src/assets/icon/receive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/icon/receive.svg -------------------------------------------------------------------------------- /3MIG_client/src/assets/icon/repair.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/icon/repair.svg -------------------------------------------------------------------------------- /3MIG_client/src/assets/icon/rmb1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/icon/rmb1.svg -------------------------------------------------------------------------------- /3MIG_client/src/assets/icon/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/icon/search.svg -------------------------------------------------------------------------------- /3MIG_client/src/assets/icon/search1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/icon/search1.svg -------------------------------------------------------------------------------- /3MIG_client/src/assets/icon/search2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/icon/search2.svg -------------------------------------------------------------------------------- /3MIG_client/src/assets/icon/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/icon/user.svg -------------------------------------------------------------------------------- /3MIG_client/src/assets/icon/user1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/icon/user1.svg -------------------------------------------------------------------------------- /3MIG_client/src/assets/icon/userPage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/icon/userPage.svg -------------------------------------------------------------------------------- /3MIG_client/src/assets/icon/what.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/icon/what.png -------------------------------------------------------------------------------- /3MIG_client/src/assets/icon/yes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/icon/yes.svg -------------------------------------------------------------------------------- /3MIG_client/src/assets/icon/yes1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/icon/yes1.png -------------------------------------------------------------------------------- /3MIG_client/src/assets/icon/yes2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/icon/yes2.svg -------------------------------------------------------------------------------- /3MIG_client/src/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/img/logo.png -------------------------------------------------------------------------------- /3MIG_client/src/assets/img/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/img/logo1.png -------------------------------------------------------------------------------- /3MIG_client/src/assets/img/service/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/img/service/1.png -------------------------------------------------------------------------------- /3MIG_client/src/assets/img/service/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/img/service/2.png -------------------------------------------------------------------------------- /3MIG_client/src/assets/img/service/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/img/service/3.png -------------------------------------------------------------------------------- /3MIG_client/src/assets/img/service/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/img/service/4.png -------------------------------------------------------------------------------- /3MIG_client/src/assets/img/service/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/img/service/5.png -------------------------------------------------------------------------------- /3MIG_client/src/assets/img/service/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/img/service/6.png -------------------------------------------------------------------------------- /3MIG_client/src/assets/img/service/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/img/service/7.png -------------------------------------------------------------------------------- /3MIG_client/src/assets/img/service/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/img/service/8.png -------------------------------------------------------------------------------- /3MIG_client/src/assets/img/smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/assets/img/smile.png -------------------------------------------------------------------------------- /3MIG_client/src/components/common/ContentList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/components/common/ContentList.vue -------------------------------------------------------------------------------- /3MIG_client/src/components/common/MyMask.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/components/common/MyMask.vue -------------------------------------------------------------------------------- /3MIG_client/src/components/common/commentBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/components/common/commentBox.vue -------------------------------------------------------------------------------- /3MIG_client/src/components/common/goodsListOne.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/components/common/goodsListOne.vue -------------------------------------------------------------------------------- /3MIG_client/src/components/common/goodsListTwo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/components/common/goodsListTwo.vue -------------------------------------------------------------------------------- /3MIG_client/src/components/common/guessLike.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/components/common/guessLike.vue -------------------------------------------------------------------------------- /3MIG_client/src/components/common/loading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/components/common/loading.vue -------------------------------------------------------------------------------- /3MIG_client/src/components/common/myLayer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/components/common/myLayer.vue -------------------------------------------------------------------------------- /3MIG_client/src/components/common/numCounter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/components/common/numCounter.vue -------------------------------------------------------------------------------- /3MIG_client/src/components/common/productButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/components/common/productButton.vue -------------------------------------------------------------------------------- /3MIG_client/src/components/common/type/cellsAutoFill.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/components/common/type/cellsAutoFill.vue -------------------------------------------------------------------------------- /3MIG_client/src/components/common/type/dividerLine.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/components/common/type/dividerLine.vue -------------------------------------------------------------------------------- /3MIG_client/src/components/common/type/gallery.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/components/common/type/gallery.vue -------------------------------------------------------------------------------- /3MIG_client/src/components/common/type/galleryCustom.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/components/common/type/galleryCustom.vue -------------------------------------------------------------------------------- /3MIG_client/src/components/common/type/listActionTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/components/common/type/listActionTitle.vue -------------------------------------------------------------------------------- /3MIG_client/src/components/common/type/listVideo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/components/common/type/listVideo.vue -------------------------------------------------------------------------------- /3MIG_client/src/components/common/type/luckyDrawType.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/components/common/type/luckyDrawType.vue -------------------------------------------------------------------------------- /3MIG_client/src/components/common/type/productInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/components/common/type/productInfo.vue -------------------------------------------------------------------------------- /3MIG_client/src/components/footer/Foot.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/components/footer/Foot.vue -------------------------------------------------------------------------------- /3MIG_client/src/components/header/Head.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/components/header/Head.vue -------------------------------------------------------------------------------- /3MIG_client/src/config/ajax.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3MIG_client/src/config/cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/config/cookie.js -------------------------------------------------------------------------------- /3MIG_client/src/config/directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/config/directives.js -------------------------------------------------------------------------------- /3MIG_client/src/config/rem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/config/rem.js -------------------------------------------------------------------------------- /3MIG_client/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/main.js -------------------------------------------------------------------------------- /3MIG_client/src/page/host/cart/cart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/page/host/cart/cart.vue -------------------------------------------------------------------------------- /3MIG_client/src/page/host/category/category.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/page/host/category/category.vue -------------------------------------------------------------------------------- /3MIG_client/src/page/host/channel/Channel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/page/host/channel/Channel.vue -------------------------------------------------------------------------------- /3MIG_client/src/page/host/comment/comment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/page/host/comment/comment.vue -------------------------------------------------------------------------------- /3MIG_client/src/page/host/comment/commentList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/page/host/comment/commentList.vue -------------------------------------------------------------------------------- /3MIG_client/src/page/host/comment/commentView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/page/host/comment/commentView.vue -------------------------------------------------------------------------------- /3MIG_client/src/page/host/fcode/Fcode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/page/host/fcode/Fcode.vue -------------------------------------------------------------------------------- /3MIG_client/src/page/host/home/home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/page/host/home/home.vue -------------------------------------------------------------------------------- /3MIG_client/src/page/host/host.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/page/host/host.vue -------------------------------------------------------------------------------- /3MIG_client/src/page/host/mihome/Mihome.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/page/host/mihome/Mihome.vue -------------------------------------------------------------------------------- /3MIG_client/src/page/host/product/Product.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/page/host/product/Product.vue -------------------------------------------------------------------------------- /3MIG_client/src/page/host/product/ProductList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/page/host/product/ProductList.vue -------------------------------------------------------------------------------- /3MIG_client/src/page/host/product/ProductView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/page/host/product/ProductView.vue -------------------------------------------------------------------------------- /3MIG_client/src/page/host/product/product-component/BuyInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/page/host/product/product-component/BuyInfo.vue -------------------------------------------------------------------------------- /3MIG_client/src/page/host/product/product-component/DescTabsView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/page/host/product/product-component/DescTabsView.vue -------------------------------------------------------------------------------- /3MIG_client/src/page/host/product/product-component/GalleryView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/page/host/product/product-component/GalleryView.vue -------------------------------------------------------------------------------- /3MIG_client/src/page/host/product/product-component/ProductParameter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/page/host/product/product-component/ProductParameter.vue -------------------------------------------------------------------------------- /3MIG_client/src/page/host/product/product-component/RecommendView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/page/host/product/product-component/RecommendView.vue -------------------------------------------------------------------------------- /3MIG_client/src/page/host/product/product-component/TitleView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/page/host/product/product-component/TitleView.vue -------------------------------------------------------------------------------- /3MIG_client/src/page/host/product/product-component/productCommentView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/page/host/product/product-component/productCommentView.vue -------------------------------------------------------------------------------- /3MIG_client/src/page/host/search/search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/page/host/search/search.vue -------------------------------------------------------------------------------- /3MIG_client/src/page/host/search/searchList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/page/host/search/searchList.vue -------------------------------------------------------------------------------- /3MIG_client/src/page/host/search/searchShow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/page/host/search/searchShow.vue -------------------------------------------------------------------------------- /3MIG_client/src/page/host/service/Service.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/page/host/service/Service.vue -------------------------------------------------------------------------------- /3MIG_client/src/page/host/set/SetFocus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/page/host/set/SetFocus.vue -------------------------------------------------------------------------------- /3MIG_client/src/page/host/user/user.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/page/host/user/user.vue -------------------------------------------------------------------------------- /3MIG_client/src/page/host/vip/Vip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/page/host/vip/Vip.vue -------------------------------------------------------------------------------- /3MIG_client/src/page/login/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/page/login/Login.vue -------------------------------------------------------------------------------- /3MIG_client/src/page/product/productList/productList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/page/product/productList/productList.vue -------------------------------------------------------------------------------- /3MIG_client/src/page/product/productView/productView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/page/product/productView/productView.vue -------------------------------------------------------------------------------- /3MIG_client/src/router/changeRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/router/changeRouter.js -------------------------------------------------------------------------------- /3MIG_client/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/router/index.js -------------------------------------------------------------------------------- /3MIG_client/src/store/action.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3MIG_client/src/store/getters.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3MIG_client/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/store/index.js -------------------------------------------------------------------------------- /3MIG_client/src/store/modules/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/store/modules/cart.js -------------------------------------------------------------------------------- /3MIG_client/src/store/mutation-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/store/mutation-types.js -------------------------------------------------------------------------------- /3MIG_client/src/store/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/store/mutations.js -------------------------------------------------------------------------------- /3MIG_client/src/style/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/src/style/common.css -------------------------------------------------------------------------------- /3MIG_client/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3MIG_client/test/e2e/custom-assertions/elementCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/test/e2e/custom-assertions/elementCount.js -------------------------------------------------------------------------------- /3MIG_client/test/e2e/nightwatch.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/test/e2e/nightwatch.conf.js -------------------------------------------------------------------------------- /3MIG_client/test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/test/e2e/runner.js -------------------------------------------------------------------------------- /3MIG_client/test/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/test/e2e/specs/test.js -------------------------------------------------------------------------------- /3MIG_client/test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/test/unit/.eslintrc -------------------------------------------------------------------------------- /3MIG_client/test/unit/jest.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/test/unit/jest.conf.js -------------------------------------------------------------------------------- /3MIG_client/test/unit/setup.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | 3 | Vue.config.productionTip = false 4 | -------------------------------------------------------------------------------- /3MIG_client/test/unit/specs/HelloWorld.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_client/test/unit/specs/HelloWorld.spec.js -------------------------------------------------------------------------------- /3MIG_server/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /3MIG_server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_server/app.js -------------------------------------------------------------------------------- /3MIG_server/modules/host/cart/cartPageData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_server/modules/host/cart/cartPageData.js -------------------------------------------------------------------------------- /3MIG_server/modules/host/cart/cartShoppingData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_server/modules/host/cart/cartShoppingData.js -------------------------------------------------------------------------------- /3MIG_server/modules/host/category/categoryPageData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_server/modules/host/category/categoryPageData.js -------------------------------------------------------------------------------- /3MIG_server/modules/host/channel/channelPageData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_server/modules/host/channel/channelPageData.js -------------------------------------------------------------------------------- /3MIG_server/modules/host/comment/commentList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_server/modules/host/comment/commentList.js -------------------------------------------------------------------------------- /3MIG_server/modules/host/comment/commentView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_server/modules/host/comment/commentView.js -------------------------------------------------------------------------------- /3MIG_server/modules/host/home/homeMenuContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_server/modules/host/home/homeMenuContent.js -------------------------------------------------------------------------------- /3MIG_server/modules/host/home/homePageData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_server/modules/host/home/homePageData.js -------------------------------------------------------------------------------- /3MIG_server/modules/host/product/productList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_server/modules/host/product/productList.js -------------------------------------------------------------------------------- /3MIG_server/modules/host/product/productRecomm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_server/modules/host/product/productRecomm.js -------------------------------------------------------------------------------- /3MIG_server/modules/host/product/productView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_server/modules/host/product/productView.js -------------------------------------------------------------------------------- /3MIG_server/modules/host/search/searchKeyData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_server/modules/host/search/searchKeyData.js -------------------------------------------------------------------------------- /3MIG_server/modules/host/search/searchListData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_server/modules/host/search/searchListData.js -------------------------------------------------------------------------------- /3MIG_server/modules/host/search/searchPageData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_server/modules/host/search/searchPageData.js -------------------------------------------------------------------------------- /3MIG_server/modules/login/getPersonalData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_server/modules/login/getPersonalData.js -------------------------------------------------------------------------------- /3MIG_server/modules/login/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_server/modules/login/login.js -------------------------------------------------------------------------------- /3MIG_server/modules/login/phoneVcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_server/modules/login/phoneVcode.js -------------------------------------------------------------------------------- /3MIG_server/modules/login/verCode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_server/modules/login/verCode.js -------------------------------------------------------------------------------- /3MIG_server/modules/product/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_server/modules/product/product.js -------------------------------------------------------------------------------- /3MIG_server/modules/product/productRecomm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_server/modules/product/productRecomm.js -------------------------------------------------------------------------------- /3MIG_server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_server/package-lock.json -------------------------------------------------------------------------------- /3MIG_server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/3MIG_server/package.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/README.md -------------------------------------------------------------------------------- /demoImg/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/demoImg/1.png -------------------------------------------------------------------------------- /demoImg/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/demoImg/2.png -------------------------------------------------------------------------------- /demoImg/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/demoImg/3.png -------------------------------------------------------------------------------- /demoImg/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VBlazing/3MIG/HEAD/demoImg/4.png --------------------------------------------------------------------------------