├── .gitignore ├── README.md ├── myShop-client ├── App.vue ├── components │ ├── goods_list │ │ └── goods_list.vue │ ├── news_item │ │ └── news_item.vue │ ├── uni-goods-nav │ │ └── uni-goods-nav.vue │ └── uni-icons │ │ ├── icons.js │ │ └── uni-icons.vue ├── main.js ├── manifest.json ├── pages.json ├── pages │ ├── cart │ │ └── cart.vue │ ├── community │ │ └── community.vue │ ├── contact │ │ └── contact.vue │ ├── goods_detail │ │ └── goods_detail.vue │ ├── index │ │ └── index.vue │ ├── member │ │ └── member.vue │ ├── new │ │ └── new.vue │ ├── news_detail │ │ └── news_detail.vue │ ├── shop │ │ └── shop.vue │ └── study │ │ └── study.vue ├── static │ ├── hmlogo.png │ ├── icon │ │ ├── cart-active.png │ │ ├── cart.png │ │ ├── home-active.png │ │ ├── home.png │ │ ├── member-active.png │ │ ├── member.png │ │ ├── news-active.png │ │ └── news.png │ └── logo.png ├── uni.scss ├── unpackage │ └── dist │ │ └── dev │ │ ├── .sourcemap │ │ └── mp-weixin │ │ │ ├── common │ │ │ ├── main.js.map │ │ │ ├── runtime.js.map │ │ │ └── vendor.js.map │ │ │ ├── components │ │ │ ├── goods_list │ │ │ │ └── goods_list.js.map │ │ │ ├── news_item │ │ │ │ └── news_item.js.map │ │ │ ├── uni-goods-nav │ │ │ │ └── uni-goods-nav.js.map │ │ │ └── uni-icons │ │ │ │ └── uni-icons.js.map │ │ │ └── pages │ │ │ ├── cart │ │ │ └── cart.js.map │ │ │ ├── community │ │ │ └── community.js.map │ │ │ ├── contact │ │ │ └── contact.js.map │ │ │ ├── goods_detail │ │ │ └── goods_detail.js.map │ │ │ ├── index │ │ │ └── index.js.map │ │ │ ├── member │ │ │ └── member.js.map │ │ │ ├── new │ │ │ └── new.js.map │ │ │ ├── news_detail │ │ │ └── news_detail.js.map │ │ │ ├── shop │ │ │ └── shop.js.map │ │ │ └── study │ │ │ └── study.js.map │ │ └── mp-weixin │ │ ├── app.js │ │ ├── app.json │ │ ├── app.wxss │ │ ├── common │ │ ├── main.js │ │ ├── main.wxss │ │ ├── runtime.js │ │ └── vendor.js │ │ ├── components │ │ ├── goods_list │ │ │ ├── goods_list.js │ │ │ ├── goods_list.json │ │ │ ├── goods_list.wxml │ │ │ └── goods_list.wxss │ │ ├── news_item │ │ │ ├── news_item.js │ │ │ ├── news_item.json │ │ │ ├── news_item.wxml │ │ │ └── news_item.wxss │ │ ├── uni-goods-nav │ │ │ ├── uni-goods-nav.js │ │ │ ├── uni-goods-nav.json │ │ │ ├── uni-goods-nav.wxml │ │ │ └── uni-goods-nav.wxss │ │ └── uni-icons │ │ │ ├── uni-icons.js │ │ │ ├── uni-icons.json │ │ │ ├── uni-icons.wxml │ │ │ └── uni-icons.wxss │ │ ├── pages │ │ ├── cart │ │ │ ├── cart.js │ │ │ ├── cart.json │ │ │ └── cart.wxml │ │ ├── community │ │ │ ├── community.js │ │ │ ├── community.json │ │ │ ├── community.wxml │ │ │ └── community.wxss │ │ ├── contact │ │ │ ├── contact.js │ │ │ ├── contact.json │ │ │ ├── contact.wxml │ │ │ └── contact.wxss │ │ ├── goods_detail │ │ │ ├── goods_detail.js │ │ │ ├── goods_detail.json │ │ │ ├── goods_detail.wxml │ │ │ └── goods_detail.wxss │ │ ├── index │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── member │ │ │ ├── member.js │ │ │ ├── member.json │ │ │ └── member.wxml │ │ ├── new │ │ │ ├── new.js │ │ │ ├── new.json │ │ │ ├── new.wxml │ │ │ └── new.wxss │ │ ├── news_detail │ │ │ ├── news_detail.js │ │ │ ├── news_detail.json │ │ │ ├── news_detail.wxml │ │ │ └── news_detail.wxss │ │ ├── shop │ │ │ ├── shop.js │ │ │ ├── shop.json │ │ │ ├── shop.wxml │ │ │ └── shop.wxss │ │ └── study │ │ │ ├── study.js │ │ │ ├── study.json │ │ │ └── study.wxml │ │ ├── project.config.json │ │ ├── sitemap.json │ │ ├── sitemap1.json │ │ ├── sitemap11.json │ │ ├── sitemap19.json │ │ ├── sitemap4.json │ │ ├── sitemap61.json │ │ ├── sitemap73.json │ │ └── static │ │ ├── hmlogo.png │ │ ├── icon │ │ ├── cart-active.png │ │ ├── cart.png │ │ ├── home-active.png │ │ ├── home.png │ │ ├── member-active.png │ │ ├── member.png │ │ ├── news-active.png │ │ └── news.png │ │ └── logo.png └── util │ └── api.js └── myShop-server ├── LICENSE ├── dtcmsdb4.sql ├── package-lock.json ├── package.json ├── src ├── app.js ├── controllers │ └── apiController.js ├── package-lock.json ├── public │ ├── images │ │ ├── bg1.jpg │ │ ├── hx1.jpg │ │ ├── hx2.jpg │ │ ├── hx3.jpg │ │ ├── lunbo1-min.jpg │ │ ├── lunbo1.jpg │ │ ├── lunbo1.webp │ │ ├── lunbo2-min.jpg │ │ ├── lunbo2.jpg │ │ ├── lunbo2.webp │ │ ├── lunbo3-min.jpg │ │ ├── lunbo3.jpg │ │ └── lunbo3.webp │ └── stylesheets │ │ └── style.css ├── routes │ └── apiRoute.js ├── start.bat └── test.js ├── 先运行 npm install 安装项目依赖包.txt └── 再执行src目录下的app.js脚本.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/README.md -------------------------------------------------------------------------------- /myShop-client/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/App.vue -------------------------------------------------------------------------------- /myShop-client/components/goods_list/goods_list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/components/goods_list/goods_list.vue -------------------------------------------------------------------------------- /myShop-client/components/news_item/news_item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/components/news_item/news_item.vue -------------------------------------------------------------------------------- /myShop-client/components/uni-goods-nav/uni-goods-nav.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/components/uni-goods-nav/uni-goods-nav.vue -------------------------------------------------------------------------------- /myShop-client/components/uni-icons/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/components/uni-icons/icons.js -------------------------------------------------------------------------------- /myShop-client/components/uni-icons/uni-icons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/components/uni-icons/uni-icons.vue -------------------------------------------------------------------------------- /myShop-client/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/main.js -------------------------------------------------------------------------------- /myShop-client/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/manifest.json -------------------------------------------------------------------------------- /myShop-client/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/pages.json -------------------------------------------------------------------------------- /myShop-client/pages/cart/cart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/pages/cart/cart.vue -------------------------------------------------------------------------------- /myShop-client/pages/community/community.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/pages/community/community.vue -------------------------------------------------------------------------------- /myShop-client/pages/contact/contact.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/pages/contact/contact.vue -------------------------------------------------------------------------------- /myShop-client/pages/goods_detail/goods_detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/pages/goods_detail/goods_detail.vue -------------------------------------------------------------------------------- /myShop-client/pages/index/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/pages/index/index.vue -------------------------------------------------------------------------------- /myShop-client/pages/member/member.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/pages/member/member.vue -------------------------------------------------------------------------------- /myShop-client/pages/new/new.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/pages/new/new.vue -------------------------------------------------------------------------------- /myShop-client/pages/news_detail/news_detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/pages/news_detail/news_detail.vue -------------------------------------------------------------------------------- /myShop-client/pages/shop/shop.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/pages/shop/shop.vue -------------------------------------------------------------------------------- /myShop-client/pages/study/study.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/pages/study/study.vue -------------------------------------------------------------------------------- /myShop-client/static/hmlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/static/hmlogo.png -------------------------------------------------------------------------------- /myShop-client/static/icon/cart-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/static/icon/cart-active.png -------------------------------------------------------------------------------- /myShop-client/static/icon/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/static/icon/cart.png -------------------------------------------------------------------------------- /myShop-client/static/icon/home-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/static/icon/home-active.png -------------------------------------------------------------------------------- /myShop-client/static/icon/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/static/icon/home.png -------------------------------------------------------------------------------- /myShop-client/static/icon/member-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/static/icon/member-active.png -------------------------------------------------------------------------------- /myShop-client/static/icon/member.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/static/icon/member.png -------------------------------------------------------------------------------- /myShop-client/static/icon/news-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/static/icon/news-active.png -------------------------------------------------------------------------------- /myShop-client/static/icon/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/static/icon/news.png -------------------------------------------------------------------------------- /myShop-client/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/static/logo.png -------------------------------------------------------------------------------- /myShop-client/uni.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/uni.scss -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/.sourcemap/mp-weixin/common/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/.sourcemap/mp-weixin/common/main.js.map -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/.sourcemap/mp-weixin/common/runtime.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/.sourcemap/mp-weixin/common/runtime.js.map -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/.sourcemap/mp-weixin/common/vendor.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/.sourcemap/mp-weixin/common/vendor.js.map -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/.sourcemap/mp-weixin/components/goods_list/goods_list.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/.sourcemap/mp-weixin/components/goods_list/goods_list.js.map -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/.sourcemap/mp-weixin/components/news_item/news_item.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/.sourcemap/mp-weixin/components/news_item/news_item.js.map -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/.sourcemap/mp-weixin/components/uni-goods-nav/uni-goods-nav.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/.sourcemap/mp-weixin/components/uni-goods-nav/uni-goods-nav.js.map -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/.sourcemap/mp-weixin/components/uni-icons/uni-icons.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/.sourcemap/mp-weixin/components/uni-icons/uni-icons.js.map -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/.sourcemap/mp-weixin/pages/cart/cart.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/.sourcemap/mp-weixin/pages/cart/cart.js.map -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/.sourcemap/mp-weixin/pages/community/community.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/.sourcemap/mp-weixin/pages/community/community.js.map -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/.sourcemap/mp-weixin/pages/contact/contact.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/.sourcemap/mp-weixin/pages/contact/contact.js.map -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/.sourcemap/mp-weixin/pages/goods_detail/goods_detail.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/.sourcemap/mp-weixin/pages/goods_detail/goods_detail.js.map -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/.sourcemap/mp-weixin/pages/index/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/.sourcemap/mp-weixin/pages/index/index.js.map -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/.sourcemap/mp-weixin/pages/member/member.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/.sourcemap/mp-weixin/pages/member/member.js.map -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/.sourcemap/mp-weixin/pages/new/new.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/.sourcemap/mp-weixin/pages/new/new.js.map -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/.sourcemap/mp-weixin/pages/news_detail/news_detail.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/.sourcemap/mp-weixin/pages/news_detail/news_detail.js.map -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/.sourcemap/mp-weixin/pages/shop/shop.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/.sourcemap/mp-weixin/pages/shop/shop.js.map -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/.sourcemap/mp-weixin/pages/study/study.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/.sourcemap/mp-weixin/pages/study/study.js.map -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/app.js -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/app.json -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/app.wxss: -------------------------------------------------------------------------------- 1 | @import './common/main.wxss'; 2 | -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/common/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/common/main.js -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/common/main.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/common/main.wxss -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/common/runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/common/runtime.js -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/common/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/common/vendor.js -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/components/goods_list/goods_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/components/goods_list/goods_list.js -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/components/goods_list/goods_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/components/goods_list/goods_list.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/components/goods_list/goods_list.wxml -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/components/goods_list/goods_list.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/components/goods_list/goods_list.wxss -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/components/news_item/news_item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/components/news_item/news_item.js -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/components/news_item/news_item.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/components/news_item/news_item.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/components/news_item/news_item.wxml -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/components/news_item/news_item.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/components/news_item/news_item.wxss -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/components/uni-goods-nav/uni-goods-nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/components/uni-goods-nav/uni-goods-nav.js -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/components/uni-goods-nav/uni-goods-nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/components/uni-goods-nav/uni-goods-nav.json -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/components/uni-goods-nav/uni-goods-nav.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/components/uni-goods-nav/uni-goods-nav.wxml -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/components/uni-goods-nav/uni-goods-nav.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/components/uni-goods-nav/uni-goods-nav.wxss -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/components/uni-icons/uni-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/components/uni-icons/uni-icons.js -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/components/uni-icons/uni-icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/components/uni-icons/uni-icons.json -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/components/uni-icons/uni-icons.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/components/uni-icons/uni-icons.wxml -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/components/uni-icons/uni-icons.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/components/uni-icons/uni-icons.wxss -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/cart/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/pages/cart/cart.js -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/cart/cart.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/cart/cart.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/pages/cart/cart.wxml -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/community/community.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/pages/community/community.js -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/community/community.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/community/community.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/pages/community/community.wxml -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/community/community.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/pages/community/community.wxss -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/contact/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/pages/contact/contact.js -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/contact/contact.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/contact/contact.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/pages/contact/contact.wxml -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/contact/contact.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/pages/contact/contact.wxss -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/goods_detail/goods_detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/pages/goods_detail/goods_detail.js -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/goods_detail/goods_detail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/pages/goods_detail/goods_detail.json -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/goods_detail/goods_detail.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/pages/goods_detail/goods_detail.wxml -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/goods_detail/goods_detail.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/pages/goods_detail/goods_detail.wxss -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/pages/index/index.js -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/index/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/pages/index/index.json -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/index/index.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/pages/index/index.wxml -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/index/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/pages/index/index.wxss -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/member/member.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/pages/member/member.js -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/member/member.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/member/member.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/pages/member/member.wxml -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/new/new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/pages/new/new.js -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/new/new.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/pages/new/new.json -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/new/new.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/pages/new/new.wxml -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/new/new.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/pages/new/new.wxss -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/news_detail/news_detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/pages/news_detail/news_detail.js -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/news_detail/news_detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/news_detail/news_detail.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/pages/news_detail/news_detail.wxml -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/news_detail/news_detail.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/pages/news_detail/news_detail.wxss -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/shop/shop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/pages/shop/shop.js -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/shop/shop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/pages/shop/shop.json -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/shop/shop.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/pages/shop/shop.wxml -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/shop/shop.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/pages/shop/shop.wxss -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/study/study.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/pages/study/study.js -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/study/study.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/pages/study/study.wxml: -------------------------------------------------------------------------------- 1 | 学习视频 -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/project.config.json -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/sitemap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/sitemap.json -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/sitemap1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/sitemap1.json -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/sitemap11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/sitemap11.json -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/sitemap19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/sitemap19.json -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/sitemap4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/sitemap4.json -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/sitemap61.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/sitemap61.json -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/sitemap73.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/sitemap73.json -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/static/hmlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/static/hmlogo.png -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/static/icon/cart-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/static/icon/cart-active.png -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/static/icon/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/static/icon/cart.png -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/static/icon/home-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/static/icon/home-active.png -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/static/icon/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/static/icon/home.png -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/static/icon/member-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/static/icon/member-active.png -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/static/icon/member.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/static/icon/member.png -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/static/icon/news-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/static/icon/news-active.png -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/static/icon/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/static/icon/news.png -------------------------------------------------------------------------------- /myShop-client/unpackage/dist/dev/mp-weixin/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/unpackage/dist/dev/mp-weixin/static/logo.png -------------------------------------------------------------------------------- /myShop-client/util/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-client/util/api.js -------------------------------------------------------------------------------- /myShop-server/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-server/LICENSE -------------------------------------------------------------------------------- /myShop-server/dtcmsdb4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-server/dtcmsdb4.sql -------------------------------------------------------------------------------- /myShop-server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-server/package-lock.json -------------------------------------------------------------------------------- /myShop-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-server/package.json -------------------------------------------------------------------------------- /myShop-server/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-server/src/app.js -------------------------------------------------------------------------------- /myShop-server/src/controllers/apiController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-server/src/controllers/apiController.js -------------------------------------------------------------------------------- /myShop-server/src/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "lockfileVersion": 1 3 | } 4 | -------------------------------------------------------------------------------- /myShop-server/src/public/images/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-server/src/public/images/bg1.jpg -------------------------------------------------------------------------------- /myShop-server/src/public/images/hx1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-server/src/public/images/hx1.jpg -------------------------------------------------------------------------------- /myShop-server/src/public/images/hx2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-server/src/public/images/hx2.jpg -------------------------------------------------------------------------------- /myShop-server/src/public/images/hx3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-server/src/public/images/hx3.jpg -------------------------------------------------------------------------------- /myShop-server/src/public/images/lunbo1-min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-server/src/public/images/lunbo1-min.jpg -------------------------------------------------------------------------------- /myShop-server/src/public/images/lunbo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-server/src/public/images/lunbo1.jpg -------------------------------------------------------------------------------- /myShop-server/src/public/images/lunbo1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-server/src/public/images/lunbo1.webp -------------------------------------------------------------------------------- /myShop-server/src/public/images/lunbo2-min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-server/src/public/images/lunbo2-min.jpg -------------------------------------------------------------------------------- /myShop-server/src/public/images/lunbo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-server/src/public/images/lunbo2.jpg -------------------------------------------------------------------------------- /myShop-server/src/public/images/lunbo2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-server/src/public/images/lunbo2.webp -------------------------------------------------------------------------------- /myShop-server/src/public/images/lunbo3-min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-server/src/public/images/lunbo3-min.jpg -------------------------------------------------------------------------------- /myShop-server/src/public/images/lunbo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-server/src/public/images/lunbo3.jpg -------------------------------------------------------------------------------- /myShop-server/src/public/images/lunbo3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-server/src/public/images/lunbo3.webp -------------------------------------------------------------------------------- /myShop-server/src/public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-server/src/public/stylesheets/style.css -------------------------------------------------------------------------------- /myShop-server/src/routes/apiRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuojunhai/myShop/HEAD/myShop-server/src/routes/apiRoute.js -------------------------------------------------------------------------------- /myShop-server/src/start.bat: -------------------------------------------------------------------------------- 1 | nodemon app.js -------------------------------------------------------------------------------- /myShop-server/src/test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myShop-server/先运行 npm install 安装项目依赖包.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myShop-server/再执行src目录下的app.js脚本.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------