├── src ├── styles │ ├── base │ │ ├── fn.wxss │ │ ├── mixin │ │ │ ├── text.wxss │ │ │ ├── setArrow.wxss │ │ │ └── setOnepx.wxss │ │ ├── variable │ │ │ ├── color.wxss │ │ │ ├── global.wxss │ │ │ ├── weui-msg.wxss │ │ │ ├── weui-button.wxss │ │ │ ├── weui-cell.wxss │ │ │ ├── weui-dialog.wxss │ │ │ ├── weui-grid.wxss │ │ │ └── weui-progress.wxss │ │ └── reset.wxss │ ├── widget │ │ ├── weui-cell │ │ │ ├── weui-switch.wxss │ │ │ ├── weui-check.wxss │ │ │ ├── weui-form │ │ │ │ ├── weui-vcode.wxss │ │ │ │ ├── weui-select.wxss │ │ │ │ ├── weui-form_common.wxss │ │ │ │ └── weui-form-preview.wxss │ │ │ ├── weui-access.wxss │ │ │ ├── weui-cell.wxss │ │ │ ├── weui-uploader.wxss │ │ │ └── weui-form.wxss │ │ ├── weui-button │ │ │ └── weui-button.wxss │ │ ├── weui-flex │ │ │ └── weui-flex.wxss │ │ ├── weui-tips │ │ │ ├── weui-badge.wxss │ │ │ └── weui-loadmore.wxss │ │ ├── weui-progress │ │ │ └── weui-progress.wxss │ │ ├── weui-page │ │ │ ├── weui-article.wxss │ │ │ └── weui-msg.wxss │ │ ├── weui-agree │ │ │ └── weui-agree.wxss │ │ ├── weui-grid │ │ │ └── weui-grid.wxss │ │ ├── weui-footer │ │ │ └── weui-footer.wxss │ │ ├── weui-panel │ │ │ └── weui-panel.wxss │ │ ├── weui-tab │ │ │ ├── weui-navbar.wxss │ │ │ └── weui-tab.wxss │ │ ├── weui-searchbar │ │ │ └── weui-searchbar.wxss │ │ ├── weui-animate │ │ │ └── weui-animate.wxss │ │ ├── weui-media-box │ │ │ └── weui-media-box.wxss │ │ └── weui-loading │ │ │ └── weui-loading.wxss │ └── ezui.wxss ├── pages │ ├── index │ │ ├── index.json │ │ ├── index.wxss │ │ ├── index.wxml │ │ └── index.js │ ├── my │ │ ├── userotherinfo.json │ │ ├── donate.json │ │ ├── index.json │ │ ├── wallet.json │ │ ├── myaward.json │ │ ├── myjoin.json │ │ ├── mypost.json │ │ ├── donate.wxml │ │ ├── myaward.wxss │ │ ├── myjoin.wxss │ │ ├── wallet.wxss │ │ ├── donate.wxss │ │ ├── userotherinfo.wxss │ │ ├── index.wxss │ │ ├── myjoin.wxml │ │ ├── mypost.wxss │ │ ├── donate.js │ │ ├── mypost.wxml │ │ ├── userotherinfo.wxml │ │ ├── myaward.wxml │ │ ├── myjoin.js │ │ ├── userotherinfo.js │ │ ├── wallet.wxml │ │ ├── index.js │ │ ├── mypost.js │ │ ├── index.wxml │ │ ├── myaward.js │ │ └── wallet.js │ ├── webview │ │ ├── index.json │ │ ├── index.wxss │ │ ├── index.wxml │ │ └── index.js │ ├── luckydraw │ │ ├── map.wxss │ │ ├── map.json │ │ ├── detail.json │ │ ├── list.json │ │ ├── alljoiner.json │ │ ├── awardsaddress.json │ │ ├── shareimage.wxss │ │ ├── awardsaddress.wxss │ │ ├── shareimage.json │ │ ├── shareimage.wxml │ │ ├── detail.wxss │ │ ├── list.wxml │ │ ├── list.wxss │ │ ├── alljoiner.wxss │ │ ├── map.wxml │ │ ├── alljoiner.wxml │ │ ├── alljoiner.js │ │ ├── list.js │ │ ├── awardsaddress.wxml │ │ ├── map.js │ │ └── awardsaddress.js │ └── create │ │ ├── create.json │ │ └── create.wxss ├── images │ ├── coin.png │ ├── digger.gif │ ├── emoji_lose.gif │ ├── emoji_win.gif │ ├── mapmarker.png │ ├── defaultawardimage.jpg │ └── mapmarker_sponser.png ├── app.json ├── project.config.json ├── app.wxss └── utils │ └── util.js ├── donate.jpg ├── thumb.jpg ├── h5 ├── express │ ├── getkuaidi.php │ ├── index.html │ └── js │ │ └── utils.js ├── helpcenter │ ├── cooperation.html │ └── qna.html ├── rank │ ├── js │ │ └── utils.js │ └── index.html └── livetv │ ├── js │ └── utils.js │ └── index.html ├── api ├── updateotiondetail.php ├── getuserheadimg.php ├── wallet.php ├── poststats.php ├── listcomment.php ├── openluckydraw.php ├── getopenid.php ├── mysql.php ├── postexpressno.php ├── getluckymanlist.php ├── postcomment.php ├── reportformid.php ├── earncoin.php ├── coinhistorylist.php ├── postexpressaddress.php ├── sendgetawardnotice.php ├── autoopenluckydraw.php ├── appqrcode.php ├── getluckydrawdetail.php ├── getluckydrawjoins.php ├── login.php ├── joinluckydraw.php ├── homeindex.php ├── listluckydraw.php ├── uploadpic.php ├── functions.php └── postluckdraw.php ├── README.md └── LICENSE /src/styles/base/fn.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pages/index/index.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/pages/my/userotherinfo.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/pages/webview/index.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/styles/base/mixin/text.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/styles/base/mixin/setArrow.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/styles/base/mixin/setOnepx.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/styles/base/variable/color.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/styles/base/variable/global.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/styles/base/variable/weui-msg.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/styles/base/variable/weui-button.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/styles/base/variable/weui-cell.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/styles/base/variable/weui-dialog.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/styles/base/variable/weui-grid.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/styles/base/variable/weui-progress.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pages/luckydraw/map.wxss: -------------------------------------------------------------------------------- 1 | /* pages/map/index.wxss */ -------------------------------------------------------------------------------- /src/pages/webview/index.wxss: -------------------------------------------------------------------------------- 1 | /* pages/webview/index.wxss */ -------------------------------------------------------------------------------- /src/pages/my/donate.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "捐赠" 3 | } -------------------------------------------------------------------------------- /src/pages/my/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "我的" 3 | } -------------------------------------------------------------------------------- /src/pages/my/wallet.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "RP币" 3 | } -------------------------------------------------------------------------------- /src/pages/luckydraw/map.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "身边抽奖" 3 | } -------------------------------------------------------------------------------- /src/pages/my/myaward.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "众奖记录" 3 | } -------------------------------------------------------------------------------- /src/pages/my/myjoin.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "我参与的" 3 | } -------------------------------------------------------------------------------- /src/pages/my/mypost.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "我发起的" 3 | } -------------------------------------------------------------------------------- /donate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/mp_luckydraw/HEAD/donate.jpg -------------------------------------------------------------------------------- /src/pages/create/create.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "发起新抽奖" 3 | } -------------------------------------------------------------------------------- /src/pages/luckydraw/detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "抽奖详情" 3 | } -------------------------------------------------------------------------------- /src/pages/luckydraw/list.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "全部抽奖" 3 | } -------------------------------------------------------------------------------- /thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/mp_luckydraw/HEAD/thumb.jpg -------------------------------------------------------------------------------- /src/pages/luckydraw/alljoiner.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "抽奖名单" 3 | } -------------------------------------------------------------------------------- /src/pages/luckydraw/awardsaddress.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "中奖者信息" 3 | } -------------------------------------------------------------------------------- /src/images/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/mp_luckydraw/HEAD/src/images/coin.png -------------------------------------------------------------------------------- /src/images/digger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/mp_luckydraw/HEAD/src/images/digger.gif -------------------------------------------------------------------------------- /src/pages/my/donate.wxml: -------------------------------------------------------------------------------- 1 | 2 | 捐赠 3 | -------------------------------------------------------------------------------- /src/pages/my/myaward.wxss: -------------------------------------------------------------------------------- 1 | /* pages/my/mypost.wxss */ 2 | page 3 | { 4 | background: #f2f2f2; 5 | } -------------------------------------------------------------------------------- /src/pages/my/myjoin.wxss: -------------------------------------------------------------------------------- 1 | /* pages/my/mypost.wxss */ 2 | page 3 | { 4 | background: #f2f2f2; 5 | } -------------------------------------------------------------------------------- /src/pages/my/wallet.wxss: -------------------------------------------------------------------------------- 1 | /* pages/my/wallet.wxss */ 2 | page 3 | { 4 | background: #76b6e3; 5 | } -------------------------------------------------------------------------------- /src/images/emoji_lose.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/mp_luckydraw/HEAD/src/images/emoji_lose.gif -------------------------------------------------------------------------------- /src/images/emoji_win.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/mp_luckydraw/HEAD/src/images/emoji_win.gif -------------------------------------------------------------------------------- /src/images/mapmarker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/mp_luckydraw/HEAD/src/images/mapmarker.png -------------------------------------------------------------------------------- /src/pages/create/create.wxss: -------------------------------------------------------------------------------- 1 | /* pages/create/create.wxss */ 2 | page 3 | { 4 | background: #f2f2f2; 5 | } -------------------------------------------------------------------------------- /src/pages/my/donate.wxss: -------------------------------------------------------------------------------- 1 | /* pages/my/donate.wxss */ 2 | page 3 | { 4 | background-color: #f2f2f2; 5 | } -------------------------------------------------------------------------------- /src/pages/luckydraw/shareimage.wxss: -------------------------------------------------------------------------------- 1 | /* pages/book/shelfimage.wxss */ 2 | page 3 | { 4 | background: #fff; 5 | } -------------------------------------------------------------------------------- /src/pages/my/userotherinfo.wxss: -------------------------------------------------------------------------------- 1 | /* pages/my/userotherinfo.wxss */ 2 | page 3 | { 4 | background: #f2f2f2; 5 | } -------------------------------------------------------------------------------- /src/images/defaultawardimage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/mp_luckydraw/HEAD/src/images/defaultawardimage.jpg -------------------------------------------------------------------------------- /src/images/mapmarker_sponser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezshine/mp_luckydraw/HEAD/src/images/mapmarker_sponser.png -------------------------------------------------------------------------------- /src/pages/luckydraw/awardsaddress.wxss: -------------------------------------------------------------------------------- 1 | /* pages/luckydraw/awardsaddress.wxss */ 2 | page 3 | { 4 | background: #f2f2f2; 5 | } -------------------------------------------------------------------------------- /src/pages/my/index.wxss: -------------------------------------------------------------------------------- 1 | /* pages/my/index.wxss */ 2 | page 3 | { 4 | background: #f2f2f2; 5 | padding-bottom: 60px; 6 | } -------------------------------------------------------------------------------- /src/styles/widget/weui-cell/weui-switch.wxss: -------------------------------------------------------------------------------- 1 | .weui-cell_switch { 2 | padding-top: 6px; 3 | padding-bottom: 6px; 4 | } 5 | -------------------------------------------------------------------------------- /src/pages/webview/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/pages/luckydraw/shareimage.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "生成分享图", 3 | "navigationBarBackgroundColor": "#000000", 4 | "navigationBarTextStyle": "white" 5 | } -------------------------------------------------------------------------------- /src/styles/base/reset.wxss: -------------------------------------------------------------------------------- 1 | page { 2 | line-height: 1.6; 3 | font-family: -apple-system-font, "Helvetica Neue", sans-serif; 4 | } 5 | icon { 6 | vertical-align: middle; 7 | } 8 | -------------------------------------------------------------------------------- /src/styles/widget/weui-button/weui-button.wxss: -------------------------------------------------------------------------------- 1 | .weui-btn { 2 | margin-top: 15px; 3 | } 4 | .weui-btn:first-child { 5 | margin-top: 0; 6 | } 7 | .weui-btn-area { 8 | margin: 1.17647059em 15px 0.3em; 9 | } 10 | -------------------------------------------------------------------------------- /src/styles/widget/weui-flex/weui-flex.wxss: -------------------------------------------------------------------------------- 1 | .weui-flex { 2 | display: -webkit-box; 3 | display: -webkit-flex; 4 | display: flex; 5 | } 6 | .weui-flex__item { 7 | -webkit-box-flex: 1; 8 | -webkit-flex: 1; 9 | flex: 1; 10 | } 11 | -------------------------------------------------------------------------------- /src/pages/luckydraw/shareimage.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 保存到相册 5 | -------------------------------------------------------------------------------- /h5/express/getkuaidi.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/styles/widget/weui-tips/weui-badge.wxss: -------------------------------------------------------------------------------- 1 | .weui-badge { 2 | display: inline-block; 3 | padding: .15em .4em; 4 | min-width: 8px; 5 | border-radius: 18px; 6 | background-color: #E64340; 7 | color: #FFFFFF; 8 | line-height: 1.2; 9 | text-align: center; 10 | font-size: 12px; 11 | vertical-align: middle; 12 | } 13 | .weui-badge_dot { 14 | padding: .4em; 15 | min-width: 0; 16 | } 17 | -------------------------------------------------------------------------------- /src/pages/luckydraw/detail.wxss: -------------------------------------------------------------------------------- 1 | /* pages/luckydraw/detail.wxss */ 2 | page 3 | { 4 | background: #f2f2f2; 5 | padding-bottom: 60px; 6 | } 7 | .ezasheet 8 | { 9 | background: #f2f2f2; 10 | position:fixed; 11 | bottom: 0px; 12 | width: 100%; 13 | z-index: 9999; 14 | } 15 | .ezasheetitem 16 | { 17 | background: #fff; 18 | height:50px; 19 | line-height: 50px; 20 | text-align: center; 21 | color:#000; 22 | font-size: 14px; 23 | } -------------------------------------------------------------------------------- /src/styles/widget/weui-progress/weui-progress.wxss: -------------------------------------------------------------------------------- 1 | .weui-progress { 2 | display: -webkit-box; 3 | display: -webkit-flex; 4 | display: flex; 5 | -webkit-box-align: center; 6 | -webkit-align-items: center; 7 | align-items: center; 8 | } 9 | .weui-progress__bar { 10 | -webkit-box-flex: 1; 11 | -webkit-flex: 1; 12 | flex: 1; 13 | } 14 | .weui-progress__opr { 15 | margin-left: 15px; 16 | font-size: 0; 17 | } 18 | -------------------------------------------------------------------------------- /src/styles/widget/weui-cell/weui-check.wxss: -------------------------------------------------------------------------------- 1 | .weui-icon-radio { 2 | margin-left: 3.2px; 3 | margin-right: 3.2px; 4 | } 5 | .weui-icon-checkbox_circle, 6 | .weui-icon-checkbox_success { 7 | margin-left: 4.6px; 8 | margin-right: 4.6px; 9 | } 10 | .weui-check__label:active { 11 | background-color: #ECECEC; 12 | } 13 | .weui-check { 14 | position: absolute; 15 | left: -9999px; 16 | } 17 | .weui-check__hd_in-checkbox { 18 | padding-right: 0.35em; 19 | } 20 | .weui-cell__ft_in-radio { 21 | padding-left: 0.35em; 22 | } 23 | -------------------------------------------------------------------------------- /src/pages/my/myjoin.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |