├── README.md ├── app.js ├── app.json ├── app.wxss ├── images └── tabbar │ ├── jifen.png │ ├── jifen_on.png │ ├── shouye.png │ └── shouye_on.png ├── pages ├── index │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss └── points │ ├── common │ ├── app.png │ ├── app1.png │ ├── app2.png │ ├── common.js │ └── main.wxss │ ├── points.js │ ├── points.json │ ├── points.wxml │ ├── points.wxss │ ├── points_history.js │ ├── points_history.json │ ├── points_history.wxml │ └── points_history.wxss ├── project.config.json └── sitemap.json /README.md: -------------------------------------------------------------------------------- 1 | # points system 2 | 小程序积分系统 3 | 4 | 详情介绍: 5 | 6 | https://mp.weixin.qq.com/s/tpTnSGHDptF57zV2aqz8Kw 7 | 8 | 走过路过,请给个star 9 | -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotagogo/Points-System/HEAD/app.js -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotagogo/Points-System/HEAD/app.json -------------------------------------------------------------------------------- /app.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotagogo/Points-System/HEAD/app.wxss -------------------------------------------------------------------------------- /images/tabbar/jifen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotagogo/Points-System/HEAD/images/tabbar/jifen.png -------------------------------------------------------------------------------- /images/tabbar/jifen_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotagogo/Points-System/HEAD/images/tabbar/jifen_on.png -------------------------------------------------------------------------------- /images/tabbar/shouye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotagogo/Points-System/HEAD/images/tabbar/shouye.png -------------------------------------------------------------------------------- /images/tabbar/shouye_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotagogo/Points-System/HEAD/images/tabbar/shouye_on.png -------------------------------------------------------------------------------- /pages/index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotagogo/Points-System/HEAD/pages/index/index.js -------------------------------------------------------------------------------- /pages/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /pages/index/index.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotagogo/Points-System/HEAD/pages/index/index.wxml -------------------------------------------------------------------------------- /pages/index/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotagogo/Points-System/HEAD/pages/index/index.wxss -------------------------------------------------------------------------------- /pages/points/common/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotagogo/Points-System/HEAD/pages/points/common/app.png -------------------------------------------------------------------------------- /pages/points/common/app1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotagogo/Points-System/HEAD/pages/points/common/app1.png -------------------------------------------------------------------------------- /pages/points/common/app2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotagogo/Points-System/HEAD/pages/points/common/app2.png -------------------------------------------------------------------------------- /pages/points/common/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotagogo/Points-System/HEAD/pages/points/common/common.js -------------------------------------------------------------------------------- /pages/points/common/main.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotagogo/Points-System/HEAD/pages/points/common/main.wxss -------------------------------------------------------------------------------- /pages/points/points.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotagogo/Points-System/HEAD/pages/points/points.js -------------------------------------------------------------------------------- /pages/points/points.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "积分中心" 3 | } -------------------------------------------------------------------------------- /pages/points/points.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotagogo/Points-System/HEAD/pages/points/points.wxml -------------------------------------------------------------------------------- /pages/points/points.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotagogo/Points-System/HEAD/pages/points/points.wxss -------------------------------------------------------------------------------- /pages/points/points_history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotagogo/Points-System/HEAD/pages/points/points_history.js -------------------------------------------------------------------------------- /pages/points/points_history.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "积分历史" 3 | } -------------------------------------------------------------------------------- /pages/points/points_history.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotagogo/Points-System/HEAD/pages/points/points_history.wxml -------------------------------------------------------------------------------- /pages/points/points_history.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotagogo/Points-System/HEAD/pages/points/points_history.wxss -------------------------------------------------------------------------------- /project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotagogo/Points-System/HEAD/project.config.json -------------------------------------------------------------------------------- /sitemap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotagogo/Points-System/HEAD/sitemap.json --------------------------------------------------------------------------------