├── .gitattributes ├── LICENSE ├── __init__.py ├── controller ├── auto_chat_core.py ├── buy_thing.py ├── get_user_info.py └── pay_accept.py ├── readme.MD ├── run.py ├── template └── guapi-shop │ ├── .babelrc │ ├── 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 │ ├── src │ ├── App.vue │ ├── assets │ │ ├── font │ │ │ ├── iconfont.css │ │ │ ├── iconfont.eot │ │ │ ├── iconfont.svg │ │ │ ├── iconfont.ttf │ │ │ └── iconfont.woff │ │ ├── icon │ │ │ ├── bg.63c8e19.png │ │ │ ├── empty-car.png │ │ │ └── logo.png │ │ ├── js │ │ │ └── rem.js │ │ ├── sass │ │ │ ├── public.sass │ │ │ └── util.sass │ │ └── swiper │ │ │ ├── swiper-3.4.2.min.css │ │ │ └── swiper-3.4.2.min.js │ ├── components │ │ ├── header-back.vue │ │ └── swiper.vue │ ├── main.js │ ├── router │ │ └── index.js │ ├── store │ │ └── index.js │ ├── util │ │ ├── parabola │ │ │ └── index.js │ │ └── shop-car-tool │ │ │ └── index.js │ ├── utils.js │ └── views │ │ ├── addaddr │ │ ├── index.vue │ │ └── json │ │ │ └── myaddress.json │ │ ├── addr │ │ └── index.vue │ │ ├── goods │ │ ├── qibing │ │ │ └── index.vue │ │ ├── qusebi │ │ │ └── index.vue │ │ └── shuidi │ │ │ └── index.vue │ │ ├── mine │ │ ├── img │ │ │ ├── qibing.jpg │ │ │ ├── qusebi.jpg │ │ │ ├── shuidi.png │ │ │ └── star2.png │ │ └── index.vue │ │ ├── order │ │ └── index.vue │ │ └── pay │ │ └── index.vue │ └── static │ ├── .gitkeep │ ├── img │ ├── qibing.mp4 │ └── xisebi.mp4 │ └── server │ ├── 1001.json │ ├── 1002.json │ ├── 1003.json │ ├── 1004.json │ ├── 1005.json │ ├── 1006.json │ ├── 1007.json │ ├── 1008.json │ ├── 1009.json │ ├── 1010.json │ ├── 1011.json │ ├── 1012.json │ ├── 1013.json │ ├── 1014.json │ ├── 1015.json │ ├── 1016.json │ ├── 1017.json │ ├── 1018.json │ ├── 1019.json │ ├── lib.MD │ └── lib.json └── utils ├── access_token_checker.py ├── get_material.py ├── get_user_auth.py ├── menu_tool.py └── wx_pay_util.py /.gitattributes: -------------------------------------------------------------------------------- 1 | *.vue linguist-language=python 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/LICENSE -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/__init__.py -------------------------------------------------------------------------------- /controller/auto_chat_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/controller/auto_chat_core.py -------------------------------------------------------------------------------- /controller/buy_thing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/controller/buy_thing.py -------------------------------------------------------------------------------- /controller/get_user_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/controller/get_user_info.py -------------------------------------------------------------------------------- /controller/pay_accept.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/controller/pay_accept.py -------------------------------------------------------------------------------- /readme.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/readme.MD -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/run.py -------------------------------------------------------------------------------- /template/guapi-shop/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/.babelrc -------------------------------------------------------------------------------- /template/guapi-shop/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /template/guapi-shop/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/build/build.js -------------------------------------------------------------------------------- /template/guapi-shop/build/check-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/build/check-versions.js -------------------------------------------------------------------------------- /template/guapi-shop/build/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/build/logo.png -------------------------------------------------------------------------------- /template/guapi-shop/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/build/utils.js -------------------------------------------------------------------------------- /template/guapi-shop/build/vue-loader.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/build/vue-loader.conf.js -------------------------------------------------------------------------------- /template/guapi-shop/build/webpack.base.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/build/webpack.base.conf.js -------------------------------------------------------------------------------- /template/guapi-shop/build/webpack.dev.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/build/webpack.dev.conf.js -------------------------------------------------------------------------------- /template/guapi-shop/build/webpack.prod.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/build/webpack.prod.conf.js -------------------------------------------------------------------------------- /template/guapi-shop/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/config/dev.env.js -------------------------------------------------------------------------------- /template/guapi-shop/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/config/index.js -------------------------------------------------------------------------------- /template/guapi-shop/config/prod.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = { 3 | NODE_ENV: '"production"' 4 | } 5 | -------------------------------------------------------------------------------- /template/guapi-shop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/index.html -------------------------------------------------------------------------------- /template/guapi-shop/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/App.vue -------------------------------------------------------------------------------- /template/guapi-shop/src/assets/font/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/assets/font/iconfont.css -------------------------------------------------------------------------------- /template/guapi-shop/src/assets/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/assets/font/iconfont.eot -------------------------------------------------------------------------------- /template/guapi-shop/src/assets/font/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/assets/font/iconfont.svg -------------------------------------------------------------------------------- /template/guapi-shop/src/assets/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/assets/font/iconfont.ttf -------------------------------------------------------------------------------- /template/guapi-shop/src/assets/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/assets/font/iconfont.woff -------------------------------------------------------------------------------- /template/guapi-shop/src/assets/icon/bg.63c8e19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/assets/icon/bg.63c8e19.png -------------------------------------------------------------------------------- /template/guapi-shop/src/assets/icon/empty-car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/assets/icon/empty-car.png -------------------------------------------------------------------------------- /template/guapi-shop/src/assets/icon/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/assets/icon/logo.png -------------------------------------------------------------------------------- /template/guapi-shop/src/assets/js/rem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/assets/js/rem.js -------------------------------------------------------------------------------- /template/guapi-shop/src/assets/sass/public.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/assets/sass/public.sass -------------------------------------------------------------------------------- /template/guapi-shop/src/assets/sass/util.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/assets/sass/util.sass -------------------------------------------------------------------------------- /template/guapi-shop/src/assets/swiper/swiper-3.4.2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/assets/swiper/swiper-3.4.2.min.css -------------------------------------------------------------------------------- /template/guapi-shop/src/assets/swiper/swiper-3.4.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/assets/swiper/swiper-3.4.2.min.js -------------------------------------------------------------------------------- /template/guapi-shop/src/components/header-back.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/components/header-back.vue -------------------------------------------------------------------------------- /template/guapi-shop/src/components/swiper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/components/swiper.vue -------------------------------------------------------------------------------- /template/guapi-shop/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/main.js -------------------------------------------------------------------------------- /template/guapi-shop/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/router/index.js -------------------------------------------------------------------------------- /template/guapi-shop/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/store/index.js -------------------------------------------------------------------------------- /template/guapi-shop/src/util/parabola/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/util/parabola/index.js -------------------------------------------------------------------------------- /template/guapi-shop/src/util/shop-car-tool/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/util/shop-car-tool/index.js -------------------------------------------------------------------------------- /template/guapi-shop/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/utils.js -------------------------------------------------------------------------------- /template/guapi-shop/src/views/addaddr/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/views/addaddr/index.vue -------------------------------------------------------------------------------- /template/guapi-shop/src/views/addaddr/json/myaddress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/views/addaddr/json/myaddress.json -------------------------------------------------------------------------------- /template/guapi-shop/src/views/addr/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/views/addr/index.vue -------------------------------------------------------------------------------- /template/guapi-shop/src/views/goods/qibing/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/views/goods/qibing/index.vue -------------------------------------------------------------------------------- /template/guapi-shop/src/views/goods/qusebi/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/views/goods/qusebi/index.vue -------------------------------------------------------------------------------- /template/guapi-shop/src/views/goods/shuidi/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/views/goods/shuidi/index.vue -------------------------------------------------------------------------------- /template/guapi-shop/src/views/mine/img/qibing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/views/mine/img/qibing.jpg -------------------------------------------------------------------------------- /template/guapi-shop/src/views/mine/img/qusebi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/views/mine/img/qusebi.jpg -------------------------------------------------------------------------------- /template/guapi-shop/src/views/mine/img/shuidi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/views/mine/img/shuidi.png -------------------------------------------------------------------------------- /template/guapi-shop/src/views/mine/img/star2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/views/mine/img/star2.png -------------------------------------------------------------------------------- /template/guapi-shop/src/views/mine/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/views/mine/index.vue -------------------------------------------------------------------------------- /template/guapi-shop/src/views/order/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/views/order/index.vue -------------------------------------------------------------------------------- /template/guapi-shop/src/views/pay/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/src/views/pay/index.vue -------------------------------------------------------------------------------- /template/guapi-shop/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/guapi-shop/static/img/qibing.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/static/img/qibing.mp4 -------------------------------------------------------------------------------- /template/guapi-shop/static/img/xisebi.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/static/img/xisebi.mp4 -------------------------------------------------------------------------------- /template/guapi-shop/static/server/1001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/static/server/1001.json -------------------------------------------------------------------------------- /template/guapi-shop/static/server/1002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/static/server/1002.json -------------------------------------------------------------------------------- /template/guapi-shop/static/server/1003.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/static/server/1003.json -------------------------------------------------------------------------------- /template/guapi-shop/static/server/1004.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/static/server/1004.json -------------------------------------------------------------------------------- /template/guapi-shop/static/server/1005.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/static/server/1005.json -------------------------------------------------------------------------------- /template/guapi-shop/static/server/1006.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/static/server/1006.json -------------------------------------------------------------------------------- /template/guapi-shop/static/server/1007.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/static/server/1007.json -------------------------------------------------------------------------------- /template/guapi-shop/static/server/1008.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/static/server/1008.json -------------------------------------------------------------------------------- /template/guapi-shop/static/server/1009.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/static/server/1009.json -------------------------------------------------------------------------------- /template/guapi-shop/static/server/1010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/static/server/1010.json -------------------------------------------------------------------------------- /template/guapi-shop/static/server/1011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/static/server/1011.json -------------------------------------------------------------------------------- /template/guapi-shop/static/server/1012.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/static/server/1012.json -------------------------------------------------------------------------------- /template/guapi-shop/static/server/1013.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/static/server/1013.json -------------------------------------------------------------------------------- /template/guapi-shop/static/server/1014.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/static/server/1014.json -------------------------------------------------------------------------------- /template/guapi-shop/static/server/1015.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/static/server/1015.json -------------------------------------------------------------------------------- /template/guapi-shop/static/server/1016.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/static/server/1016.json -------------------------------------------------------------------------------- /template/guapi-shop/static/server/1017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/static/server/1017.json -------------------------------------------------------------------------------- /template/guapi-shop/static/server/1018.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/static/server/1018.json -------------------------------------------------------------------------------- /template/guapi-shop/static/server/1019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/static/server/1019.json -------------------------------------------------------------------------------- /template/guapi-shop/static/server/lib.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/static/server/lib.MD -------------------------------------------------------------------------------- /template/guapi-shop/static/server/lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/template/guapi-shop/static/server/lib.json -------------------------------------------------------------------------------- /utils/access_token_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/utils/access_token_checker.py -------------------------------------------------------------------------------- /utils/get_material.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/utils/get_material.py -------------------------------------------------------------------------------- /utils/get_user_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/utils/get_user_auth.py -------------------------------------------------------------------------------- /utils/menu_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/utils/menu_tool.py -------------------------------------------------------------------------------- /utils/wx_pay_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtreeai/wechat_guapibot/HEAD/utils/wx_pay_util.py --------------------------------------------------------------------------------