├── .babelrc ├── .editorconfig ├── .gitignore ├── .postcssrc.js ├── README.md ├── config ├── dev.env.js ├── index.js └── prod.env.js ├── data.json ├── index.html ├── package.json ├── src ├── App.vue ├── api │ ├── data.js │ └── http.js ├── assets │ └── address.js ├── components │ ├── footer │ │ ├── index.less │ │ └── index.vue │ └── header │ │ └── index.vue ├── fon │ ├── iconfont.css │ ├── iconfont.eot │ ├── iconfont.js │ ├── iconfont.svg │ ├── iconfont.ttf │ └── iconfont.woff ├── main.js ├── pages │ ├── classify │ │ ├── classify.vue │ │ └── compnent │ │ │ ├── classify-left.vue │ │ │ └── classify-right.vue │ ├── detail │ │ └── index.vue │ ├── index │ │ └── index.vue │ ├── news │ │ ├── detail.vue │ │ └── index.vue │ ├── pay │ │ ├── address.vue │ │ ├── pay.vue │ │ └── success.vue │ ├── shops │ │ ├── parts.vue │ │ └── phone.vue │ └── user │ │ ├── address │ │ ├── add.vue │ │ ├── index.vue │ │ └── up.vue │ │ ├── cart │ │ └── index.vue │ │ ├── collections │ │ └── index.vue │ │ ├── login.vue │ │ ├── main.vue │ │ ├── order │ │ ├── detail.vue │ │ └── index.vue │ │ └── register.vue ├── rem │ └── rem.js ├── router │ └── index.js ├── styles │ └── style.css └── vuex │ ├── index.js │ ├── modules │ ├── cart.js │ └── order.js │ └── mutations-type.js └── static ├── .gitkeep ├── data.json ├── img ├── 111.png ├── 222.png ├── 333.png ├── 444.png ├── bj.jpg ├── bj.png ├── details.jpg ├── dingdan.png ├── dingzhi.jpg ├── download.jpg ├── gouwuche.png ├── list_details_09.jpg ├── official.png ├── peijian.jpg ├── pingbao.jpg ├── qiandao.png ├── qqq.png ├── shop.png ├── t.png ├── tou.jpg ├── tuijian.png ├── xuangou.jpg └── yanbao.png └── lowSource ├── .1.0.gif.icloud ├── 2.0.png ├── 3.0.png ├── 4.0.png └── vue.png /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/.gitignore -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/.postcssrc.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/README.md -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/config/dev.env.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/data.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/package.json -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/api/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/api/data.js -------------------------------------------------------------------------------- /src/api/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/api/http.js -------------------------------------------------------------------------------- /src/assets/address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/assets/address.js -------------------------------------------------------------------------------- /src/components/footer/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/components/footer/index.less -------------------------------------------------------------------------------- /src/components/footer/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/components/footer/index.vue -------------------------------------------------------------------------------- /src/components/header/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/components/header/index.vue -------------------------------------------------------------------------------- /src/fon/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/fon/iconfont.css -------------------------------------------------------------------------------- /src/fon/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/fon/iconfont.eot -------------------------------------------------------------------------------- /src/fon/iconfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/fon/iconfont.js -------------------------------------------------------------------------------- /src/fon/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/fon/iconfont.svg -------------------------------------------------------------------------------- /src/fon/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/fon/iconfont.ttf -------------------------------------------------------------------------------- /src/fon/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/fon/iconfont.woff -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/main.js -------------------------------------------------------------------------------- /src/pages/classify/classify.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/pages/classify/classify.vue -------------------------------------------------------------------------------- /src/pages/classify/compnent/classify-left.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/pages/classify/compnent/classify-left.vue -------------------------------------------------------------------------------- /src/pages/classify/compnent/classify-right.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pages/detail/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/pages/detail/index.vue -------------------------------------------------------------------------------- /src/pages/index/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/pages/index/index.vue -------------------------------------------------------------------------------- /src/pages/news/detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/pages/news/detail.vue -------------------------------------------------------------------------------- /src/pages/news/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/pages/news/index.vue -------------------------------------------------------------------------------- /src/pages/pay/address.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pages/pay/pay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/pages/pay/pay.vue -------------------------------------------------------------------------------- /src/pages/pay/success.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/pages/pay/success.vue -------------------------------------------------------------------------------- /src/pages/shops/parts.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/pages/shops/parts.vue -------------------------------------------------------------------------------- /src/pages/shops/phone.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/pages/shops/phone.vue -------------------------------------------------------------------------------- /src/pages/user/address/add.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/pages/user/address/add.vue -------------------------------------------------------------------------------- /src/pages/user/address/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/pages/user/address/index.vue -------------------------------------------------------------------------------- /src/pages/user/address/up.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pages/user/cart/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/pages/user/cart/index.vue -------------------------------------------------------------------------------- /src/pages/user/collections/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/pages/user/collections/index.vue -------------------------------------------------------------------------------- /src/pages/user/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/pages/user/login.vue -------------------------------------------------------------------------------- /src/pages/user/main.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/pages/user/main.vue -------------------------------------------------------------------------------- /src/pages/user/order/detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/pages/user/order/detail.vue -------------------------------------------------------------------------------- /src/pages/user/order/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/pages/user/order/index.vue -------------------------------------------------------------------------------- /src/pages/user/register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/pages/user/register.vue -------------------------------------------------------------------------------- /src/rem/rem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/rem/rem.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/styles/style.css -------------------------------------------------------------------------------- /src/vuex/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/vuex/index.js -------------------------------------------------------------------------------- /src/vuex/modules/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/vuex/modules/cart.js -------------------------------------------------------------------------------- /src/vuex/modules/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/vuex/modules/order.js -------------------------------------------------------------------------------- /src/vuex/mutations-type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/src/vuex/mutations-type.js -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/static/data.json -------------------------------------------------------------------------------- /static/img/111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/static/img/111.png -------------------------------------------------------------------------------- /static/img/222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/static/img/222.png -------------------------------------------------------------------------------- /static/img/333.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/static/img/333.png -------------------------------------------------------------------------------- /static/img/444.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/static/img/444.png -------------------------------------------------------------------------------- /static/img/bj.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/static/img/bj.jpg -------------------------------------------------------------------------------- /static/img/bj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/static/img/bj.png -------------------------------------------------------------------------------- /static/img/details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/static/img/details.jpg -------------------------------------------------------------------------------- /static/img/dingdan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/static/img/dingdan.png -------------------------------------------------------------------------------- /static/img/dingzhi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/static/img/dingzhi.jpg -------------------------------------------------------------------------------- /static/img/download.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/static/img/download.jpg -------------------------------------------------------------------------------- /static/img/gouwuche.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/static/img/gouwuche.png -------------------------------------------------------------------------------- /static/img/list_details_09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/static/img/list_details_09.jpg -------------------------------------------------------------------------------- /static/img/official.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/static/img/official.png -------------------------------------------------------------------------------- /static/img/peijian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/static/img/peijian.jpg -------------------------------------------------------------------------------- /static/img/pingbao.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/static/img/pingbao.jpg -------------------------------------------------------------------------------- /static/img/qiandao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/static/img/qiandao.png -------------------------------------------------------------------------------- /static/img/qqq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/static/img/qqq.png -------------------------------------------------------------------------------- /static/img/shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/static/img/shop.png -------------------------------------------------------------------------------- /static/img/t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/static/img/t.png -------------------------------------------------------------------------------- /static/img/tou.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/static/img/tou.jpg -------------------------------------------------------------------------------- /static/img/tuijian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/static/img/tuijian.png -------------------------------------------------------------------------------- /static/img/xuangou.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/static/img/xuangou.jpg -------------------------------------------------------------------------------- /static/img/yanbao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/static/img/yanbao.png -------------------------------------------------------------------------------- /static/lowSource/.1.0.gif.icloud: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/static/lowSource/.1.0.gif.icloud -------------------------------------------------------------------------------- /static/lowSource/2.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/static/lowSource/2.0.png -------------------------------------------------------------------------------- /static/lowSource/3.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/static/lowSource/3.0.png -------------------------------------------------------------------------------- /static/lowSource/4.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/static/lowSource/4.0.png -------------------------------------------------------------------------------- /static/lowSource/vue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mynameisfwk/vivo-shop/HEAD/static/lowSource/vue.png --------------------------------------------------------------------------------