├── .gitignore ├── App.vue ├── LICENSE ├── README.md ├── api └── backend.js ├── app.js ├── colorui ├── animation.css ├── components │ └── cu-custom.vue ├── icon.css └── main.css ├── components ├── FabBtn │ └── index.vue ├── ListCell │ └── index.vue ├── LoadMore │ └── index.vue ├── Loading │ └── index.vue ├── ProductList │ ├── BoxLayout.vue │ ├── HorizontalLayout.vue │ ├── HorizontalLayout2.vue │ └── HorizontalScrollLayout.vue ├── Refresh │ └── index.vue ├── Share │ └── index.vue ├── SortNavbar │ └── index.vue ├── SortNavbar2 │ └── index.vue ├── Tab │ └── index.vue └── Tab2 │ └── index.vue ├── config.js ├── main.js ├── manifest.json ├── pages.json ├── pages ├── category │ └── category.vue ├── collect │ ├── collect.vue │ └── components │ │ └── CollectList.vue ├── collocation │ ├── component │ │ ├── CollocationBox.vue │ │ ├── CollocationCard.vue │ │ └── CollocationList.vue │ ├── detail.vue │ └── index.vue ├── halfPrice │ └── index.vue ├── index │ └── index.vue ├── nine │ └── nine.vue ├── product │ ├── list.vue │ └── product.vue ├── public │ ├── guide.vue │ └── login.vue ├── rank │ └── rank.vue ├── search │ ├── result.vue │ └── search.vue ├── user │ ├── message.vue │ ├── set.vue │ └── user.vue └── webview │ └── index.vue ├── static ├── errorImage.jpg ├── female.png ├── logo.png ├── male.png ├── refresh │ ├── loading.png │ └── xiangxia.png ├── splash.9.png └── tab │ ├── circle.png │ ├── circle_cur.png │ ├── home.png │ ├── home_cur.png │ ├── my.png │ ├── my_cur.png │ ├── shop.png │ └── shop_cur.png ├── store └── index.js ├── style └── app.scss ├── uni.scss └── utils ├── cache.js ├── http.js └── mcUtils.js /.gitignore: -------------------------------------------------------------------------------- 1 | unpackage 2 | .idea 3 | -------------------------------------------------------------------------------- /App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/App.vue -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 项目已被迁移到新的地址:https://github.com/silently9527/coupons 2 | -------------------------------------------------------------------------------- /api/backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/api/backend.js -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/app.js -------------------------------------------------------------------------------- /colorui/animation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/colorui/animation.css -------------------------------------------------------------------------------- /colorui/components/cu-custom.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/colorui/components/cu-custom.vue -------------------------------------------------------------------------------- /colorui/icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/colorui/icon.css -------------------------------------------------------------------------------- /colorui/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/colorui/main.css -------------------------------------------------------------------------------- /components/FabBtn/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/components/FabBtn/index.vue -------------------------------------------------------------------------------- /components/ListCell/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/components/ListCell/index.vue -------------------------------------------------------------------------------- /components/LoadMore/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/components/LoadMore/index.vue -------------------------------------------------------------------------------- /components/Loading/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/components/Loading/index.vue -------------------------------------------------------------------------------- /components/ProductList/BoxLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/components/ProductList/BoxLayout.vue -------------------------------------------------------------------------------- /components/ProductList/HorizontalLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/components/ProductList/HorizontalLayout.vue -------------------------------------------------------------------------------- /components/ProductList/HorizontalLayout2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/components/ProductList/HorizontalLayout2.vue -------------------------------------------------------------------------------- /components/ProductList/HorizontalScrollLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/components/ProductList/HorizontalScrollLayout.vue -------------------------------------------------------------------------------- /components/Refresh/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/components/Refresh/index.vue -------------------------------------------------------------------------------- /components/Share/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/components/Share/index.vue -------------------------------------------------------------------------------- /components/SortNavbar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/components/SortNavbar/index.vue -------------------------------------------------------------------------------- /components/SortNavbar2/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/components/SortNavbar2/index.vue -------------------------------------------------------------------------------- /components/Tab/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/components/Tab/index.vue -------------------------------------------------------------------------------- /components/Tab2/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/components/Tab2/index.vue -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | // APIHOST: "http://localhost:9090" 3 | } 4 | -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/main.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/manifest.json -------------------------------------------------------------------------------- /pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/pages.json -------------------------------------------------------------------------------- /pages/category/category.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/pages/category/category.vue -------------------------------------------------------------------------------- /pages/collect/collect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/pages/collect/collect.vue -------------------------------------------------------------------------------- /pages/collect/components/CollectList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/pages/collect/components/CollectList.vue -------------------------------------------------------------------------------- /pages/collocation/component/CollocationBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/pages/collocation/component/CollocationBox.vue -------------------------------------------------------------------------------- /pages/collocation/component/CollocationCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/pages/collocation/component/CollocationCard.vue -------------------------------------------------------------------------------- /pages/collocation/component/CollocationList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/pages/collocation/component/CollocationList.vue -------------------------------------------------------------------------------- /pages/collocation/detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/pages/collocation/detail.vue -------------------------------------------------------------------------------- /pages/collocation/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/pages/collocation/index.vue -------------------------------------------------------------------------------- /pages/halfPrice/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/pages/halfPrice/index.vue -------------------------------------------------------------------------------- /pages/index/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/pages/index/index.vue -------------------------------------------------------------------------------- /pages/nine/nine.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/pages/nine/nine.vue -------------------------------------------------------------------------------- /pages/product/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/pages/product/list.vue -------------------------------------------------------------------------------- /pages/product/product.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/pages/product/product.vue -------------------------------------------------------------------------------- /pages/public/guide.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/pages/public/guide.vue -------------------------------------------------------------------------------- /pages/public/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/pages/public/login.vue -------------------------------------------------------------------------------- /pages/rank/rank.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/pages/rank/rank.vue -------------------------------------------------------------------------------- /pages/search/result.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/pages/search/result.vue -------------------------------------------------------------------------------- /pages/search/search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/pages/search/search.vue -------------------------------------------------------------------------------- /pages/user/message.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/pages/user/message.vue -------------------------------------------------------------------------------- /pages/user/set.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/pages/user/set.vue -------------------------------------------------------------------------------- /pages/user/user.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/pages/user/user.vue -------------------------------------------------------------------------------- /pages/webview/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/pages/webview/index.vue -------------------------------------------------------------------------------- /static/errorImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/static/errorImage.jpg -------------------------------------------------------------------------------- /static/female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/static/female.png -------------------------------------------------------------------------------- /static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/static/logo.png -------------------------------------------------------------------------------- /static/male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/static/male.png -------------------------------------------------------------------------------- /static/refresh/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/static/refresh/loading.png -------------------------------------------------------------------------------- /static/refresh/xiangxia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/static/refresh/xiangxia.png -------------------------------------------------------------------------------- /static/splash.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/static/splash.9.png -------------------------------------------------------------------------------- /static/tab/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/static/tab/circle.png -------------------------------------------------------------------------------- /static/tab/circle_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/static/tab/circle_cur.png -------------------------------------------------------------------------------- /static/tab/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/static/tab/home.png -------------------------------------------------------------------------------- /static/tab/home_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/static/tab/home_cur.png -------------------------------------------------------------------------------- /static/tab/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/static/tab/my.png -------------------------------------------------------------------------------- /static/tab/my_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/static/tab/my_cur.png -------------------------------------------------------------------------------- /static/tab/shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/static/tab/shop.png -------------------------------------------------------------------------------- /static/tab/shop_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/static/tab/shop_cur.png -------------------------------------------------------------------------------- /store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/store/index.js -------------------------------------------------------------------------------- /style/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/style/app.scss -------------------------------------------------------------------------------- /uni.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/uni.scss -------------------------------------------------------------------------------- /utils/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/utils/cache.js -------------------------------------------------------------------------------- /utils/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/utils/http.js -------------------------------------------------------------------------------- /utils/mcUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silently9527/mall-coupons/HEAD/utils/mcUtils.js --------------------------------------------------------------------------------