├── .gitignore ├── README.md ├── front-end ├── .babelrc ├── .editorconfig ├── .gitignore ├── .postcssrc.js ├── README.md ├── 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 ├── index.html ├── package-lock.json ├── package.json ├── src │ ├── App.vue │ ├── api │ │ └── index.js │ ├── assets │ │ ├── address.gif │ │ ├── cart.gif │ │ ├── category.gif │ │ ├── detail.gif │ │ ├── index.gif │ │ ├── logo.png │ │ ├── my.gif │ │ ├── search.gif │ │ └── toLogin.gif │ ├── components │ │ ├── input │ │ │ ├── index.less │ │ │ └── input.vue │ │ ├── swiper │ │ │ ├── index.less │ │ │ └── swiper.vue │ │ ├── tabBar │ │ │ ├── index.less │ │ │ └── tabBar.vue │ │ └── title │ │ │ ├── index.less │ │ │ └── title.vue │ ├── main.js │ ├── router │ │ └── index.js │ ├── store │ │ └── index.js │ └── views │ │ ├── addAddress │ │ ├── addAddress.vue │ │ └── index.less │ │ ├── cart │ │ ├── cart.vue │ │ ├── index.css │ │ └── index.less │ │ ├── category │ │ ├── category.vue │ │ └── index.less │ │ ├── categoryList │ │ ├── categoryList.vue │ │ └── index.less │ │ ├── collection │ │ ├── collection.vue │ │ └── index.less │ │ ├── goodsDetail │ │ ├── goodsDetail.vue │ │ └── index.less │ │ ├── index │ │ ├── index.less │ │ └── index.vue │ │ ├── login │ │ ├── index.less │ │ └── login.vue │ │ ├── my │ │ ├── index.css │ │ ├── index.less │ │ └── my.vue │ │ ├── order │ │ ├── index.less │ │ └── order.vue │ │ ├── register │ │ ├── index.less │ │ └── register.vue │ │ ├── search │ │ ├── index.less │ │ └── search.vue │ │ └── selectAddress │ │ ├── index.less │ │ └── selectAddress.vue └── static │ ├── .gitkeep │ ├── area.js │ └── images │ ├── address-bg-bd.png │ ├── address_right.png │ ├── bgnew.png │ ├── bgtopic.png │ ├── checkbox.png │ ├── clear_input.png │ ├── close.png │ ├── del-address.png │ ├── detail_back.png │ ├── detail_kefu.png │ ├── edit.png │ ├── gif.png │ ├── go.png │ ├── ic_menu_choice_nor.png │ ├── ic_menu_choice_pressed.png │ ├── ic_menu_me_nor.png │ ├── ic_menu_me_pressed.png │ ├── ic_menu_shoping_nor.png │ ├── ic_menu_shoping_pressed.png │ ├── ic_menu_sort_nor.png │ ├── ic_menu_sort_pressed.png │ ├── ic_menu_topic_nor.png │ ├── ic_menu_topic_pressed.png │ ├── icon_close.png │ ├── icon_collect.png │ ├── icon_collect_checked.png │ ├── icon_error.png │ ├── icon_go_more.png │ ├── logo.png │ ├── logo1.png │ ├── logo1_02.gif │ ├── marker.png │ ├── new.png │ ├── right.png │ ├── rightbig.png │ ├── rightnew.png │ ├── righttopic.png │ ├── search.png │ ├── top.png │ └── wxpay.png └── server ├── README.md ├── app.js ├── config.js ├── controller ├── address │ └── index.js ├── cart │ └── index.js ├── category │ └── index.js ├── goodsDetail │ └── index.js ├── index.js ├── index │ └── index.js ├── my │ └── index.js ├── order │ └── index.js ├── search │ └── index.js └── user │ └── index.js ├── mysql.js ├── nodemysql.sql ├── package.json └── router └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # vue-wangyiyanxuan -------------------------------------------------------------------------------- /front-end/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/.babelrc -------------------------------------------------------------------------------- /front-end/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/.editorconfig -------------------------------------------------------------------------------- /front-end/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/.gitignore -------------------------------------------------------------------------------- /front-end/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/.postcssrc.js -------------------------------------------------------------------------------- /front-end/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/README.md -------------------------------------------------------------------------------- /front-end/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/build/build.js -------------------------------------------------------------------------------- /front-end/build/check-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/build/check-versions.js -------------------------------------------------------------------------------- /front-end/build/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/build/logo.png -------------------------------------------------------------------------------- /front-end/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/build/utils.js -------------------------------------------------------------------------------- /front-end/build/vue-loader.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/build/vue-loader.conf.js -------------------------------------------------------------------------------- /front-end/build/webpack.base.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/build/webpack.base.conf.js -------------------------------------------------------------------------------- /front-end/build/webpack.dev.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/build/webpack.dev.conf.js -------------------------------------------------------------------------------- /front-end/build/webpack.prod.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/build/webpack.prod.conf.js -------------------------------------------------------------------------------- /front-end/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/config/dev.env.js -------------------------------------------------------------------------------- /front-end/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/config/index.js -------------------------------------------------------------------------------- /front-end/config/prod.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = { 3 | NODE_ENV: '"production"' 4 | } 5 | -------------------------------------------------------------------------------- /front-end/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/index.html -------------------------------------------------------------------------------- /front-end/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/package-lock.json -------------------------------------------------------------------------------- /front-end/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/package.json -------------------------------------------------------------------------------- /front-end/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/App.vue -------------------------------------------------------------------------------- /front-end/src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/api/index.js -------------------------------------------------------------------------------- /front-end/src/assets/address.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/assets/address.gif -------------------------------------------------------------------------------- /front-end/src/assets/cart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/assets/cart.gif -------------------------------------------------------------------------------- /front-end/src/assets/category.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/assets/category.gif -------------------------------------------------------------------------------- /front-end/src/assets/detail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/assets/detail.gif -------------------------------------------------------------------------------- /front-end/src/assets/index.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/assets/index.gif -------------------------------------------------------------------------------- /front-end/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/assets/logo.png -------------------------------------------------------------------------------- /front-end/src/assets/my.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/assets/my.gif -------------------------------------------------------------------------------- /front-end/src/assets/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/assets/search.gif -------------------------------------------------------------------------------- /front-end/src/assets/toLogin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/assets/toLogin.gif -------------------------------------------------------------------------------- /front-end/src/components/input/index.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /front-end/src/components/input/input.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/components/input/input.vue -------------------------------------------------------------------------------- /front-end/src/components/swiper/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/components/swiper/index.less -------------------------------------------------------------------------------- /front-end/src/components/swiper/swiper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/components/swiper/swiper.vue -------------------------------------------------------------------------------- /front-end/src/components/tabBar/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/components/tabBar/index.less -------------------------------------------------------------------------------- /front-end/src/components/tabBar/tabBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/components/tabBar/tabBar.vue -------------------------------------------------------------------------------- /front-end/src/components/title/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/components/title/index.less -------------------------------------------------------------------------------- /front-end/src/components/title/title.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/components/title/title.vue -------------------------------------------------------------------------------- /front-end/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/main.js -------------------------------------------------------------------------------- /front-end/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/router/index.js -------------------------------------------------------------------------------- /front-end/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/store/index.js -------------------------------------------------------------------------------- /front-end/src/views/addAddress/addAddress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/views/addAddress/addAddress.vue -------------------------------------------------------------------------------- /front-end/src/views/addAddress/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/views/addAddress/index.less -------------------------------------------------------------------------------- /front-end/src/views/cart/cart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/views/cart/cart.vue -------------------------------------------------------------------------------- /front-end/src/views/cart/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/views/cart/index.css -------------------------------------------------------------------------------- /front-end/src/views/cart/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/views/cart/index.less -------------------------------------------------------------------------------- /front-end/src/views/category/category.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/views/category/category.vue -------------------------------------------------------------------------------- /front-end/src/views/category/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/views/category/index.less -------------------------------------------------------------------------------- /front-end/src/views/categoryList/categoryList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/views/categoryList/categoryList.vue -------------------------------------------------------------------------------- /front-end/src/views/categoryList/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/views/categoryList/index.less -------------------------------------------------------------------------------- /front-end/src/views/collection/collection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/views/collection/collection.vue -------------------------------------------------------------------------------- /front-end/src/views/collection/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/views/collection/index.less -------------------------------------------------------------------------------- /front-end/src/views/goodsDetail/goodsDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/views/goodsDetail/goodsDetail.vue -------------------------------------------------------------------------------- /front-end/src/views/goodsDetail/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/views/goodsDetail/index.less -------------------------------------------------------------------------------- /front-end/src/views/index/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/views/index/index.less -------------------------------------------------------------------------------- /front-end/src/views/index/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/views/index/index.vue -------------------------------------------------------------------------------- /front-end/src/views/login/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/views/login/index.less -------------------------------------------------------------------------------- /front-end/src/views/login/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/views/login/login.vue -------------------------------------------------------------------------------- /front-end/src/views/my/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/views/my/index.css -------------------------------------------------------------------------------- /front-end/src/views/my/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/views/my/index.less -------------------------------------------------------------------------------- /front-end/src/views/my/my.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/views/my/my.vue -------------------------------------------------------------------------------- /front-end/src/views/order/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/views/order/index.less -------------------------------------------------------------------------------- /front-end/src/views/order/order.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/views/order/order.vue -------------------------------------------------------------------------------- /front-end/src/views/register/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/views/register/index.less -------------------------------------------------------------------------------- /front-end/src/views/register/register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/views/register/register.vue -------------------------------------------------------------------------------- /front-end/src/views/search/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/views/search/index.less -------------------------------------------------------------------------------- /front-end/src/views/search/search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/views/search/search.vue -------------------------------------------------------------------------------- /front-end/src/views/selectAddress/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/views/selectAddress/index.less -------------------------------------------------------------------------------- /front-end/src/views/selectAddress/selectAddress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/src/views/selectAddress/selectAddress.vue -------------------------------------------------------------------------------- /front-end/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /front-end/static/area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/area.js -------------------------------------------------------------------------------- /front-end/static/images/address-bg-bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/address-bg-bd.png -------------------------------------------------------------------------------- /front-end/static/images/address_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/address_right.png -------------------------------------------------------------------------------- /front-end/static/images/bgnew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/bgnew.png -------------------------------------------------------------------------------- /front-end/static/images/bgtopic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/bgtopic.png -------------------------------------------------------------------------------- /front-end/static/images/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/checkbox.png -------------------------------------------------------------------------------- /front-end/static/images/clear_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/clear_input.png -------------------------------------------------------------------------------- /front-end/static/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/close.png -------------------------------------------------------------------------------- /front-end/static/images/del-address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/del-address.png -------------------------------------------------------------------------------- /front-end/static/images/detail_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/detail_back.png -------------------------------------------------------------------------------- /front-end/static/images/detail_kefu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/detail_kefu.png -------------------------------------------------------------------------------- /front-end/static/images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/edit.png -------------------------------------------------------------------------------- /front-end/static/images/gif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/gif.png -------------------------------------------------------------------------------- /front-end/static/images/go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/go.png -------------------------------------------------------------------------------- /front-end/static/images/ic_menu_choice_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/ic_menu_choice_nor.png -------------------------------------------------------------------------------- /front-end/static/images/ic_menu_choice_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/ic_menu_choice_pressed.png -------------------------------------------------------------------------------- /front-end/static/images/ic_menu_me_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/ic_menu_me_nor.png -------------------------------------------------------------------------------- /front-end/static/images/ic_menu_me_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/ic_menu_me_pressed.png -------------------------------------------------------------------------------- /front-end/static/images/ic_menu_shoping_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/ic_menu_shoping_nor.png -------------------------------------------------------------------------------- /front-end/static/images/ic_menu_shoping_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/ic_menu_shoping_pressed.png -------------------------------------------------------------------------------- /front-end/static/images/ic_menu_sort_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/ic_menu_sort_nor.png -------------------------------------------------------------------------------- /front-end/static/images/ic_menu_sort_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/ic_menu_sort_pressed.png -------------------------------------------------------------------------------- /front-end/static/images/ic_menu_topic_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/ic_menu_topic_nor.png -------------------------------------------------------------------------------- /front-end/static/images/ic_menu_topic_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/ic_menu_topic_pressed.png -------------------------------------------------------------------------------- /front-end/static/images/icon_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/icon_close.png -------------------------------------------------------------------------------- /front-end/static/images/icon_collect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/icon_collect.png -------------------------------------------------------------------------------- /front-end/static/images/icon_collect_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/icon_collect_checked.png -------------------------------------------------------------------------------- /front-end/static/images/icon_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/icon_error.png -------------------------------------------------------------------------------- /front-end/static/images/icon_go_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/icon_go_more.png -------------------------------------------------------------------------------- /front-end/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/logo.png -------------------------------------------------------------------------------- /front-end/static/images/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/logo1.png -------------------------------------------------------------------------------- /front-end/static/images/logo1_02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/logo1_02.gif -------------------------------------------------------------------------------- /front-end/static/images/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/marker.png -------------------------------------------------------------------------------- /front-end/static/images/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/new.png -------------------------------------------------------------------------------- /front-end/static/images/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/right.png -------------------------------------------------------------------------------- /front-end/static/images/rightbig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/rightbig.png -------------------------------------------------------------------------------- /front-end/static/images/rightnew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/rightnew.png -------------------------------------------------------------------------------- /front-end/static/images/righttopic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/righttopic.png -------------------------------------------------------------------------------- /front-end/static/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/search.png -------------------------------------------------------------------------------- /front-end/static/images/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/top.png -------------------------------------------------------------------------------- /front-end/static/images/wxpay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/front-end/static/images/wxpay.png -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/server/README.md -------------------------------------------------------------------------------- /server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/server/app.js -------------------------------------------------------------------------------- /server/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/server/config.js -------------------------------------------------------------------------------- /server/controller/address/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/server/controller/address/index.js -------------------------------------------------------------------------------- /server/controller/cart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/server/controller/cart/index.js -------------------------------------------------------------------------------- /server/controller/category/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/server/controller/category/index.js -------------------------------------------------------------------------------- /server/controller/goodsDetail/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/server/controller/goodsDetail/index.js -------------------------------------------------------------------------------- /server/controller/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/server/controller/index.js -------------------------------------------------------------------------------- /server/controller/index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/server/controller/index/index.js -------------------------------------------------------------------------------- /server/controller/my/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/server/controller/my/index.js -------------------------------------------------------------------------------- /server/controller/order/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/server/controller/order/index.js -------------------------------------------------------------------------------- /server/controller/search/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/server/controller/search/index.js -------------------------------------------------------------------------------- /server/controller/user/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/server/controller/user/index.js -------------------------------------------------------------------------------- /server/mysql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/server/mysql.js -------------------------------------------------------------------------------- /server/nodemysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/server/nodemysql.sql -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/server/package.json -------------------------------------------------------------------------------- /server/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenkujo/vue-wangyiyanxuan/HEAD/server/router/index.js --------------------------------------------------------------------------------