├── .gitignore ├── README.md ├── app.js ├── app.json ├── app.wxss ├── config.js.example ├── images ├── cover.png ├── defalut.png ├── icon-img.png ├── logo.png ├── qrCode.jpg ├── tips.png └── uploadImg.png ├── lib └── fontAwesome │ └── wxss │ └── font-awesome.min.wxss ├── pages ├── authorizetip │ ├── authorizetip.js │ ├── authorizetip.json │ ├── authorizetip.wxml │ └── authorizetip.wxss ├── comment │ ├── comment.js │ ├── comment.json │ ├── comment.wxml │ └── comment.wxss ├── index │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── vote │ ├── vote.js │ ├── vote.json │ ├── vote.wxml │ └── vote.wxss ├── voteDetail │ ├── voteDetail.js │ ├── voteDetail.json │ ├── voteDetail.wxml │ └── voteDetail.wxss └── voterDetail │ ├── voterDetail.js │ ├── voterDetail.json │ ├── voterDetail.wxml │ └── voterDetail.wxss ├── sitemap.json └── utils ├── numbertofix.wxs └── util.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/app.js -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/app.json -------------------------------------------------------------------------------- /app.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/app.wxss -------------------------------------------------------------------------------- /config.js.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/config.js.example -------------------------------------------------------------------------------- /images/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/images/cover.png -------------------------------------------------------------------------------- /images/defalut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/images/defalut.png -------------------------------------------------------------------------------- /images/icon-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/images/icon-img.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/qrCode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/images/qrCode.jpg -------------------------------------------------------------------------------- /images/tips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/images/tips.png -------------------------------------------------------------------------------- /images/uploadImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/images/uploadImg.png -------------------------------------------------------------------------------- /lib/fontAwesome/wxss/font-awesome.min.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/lib/fontAwesome/wxss/font-awesome.min.wxss -------------------------------------------------------------------------------- /pages/authorizetip/authorizetip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/pages/authorizetip/authorizetip.js -------------------------------------------------------------------------------- /pages/authorizetip/authorizetip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/pages/authorizetip/authorizetip.json -------------------------------------------------------------------------------- /pages/authorizetip/authorizetip.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/pages/authorizetip/authorizetip.wxml -------------------------------------------------------------------------------- /pages/authorizetip/authorizetip.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/pages/authorizetip/authorizetip.wxss -------------------------------------------------------------------------------- /pages/comment/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/pages/comment/comment.js -------------------------------------------------------------------------------- /pages/comment/comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/pages/comment/comment.json -------------------------------------------------------------------------------- /pages/comment/comment.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/pages/comment/comment.wxml -------------------------------------------------------------------------------- /pages/comment/comment.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/pages/comment/comment.wxss -------------------------------------------------------------------------------- /pages/index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/pages/index/index.js -------------------------------------------------------------------------------- /pages/index/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/pages/index/index.json -------------------------------------------------------------------------------- /pages/index/index.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/pages/index/index.wxml -------------------------------------------------------------------------------- /pages/index/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/pages/index/index.wxss -------------------------------------------------------------------------------- /pages/vote/vote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/pages/vote/vote.js -------------------------------------------------------------------------------- /pages/vote/vote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/pages/vote/vote.json -------------------------------------------------------------------------------- /pages/vote/vote.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/pages/vote/vote.wxml -------------------------------------------------------------------------------- /pages/vote/vote.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/pages/vote/vote.wxss -------------------------------------------------------------------------------- /pages/voteDetail/voteDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/pages/voteDetail/voteDetail.js -------------------------------------------------------------------------------- /pages/voteDetail/voteDetail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/pages/voteDetail/voteDetail.json -------------------------------------------------------------------------------- /pages/voteDetail/voteDetail.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/pages/voteDetail/voteDetail.wxml -------------------------------------------------------------------------------- /pages/voteDetail/voteDetail.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/pages/voteDetail/voteDetail.wxss -------------------------------------------------------------------------------- /pages/voterDetail/voterDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/pages/voterDetail/voterDetail.js -------------------------------------------------------------------------------- /pages/voterDetail/voterDetail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/pages/voterDetail/voterDetail.json -------------------------------------------------------------------------------- /pages/voterDetail/voterDetail.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/pages/voterDetail/voterDetail.wxml -------------------------------------------------------------------------------- /pages/voterDetail/voterDetail.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/pages/voterDetail/voterDetail.wxss -------------------------------------------------------------------------------- /sitemap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/sitemap.json -------------------------------------------------------------------------------- /utils/numbertofix.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/utils/numbertofix.wxs -------------------------------------------------------------------------------- /utils/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a958330481/votingNow/HEAD/utils/util.js --------------------------------------------------------------------------------