【例子介绍】微信小程序养鸡
【源码结构】
.
├── WxBerich
│ ├── app.js
│ ├── app.json
│ ├── app.wxss
│ ├── components
│ │ ├── fcloud
│ │ │ ├── fcloud.js
│ │ │ ├── fcloud.json
│ │ │ ├── fcloud.wxml
│ │ │ └── fcloud.wxss
│ │ ├── nav
│ │ │ ├── nav.js
│ │ │ ├── nav.json
│ │ │ ├── nav.wxml
│ │ │ └── nav.wxss
│ │ ├── navBar
│ │ │ ├── app.js
│ │ │ ├── navBar.js
│ │ │ ├── navBar.json
│ │ │ ├── navBar.wxml
│ │ │ ├── navBar.wxss
│ │ │ └── package.json
│ │ └── xmAD
│ │ ├── xmAD.js
│ │ ├── xmAD.json
│ │ └── xmAD.wxml
│ ├── image
│ │ ├── apop_icon.png
│ │ ├── arrow_right.png
│ │ ├── back.png
│ │ ├── bg.jpg
│ │ ├── bowl_empty.png
│ │ ├── chat_angle.png
│ │ ├── chat_angle_up.png
│ │ ├── ck.gif
│ │ ├── ck_bowl.png
│ │ ├── ck_feed.gif
│ │ ├── clock.gif
│ │ ├── close.jpg
│ │ ├── close_white.png
│ │ ├── cloth.png
│ │ ├── coupon.png
│ │ ├── coupon_s.png
│ │ ├── egg.png
│ │ ├── egg_bg.png
│ │ ├── egg_bg_rate.png
│ │ ├── egg_box.png
│ │ ├── empty.png
│ │ ├── fdync.png
│ │ ├── feed_other.png
│ │ ├── fodder.png
│ │ ├── fodder_bg.png
│ │ ├── fodder_ripe_bg.png
│ │ ├── fpopup_head.png
│ │ ├── ge_add_my.png
│ │ ├── ge_feed.png
│ │ ├── ge_fodder.png
│ │ ├── ge_fways.png
│ │ ├── ge_grid_intro.png
│ │ ├── ge_grid_rule.png
│ │ ├── ge_grid_start.png
│ │ ├── ge_st.png
│ │ ├── getfodder.png
│ │ ├── grid_bg.png
│ │ ├── grid_my_record.png
│ │ ├── grid_r0_c0.png
│ │ ├── grid_r0_c1.png
│ │ ├── grid_r1_c0.png
│ │ ├── grid_r1_c1.png
│ │ ├── grid_r2_c0.png
│ │ ├── grid_rule.png
│ │ ├── grid_tf_brown.png
│ │ ├── grid_tf_green.png
│ │ ├── hand.png
│ │ ├── home.png
│ │ ├── home_s.png
│ │ ├── invite.png
│ │ ├── laying_egg.png
│ │ ├── ly_award.png
│ │ ├── ly_ball.png
│ │ ├── ly_ball_selected.png
│ │ ├── ly_close.png
│ │ ├── ly_confirm.png
│ │ ├── ly_desktop.png
│ │ ├── ly_icon.png
│ │ ├── ly_join_digit.png
│ │ ├── ly_qln.png
│ │ ├── ly_top_bg.png
│ │ ├── mine.png
│ │ ├── mine_s.png
│ │ ├── pk_arrow_right.png
│ │ ├── pk_detail_arrow.png
│ │ ├── pk_home.png
│ │ ├── pk_poker_selected.png
│ │ ├── power.png
│ │ ├── rank.jpg
│ │ ├── redflag.png
│ │ ├── scissor.png
│ │ ├── showtime.png
│ │ ├── sign_action_bg.png
│ │ ├── sign_top_bg.jpeg
│ │ ├── signed.jpg
│ │ ├── stone.png
│ │ ├── store.png
│ │ ├── store_s.png
│ │ ├── tvideo.png
│ │ ├── tvideo_s.png
│ │ ├── upload_btn.png
│ │ ├── video.png
│ │ ├── yun_1.png
│ │ └── yun_2.png
│ ├── miniprogram_npm
│ │ └── umtrack-wx
│ │ └── index.js
│ ├── node_modules
│ │ └── umtrack-wx
│ │ ├── lib
│ │ │ └── index.js
│ │ └── package.json
│ ├── package-lock.json
│ ├── package.json
│ ├── pages
│ │ ├── ad
│ │ │ ├── crm
│ │ │ │ ├── index.js
│ │ │ │ ├── index.json
│ │ │ │ ├── index.wxml
│ │ │ │ └── index.wxss
│ │ │ ├── fcupload
│ │ │ │ ├── index.js
│ │ │ │ ├── index.json
│ │ │ │ ├── index.wxml
│ │ │ │ └── index.wxss
│ │ │ ├── feupload
│ │ │ │ ├── feupload.js
│ │ │ │ ├── feupload.json
│ │ │ │ ├── feupload.wxml
│ │ │ │ └── feupload.wxss
│ │ │ ├── finvite
│ │ │ │ ├── finvite.js
│ │ │ │ ├── finvite.json
│ │ │ │ ├── finvite.wxml
│ │ │ │ └── finvite.wxss
│ │ │ ├── fiupload
│ │ │ │ ├── fiupload.js
│ │ │ │ ├── fiupload.json
│ │ │ │ ├── fiupload.wxml
│ │ │ │ └── fiupload.wxss
│ │ │ ├── follow
│ │ │ │ ├── index.js
│ │ │ │ ├── index.json
│ │ │ │ ├── index.wxml
│ │ │ │ └── index.wxss
│ │ │ ├── mp
│ │ │ │ ├── detail
│ │ │ │ │ ├── detail.js
│ │ │ │ │ ├── detail.json
│ │ │ │ │ ├── detail.wxml
│ │ │ │ │ └── detail.wxss
│ │ │ │ ├── list.js
│ │ │ │ ├── list.json
│ │ │ │ ├── list.wxml
│ │ │ │ └── list.wxss
│ │ │ └── soup
│ │ │ ├── soup.js
│ │ │ ├── soup.json
│ │ │ ├── soup.wxml
│ │ │ └── soup.wxss
│ │ ├── coupon
│ │ │ ├── ch
│ │ │ │ ├── ch.js
│ │ │ │ ├── ch.json
│ │ │ │ ├── ch.wxml
│ │ │ │ └── ch.wxss
│ │ │ ├── coupon.js
│ │ │ ├── coupon.json
│ │ │ ├── coupon.wxml
│ │ │ └── coupon.wxss
│ │ ├── energy
│ │ │ ├── include_ad.wxml
│ │ │ ├── include_full.wxml
│ │ │ ├── index.js
│ │ │ ├── index.json
│ │ │ ├── index.wxml
│ │ │ └── index.wxss
│ │ ├── farm
│ │ │ ├── anim
│ │ │ │ ├── anim.js
│ │ │ │ ├── anim.json
│ │ │ │ ├── anim.wxml
│ │ │ │ └── anim.wxss
│ │ │ ├── include_apop.wxml
│ │ │ ├── include_aty.wxml
│ │ │ ├── include_fways.wxml
│ │ │ ├── include_guide.wxml
│ │ │ ├── include_ite_dpop.wxml
│ │ │ ├── include_login.wxml
│ │ │ ├── include_mp.wxml
│ │ │ ├── include_sfodder.wxml
│ │ │ ├── include_sign.wxml
│ │ │ ├── index.js
│ │ │ ├── index.json
│ │ │ ├── index.wxml
│ │ │ └── index.wxss
│ │ ├── grid
│ │ │ ├── grid.js
│ │ │ ├── grid.json
│ │ │ ├── grid.wxml
│ │ │ ├── grid.wxss
│ │ │ ├── include_guide.wxml
│ │ │ ├── include_method.wxml
│ │ │ ├── include_pk.wxml
│ │ │ ├── include_pk_rt.wxml
│ │ │ ├── include_power.wxml
│ │ │ ├── include_qln.wxml
│ │ │ ├── myrecord
│ │ │ │ ├── myrecord.js
│ │ │ │ ├── myrecord.json
│ │ │ │ ├── myrecord.wxml
│ │ │ │ └── myrecord.wxss
│ │ │ ├── power
│ │ │ │ ├── power.js
│ │ │ │ ├── power.json
│ │ │ │ ├── power.wxml
│ │ │ │ └── power.wxss
│ │ │ └── prrecord
│ │ │ ├── prrecord.js
│ │ │ ├── prrecord.json
│ │ │ ├── prrecord.wxml
│ │ │ └── prrecord.wxss
│ │ ├── lucky
│ │ │ ├── dync
│ │ │ │ ├── dync.js
│ │ │ │ ├── dync.json
│ │ │ │ ├── dync.wxml
│ │ │ │ └── dync.wxss
│ │ │ ├── include_login.wxml
│ │ │ ├── include_method.wxml
│ │ │ ├── include_qln.wxml
│ │ │ ├── include_ust.wxml
│ │ │ ├── index.js
│ │ │ ├── index.json
│ │ │ ├── index.wxml
│ │ │ ├── index.wxss
│ │ │ ├── my
│ │ │ │ ├── my.js
│ │ │ │ ├── my.json
│ │ │ │ ├── my.wxml
│ │ │ │ └── my.wxss
│ │ │ ├── previous
│ │ │ │ ├── previous.js
│ │ │ │ ├── previous.json
│ │ │ │ ├── previous.wxml
│ │ │ │ └── previous.wxss
│ │ │ └── win
│ │ │ ├── win.js
│ │ │ ├── win.json
│ │ │ ├── win.wxml
│ │ │ └── win.wxss
│ │ ├── market
│ │ │ ├── market.js
│ │ │ ├── market.json
│ │ │ ├── market.wxml
│ │ │ ├── market.wxss
│ │ │ ├── ok
│ │ │ │ ├── ok.js
│ │ │ │ ├── ok.json
│ │ │ │ ├── ok.wxml
│ │ │ │ └── ok.wxss
│ │ │ └── pay
│ │ │ ├── pay.js
│ │ │ ├── pay.json
│ │ │ ├── pay.wxml
│ │ │ └── pay.wxss
│ │ ├── mine
│ │ │ ├── cash
│ │ │ │ ├── cash.js
│ │ │ │ ├── cash.json
│ │ │ │ ├── cash.wxml
│ │ │ │ ├── cash.wxss
│ │ │ │ ├── ertdetail
│ │ │ │ │ ├── ertdetail.js
│ │ │ │ │ ├── ertdetail.json
│ │ │ │ │ ├── ertdetail.wxml
│ │ │ │ │ └── ertdetail.wxss
│ │ │ │ ├── include_eg.wxml
│ │ │ │ ├── include_ww.wxml
│ │ │ │ └── page
│ │ │ │ ├── page.js
│ │ │ │ ├── page.json
│ │ │ │ ├── page.wxml
│ │ │ │ └── page.wxss
│ │ │ ├── erecord
│ │ │ │ ├── erecord.js
│ │ │ │ ├── erecord.json
│ │ │ │ ├── erecord.wxml
│ │ │ │ └── erecord.wxss
│ │ │ ├── erterecord
│ │ │ │ ├── detail
│ │ │ │ │ ├── detail.js
│ │ │ │ │ ├── detail.json
│ │ │ │ │ ├── detail.wxml
│ │ │ │ │ └── detail.wxss
│ │ │ │ ├── list.js
│ │ │ │ ├── list.json
│ │ │ │ ├── list.wxml
│ │ │ │ └── list.wxss
│ │ │ ├── frecord
│ │ │ │ ├── frecord.js
│ │ │ │ ├── frecord.json
│ │ │ │ ├── frecord.wxml
│ │ │ │ └── frecord.wxss
│ │ │ ├── ifriends
│ │ │ │ ├── ifriends.js
│ │ │ │ ├── ifriends.json
│ │ │ │ ├── ifriends.wxml
│ │ │ │ └── ifriends.wxss
│ │ │ ├── include_addr.wxml
│ │ │ ├── include_ainvite.wxml
│ │ │ ├── include_login.wxml
│ │ │ ├── mine.js
│ │ │ ├── mine.json
│ │ │ ├── mine.wxml
│ │ │ ├── mine.wxss
│ │ │ ├── params
│ │ │ │ ├── params.js
│ │ │ │ ├── params.json
│ │ │ │ ├── params.wxml
│ │ │ │ └── params.wxss
│ │ │ ├── qrcode
│ │ │ │ ├── qrcode.js
│ │ │ │ ├── qrcode.json
│ │ │ │ ├── qrcode.wxml
│ │ │ │ └── qrcode.wxss
│ │ │ ├── sellegg
│ │ │ │ ├── include_extract.wxml
│ │ │ │ ├── include_sell.wxml
│ │ │ │ ├── sellegg.js
│ │ │ │ ├── sellegg.json
│ │ │ │ ├── sellegg.wxml
│ │ │ │ └── sellegg.wxss
│ │ │ └── setting
│ │ │ ├── setting.js
│ │ │ ├── setting.json
│ │ │ ├── setting.wxml
│ │ │ └── setting.wxss
│ │ ├── msg
│ │ │ ├── index.js
│ │ │ ├── index.json
│ │ │ ├── index.wxml
│ │ │ └── index.wxss
│ │ ├── pk
│ │ │ ├── dync
│ │ │ │ ├── index.js
│ │ │ │ ├── index.json
│ │ │ │ ├── index.wxml
│ │ │ │ └── index.wxss
│ │ │ ├── friendpk
│ │ │ │ ├── include_method.wxml
│ │ │ │ ├── include_pk_result.wxml
│ │ │ │ ├── index.js
│ │ │ │ ├── index.json
│ │ │ │ ├── index.wxml
│ │ │ │ └── index.wxss
│ │ │ ├── include_cle_friend.wxml
│ │ │ ├── include_method.wxml
│ │ │ ├── include_pk.wxml
│ │ │ ├── include_pk_result.wxml
│ │ │ ├── include_sponsor.wxml
│ │ │ ├── lobby.js
│ │ │ ├── lobby.json
│ │ │ ├── lobby.wxml
│ │ │ ├── lobby.wxss
│ │ │ ├── mypk
│ │ │ │ ├── mypk.js
│ │ │ │ ├── mypk.json
│ │ │ │ ├── mypk.wxml
│ │ │ │ └── mypk.wxss
│ │ │ ├── prank
│ │ │ │ ├── include_month.wxml
│ │ │ │ ├── include_today.wxml
│ │ │ │ ├── prank.js
│ │ │ │ ├── prank.json
│ │ │ │ ├── prank.wxml
│ │ │ │ └── prank.wxss
│ │ │ └── profile
│ │ │ ├── index.js
│ │ │ ├── index.json
│ │ │ ├── index.wxml
│ │ │ └── index.wxss
│ │ ├── power
│ │ │ ├── action
│ │ │ │ ├── action.js
│ │ │ │ ├── action.json
│ │ │ │ ├── action.wxml
│ │ │ │ ├── action.wxss
│ │ │ │ ├── include_method.wxml
│ │ │ │ └── include_new_user.wxml
│ │ │ ├── factionlist
│ │ │ │ ├── factionlist.js
│ │ │ │ ├── factionlist.json
│ │ │ │ ├── factionlist.wxml
│ │ │ │ └── factionlist.wxss
│ │ │ ├── include_method.wxml
│ │ │ ├── index.js
│ │ │ ├── index.json
│ │ │ ├── index.wxml
│ │ │ ├── index.wxss
│ │ │ └── tasklist
│ │ │ ├── tasklist.js
│ │ │ ├── tasklist.json
│ │ │ ├── tasklist.wxml
│ │ │ └── tasklist.wxss
│ │ ├── rank
│ │ │ ├── include_month.wxml
│ │ │ ├── include_rank.wxml
│ │ │ ├── rank.js
│ │ │ ├── rank.json
│ │ │ ├── rank.wxml
│ │ │ └── rank.wxss
│ │ ├── showtime
│ │ │ ├── index.js
│ │ │ ├── index.json
│ │ │ ├── index.wxml
│ │ │ └── index.wxss
│ │ ├── store
│ │ │ ├── detail
│ │ │ │ ├── detail.js
│ │ │ │ ├── detail.json
│ │ │ │ ├── detail.wxml
│ │ │ │ ├── detail.wxss
│ │ │ │ └── include_exchange.wxml
│ │ │ ├── include_figoods.wxml
│ │ │ ├── include_goods.wxml
│ │ │ ├── store.js
│ │ │ ├── store.json
│ │ │ ├── store.wxml
│ │ │ └── store.wxss
│ │ ├── tdtask
│ │ │ ├── step
│ │ │ │ ├── step.js
│ │ │ │ ├── step.json
│ │ │ │ ├── step.wxml
│ │ │ │ └── step.wxss
│ │ │ ├── tdtask.js
│ │ │ ├── tdtask.json
│ │ │ ├── tdtask.wxml
│ │ │ └── tdtask.wxss
│ │ ├── test
│ │ │ ├── test.js
│ │ │ ├── test.json
│ │ │ ├── test.wxml
│ │ │ └── test.wxss
│ │ ├── ufarm
│ │ │ ├── detail
│ │ │ │ ├── detail.js
│ │ │ │ ├── detail.json
│ │ │ │ ├── detail.wxml
│ │ │ │ ├── detail.wxss
│ │ │ │ ├── include_recall.wxml
│ │ │ │ └── include_sfodder.wxml
│ │ │ ├── fdync
│ │ │ │ ├── fdync.js
│ │ │ │ ├── fdync.json
│ │ │ │ ├── fdync.wxml
│ │ │ │ └── fdync.wxss
│ │ │ ├── feedlist
│ │ │ │ ├── feedlist.js
│ │ │ │ ├── feedlist.json
│ │ │ │ ├── feedlist.wxml
│ │ │ │ ├── feedlist.wxss
│ │ │ │ ├── include_fall.wxml
│ │ │ │ ├── include_fme.wxml
│ │ │ │ └── include_recall.wxml
│ │ │ ├── recallback
│ │ │ │ ├── recallback.js
│ │ │ │ ├── recallback.json
│ │ │ │ ├── recallback.wxml
│ │ │ │ └── recallback.wxss
│ │ │ └── steallist
│ │ │ ├── include_sall.wxml
│ │ │ ├── include_sme.wxml
│ │ │ ├── steallist.js
│ │ │ ├── steallist.json
│ │ │ ├── steallist.wxml
│ │ │ └── steallist.wxss
│ │ ├── video
│ │ │ ├── video.js
│ │ │ ├── video.json
│ │ │ ├── video.wxml
│ │ │ └── video.wxss
│ │ └── webview
│ │ ├── webview.js
│ │ ├── webview.json
│ │ ├── webview.wxml
│ │ └── webview.wxss
│ ├── project.config.json
│ ├── project.private.config.json
│ ├── sitemap.json
│ ├── tpl
│ │ ├── empty.wxss
│ │ ├── mysponsor.wxss
│ │ ├── tpl_ad_csm.wxml
│ │ ├── tpl_ad_csm.wxss
│ │ ├── tpl_dialog.wxml
│ │ ├── tpl_dialog.wxss
│ │ ├── tpl_tab.wxml
│ │ ├── tpl_tab.wxss
│ │ ├── tpl_tkstep.wxml
│ │ └── tpl_tkstep.wxss
│ └── utils
│ ├── base64.js
│ ├── common.util.js
│ ├── config.js
│ ├── crypto.js
│ ├── hmac.js
│ ├── http.js
│ ├── md5.js
│ ├── object.util.js
│ ├── page.js
│ ├── promise.util.js
│ ├── promisify.js
│ ├── protocal.js
│ ├── sha1.js
│ ├── sign.js
│ ├── timeUtil.wxs
│ ├── uploadFile.js
│ ├── util.js
│ ├── util.wxs
│ ├── xmadx_conf.js
│ └── xmadx_sdk.js
└── js微信小程序养鸡_WxBerich.zip
81 directories, 451 files
评论