实例介绍
仿美团网奇乐淘团购源码/groupon团购网源代码
【实例截图】
【核心代码】
.
├── php团购网源码-仿美团网.rar
└── 团购源码
├── about
│ ├── contact.php
│ ├── job.php
│ ├── privacy.php
│ ├── terms.php
│ └── us.php
├── account
│ ├── invite.php
│ ├── login.php
│ ├── loginup.php
│ ├── logout.php
│ ├── refer.php
│ ├── repass.php
│ ├── reset.php
│ ├── settings.php
│ ├── signup.php
│ ├── signuped.php
│ └── verify.php
├── ajax
│ ├── coupon.php
│ ├── manage.php
│ ├── newbie.php
│ ├── order.php
│ ├── partner.php
│ ├── system.php
│ ├── team.php
│ ├── topic.php
│ └── validator.php
├── api
│ └── index.php
├── app.php
├── bdb_api.php
├── biz
│ ├── coupon.php
│ ├── down.php
│ ├── index.php
│ ├── login.php
│ ├── logout.php
│ └── settings.php
├── city.php
├── coupon
│ ├── consume.php
│ ├── expire.php
│ ├── index.php
│ └── print.php
├── credit
│ ├── charge.php
│ └── index.php
├── favicon.ico
├── feed.php
├── feedback
│ ├── seller.php
│ ├── success.php
│ └── suggest.php
├── forum
│ ├── city.php
│ ├── index.php
│ ├── new.php
│ ├── public.php
│ └── topic.php
├── help
│ ├── api.php
│ ├── faqs.php
│ ├── tour.php
│ └── zuitu.php
├── include
│ ├── application.php
│ ├── classes
│ │ ├── ZCard.class.php
│ │ ├── ZCategory.class.php
│ │ ├── ZCoupon.class.php
│ │ ├── ZFlow.class.php
│ │ ├── ZInvite.class.php
│ │ ├── ZLogin.class.php
│ │ ├── ZOrder.class.php
│ │ ├── ZPartner.class.php
│ │ ├── ZSubscribe.class.php
│ │ ├── ZSystem.class.php
│ │ ├── ZTeam.class.php
│ │ └── ZUser.class.php
│ ├── compiled
│ ├── configure
│ │ └── db.sql
│ ├── data
│ ├── function
│ │ ├── common.php
│ │ ├── current.php
│ │ ├── mailer.php
│ │ ├── sms.php
│ │ ├── template.php
│ │ ├── upgrade.php
│ │ └── utility.php
│ ├── library
│ │ ├── AlipayNotify.class.php
│ │ ├── AlipayService.class.php
│ │ ├── Cache.class.php
│ │ ├── Config.class.php
│ │ ├── DB.class.php
│ │ ├── DB.class.php.bak
│ │ ├── Image.class.php
│ │ ├── JsonService.class.php
│ │ ├── Mailer.class.php
│ │ ├── Output.class.php
│ │ ├── PHPMailer.class.php
│ │ ├── Pager.class.php
│ │ ├── PayRequestHandler.class.php
│ │ ├── PayResponseHandler.class.php
│ │ ├── SMTP.class.php
│ │ ├── Session.class.php
│ │ ├── Setting.class.php
│ │ ├── Table.class.php
│ │ ├── UniversalFeedCreator.class.php
│ │ ├── Utility.class.php
│ │ ├── ZendJsonDecoder.class.php
│ │ └── ZendJsonEncoder.class.php
│ └── template
│ ├── about_contact.html
│ ├── about_job.html
│ ├── about_privacy.html
│ ├── about_terms.html
│ ├── about_us.html
│ ├── account_invite.html
│ ├── account_invite_no.html
│ ├── account_invite_signup.html
│ ├── account_login.html
│ ├── account_loginup.html
│ ├── account_refer.html
│ ├── account_repass.html
│ ├── account_repass_ok.html
│ ├── account_reset.html
│ ├── account_reset_ok.html
│ ├── account_settings.html
│ ├── account_signup.html
│ ├── account_signuped.html
│ ├── account_verify.html
│ ├── ajax_dialog_coupon.html
│ ├── ajax_dialog_needlogin.html
│ ├── ajax_dialog_order.html
│ ├── biz_coupon.html
│ ├── biz_header.html
│ ├── biz_html_header.html
│ ├── biz_index.html
│ ├── biz_login.html
│ ├── biz_settings.html
│ ├── block_side_aboutcoupon.html
│ ├── block_side_aboutorder.html
│ ├── block_side_ask.html
│ ├── block_side_bulletin.html
│ ├── block_side_business.html
│ ├── block_side_card.html
│ ├── block_side_credit.html
│ ├── block_side_credittip.html
│ ├── block_side_flv.html
│ ├── block_side_giftcard.html
│ ├── block_side_invite.html
│ ├── block_side_invitetip.html
│ ├── block_side_others.html
│ ├── block_side_subscribe.html
│ ├── block_team_share.html
│ ├── city.html
│ ├── coupon_consume.html
│ ├── coupon_expire.html
│ ├── coupon_index.html
│ ├── coupon_print.html
│ ├── credit_charge.html
│ ├── credit_index.html
│ ├── feedback_seller.html
│ ├── feedback_success.html
│ ├── feedback_suggest.html
│ ├── footer.html
│ ├── forum_city.html
│ ├── forum_index.html
│ ├── forum_new.html
│ ├── forum_public.html
│ ├── forum_topic.html
│ ├── header.html
│ ├── help_api.html
│ ├── help_faqs.html
│ ├── help_tour.html
│ ├── help_zuitu.html
│ ├── html_footer.html
│ ├── html_header.html
│ ├── install_step.html
│ ├── mail_repass.html
│ ├── mail_sign_verify.html
│ ├── mail_subscribe_team.html
│ ├── manage_ajax_dialog_categoryedit.html
│ ├── manage_ajax_dialog_orderview.html
│ ├── manage_ajax_dialog_teamdetail.html
│ ├── manage_ajax_dialog_user.html
│ ├── manage_category_index.html
│ ├── manage_coupon_card.html
│ ├── manage_coupon_cardcreate.html
│ ├── manage_coupon_consume.html
│ ├── manage_coupon_expire.html
│ ├── manage_coupon_index.html
│ ├── manage_footer.html
│ ├── manage_header.html
│ ├── manage_html_footer.html
│ ├── manage_html_header.html
│ ├── manage_market_downcoupon.html
│ ├── manage_market_downemail.html
│ ├── manage_market_downorder.html
│ ├── manage_market_downpartner.html
│ ├── manage_market_downsms.html
│ ├── manage_market_downuser.html
│ ├── manage_market_email.html
│ ├── manage_market_sms.html
│ ├── manage_misc_ask.html
│ ├── manage_misc_askedit.html
│ ├── manage_misc_feedback.html
│ ├── manage_misc_index.html
│ ├── manage_misc_invite.html
│ ├── manage_misc_money_cash.html
│ ├── manage_misc_money_charge.html
│ ├── manage_misc_money_refund.html
│ ├── manage_misc_money_store.html
│ ├── manage_misc_subscribe.html
│ ├── manage_misc_under.html
│ ├── manage_order_index.html
│ ├── manage_order_pay.html
│ ├── manage_order_unpay.html
│ ├── manage_partner_create.html
│ ├── manage_partner_edit.html
│ ├── manage_partner_index.html
│ ├── manage_system_bulletin.html
│ ├── manage_system_cache.html
│ ├── manage_system_city.html
│ ├── manage_system_email.html
│ ├── manage_system_index.html
│ ├── manage_system_page.html
│ ├── manage_system_pay.html
│ ├── manage_system_skin.html
│ ├── manage_system_sms.html
│ ├── manage_system_template.html
│ ├── manage_team_create.html
│ ├── manage_team_edit.html
│ ├── manage_team_index.html
│ ├── manage_tpl_smscoupon.html
│ ├── manage_user_edit.html
│ ├── manage_user_index.html
│ ├── manage_user_manager.html
│ ├── order_charge.html
│ ├── order_check.html
│ ├── order_index.html
│ ├── order_pay.html
│ ├── order_pay_error.html
│ ├── order_pay_success.html
│ ├── order_return_credit.html
│ ├── order_return_error.html
│ ├── order_view.html
│ ├── subscribe.html
│ ├── subscribe_success.html
│ ├── team_ask.html
│ ├── team_buy.html
│ ├── team_index.html
│ └── team_view.html
├── index.php
├── install.php
├── manage
│ ├── category
│ │ ├── edit.php
│ │ └── index.php
│ ├── coupon
│ │ ├── card.php
│ │ ├── cardcreate.php
│ │ ├── consume.php
│ │ ├── expire.php
│ │ └── index.php
│ ├── feedback
│ ├── index.php
│ ├── market
│ │ ├── down.php
│ │ ├── downcoupon.php
│ │ ├── downemail.php
│ │ ├── downorder.php
│ │ ├── downpartner.php
│ │ ├── downuser.php
│ │ ├── index.php
│ │ ├── promotion.php
│ │ └── sms.php
│ ├── misc
│ │ ├── ask.php
│ │ ├── askedit.php
│ │ ├── askremove.php
│ │ ├── feedback.php
│ │ ├── index.php
│ │ ├── invite.php
│ │ ├── money.php
│ │ └── subscribe.php
│ ├── order
│ │ ├── index.php
│ │ ├── pay.php
│ │ └── unpay.php
│ ├── partner
│ │ ├── create.php
│ │ ├── edit.php
│ │ └── index.php
│ ├── system
│ │ ├── bulletin.php
│ │ ├── cache.php
│ │ ├── city.php
│ │ ├── email.php
│ │ ├── index.php
│ │ ├── page.php
│ │ ├── pay.php
│ │ ├── skin.php
│ │ ├── sms.php
│ │ └── template.php
│ ├── team
│ │ ├── create.php
│ │ ├── down.php
│ │ ├── edit.php
│ │ ├── failure.php
│ │ ├── index.php
│ │ ├── remove.php
│ │ └── success.php
│ └── user
│ ├── edit.php
│ ├── index.php
│ └── manager.php
├── manage.php
├── message
│ └── inbox.php
├── order
│ ├── alipay
│ │ ├── notify.php
│ │ └── return.php
│ ├── charge.php
│ ├── check.php
│ ├── chinabank
│ │ ├── notify.php
│ │ └── return.php
│ ├── index.php
│ ├── pay.php
│ ├── tenpay
│ │ └── return.php
│ └── view.php
├── r.php
├── robots.txt
├── static
│ ├── css
│ │ ├── i
│ │ │ ├── 99bill.gif
│ │ │ ├── alipay.gif
│ │ │ ├── alipay.png
│ │ │ ├── bg-bd.jpg
│ │ │ ├── bg-box-702.gif
│ │ │ ├── bg-box-944.gif
│ │ │ ├── bg-box-split-702.gif
│ │ │ ├── bg-box-split-702b.gif
│ │ │ ├── bg-consult-ask.gif
│ │ │ ├── bg-consult-bubble-b.gif
│ │ │ ├── bg-consult-bubble-t.gif
│ │ │ ├── bg-consult-deal-buy.gif
│ │ │ ├── bg-dashboard-tab.gif
│ │ │ ├── bg-deal-close-text.gif
│ │ │ ├── bg-deal-default-icons.gif
│ │ │ ├── bg-deal-end.gif
│ │ │ ├── bg-deal-expired-fail.gif
│ │ │ ├── bg-deal-expired-success.gif
│ │ │ ├── bg-deal-expired-text.gif
│ │ │ ├── bg-deal-open.gif
│ │ │ ├── bg-deal-price.png
│ │ │ ├── bg-deal-soldout-text.gif
│ │ │ ├── bg-deal-subscribe-b.gif
│ │ │ ├── bg-deal-subscribe-m.gif
│ │ │ ├── bg-deal-subscribe-t.gif
│ │ │ ├── bg-deal-voice-quote.gif
│ │ │ ├── bg-deal.jpg
│ │ │ ├── bg-deals-default-isopen.png
│ │ │ ├── bg-deals-default-soldout.png
│ │ │ ├── bg-ft.gif
│ │ │ ├── bg-guides-city.gif
│ │ │ ├── bg-hd.gif
│ │ │ ├── bg-learn-guide-bubble.gif
│ │ │ ├── bg-learn-guide-titles.gif
│ │ │ ├── bg-logins-line.gif
│ │ │ ├── bg-newbie-close.gif
│ │ │ ├── bg-newbie-guide.gif
│ │ │ ├── bg-pay-return-box.gif
│ │ │ ├── bg-pay-return-error.gif
│ │ │ ├── bg-pay-return-success.gif
│ │ │ ├── bg-progress-bottom.gif
│ │ │ ├── bg-progress-pointer.gif
│ │ │ ├── bg-progress-top-l.gif
│ │ │ ├── bg-progress-top-r.gif
│ │ │ ├── bg-recent-deals-time.gif
│ │ │ ├── bg-referrals-box.gif
│ │ │ ├── bg-referrals-money.jpg
│ │ │ ├── bg-referrals-star-b.gif
│ │ │ ├── bg-referrals-star.gif
│ │ │ ├── bg-sbox-230-white.gif
│ │ │ ├── bg-sbox-230.gif
│ │ │ ├── bg-sbox-bubble.gif
│ │ │ ├── bg-share-corner.gif
│ │ │ ├── bg-sold-out.gif
│ │ │ ├── bg-sys-icon-info.gif
│ │ │ ├── bg-sys-icons.gif
│ │ │ ├── bg-sysmsg-close.gif
│ │ │ ├── bg-sysmsg-error.gif
│ │ │ ├── bg-sysmsg-success.gif
│ │ │ ├── bg-sysmsg-tip-focus.gif
│ │ │ ├── bg-sysmsg-tip.gif
│ │ │ ├── bg-toggle-fold.gif
│ │ │ ├── blue_arrow.gif
│ │ │ ├── button-custom-msn.gif
│ │ │ ├── button-custom-qq.gif
│ │ │ ├── button-deal-buy.gif
│ │ │ ├── button-subscribe-b.gif
│ │ │ ├── button-subscribe.gif
│ │ │ ├── chinabank.gif
│ │ │ ├── chinabank.png
│ │ │ ├── deal-buy-succ.gif
│ │ │ ├── icons-share.gif
│ │ │ ├── logo-footer.gif
│ │ │ ├── logo.gif
│ │ │ ├── logo_douban.gif
│ │ │ ├── logo_email.gif
│ │ │ ├── logo_kaixin.gif
│ │ │ ├── logo_msn.png
│ │ │ ├── logo_renren.png
│ │ │ ├── logo_sina.png
│ │ │ ├── quote.gif
│ │ │ ├── tenpay.jpg
│ │ │ └── yeepay.gif
│ │ └── index.css
│ ├── icon
│ │ └── favicon.ico
│ ├── img
│ │ ├── coupon-tpl-logo.jpg
│ │ ├── faq-how-it-works1.gif
│ │ ├── faq-how-it-works2.gif
│ │ ├── faq-how-it-works3.gif
│ │ ├── how-it-works1.gif
│ │ ├── how-it-works2.gif
│ │ ├── how-it-works3.gif
│ │ ├── learn-guide-buy.gif
│ │ ├── learn-guide-mobile.gif
│ │ ├── learn-guide-sample.gif
│ │ ├── mail-tpl-logo.gif
│ │ ├── mail-tpl-more.gif
│ │ ├── mail-tpl-view.gif
│ │ ├── player.swf
│ │ ├── signup-email-link.gif
│ │ ├── subscribe-pic1.jpg
│ │ ├── subscribe-pic2.jpg
│ │ ├── subscribe-pic3.jpg
│ │ └── user-no-avatar.gif
│ ├── js
│ │ ├── editor
│ │ │ ├── jquery.wysiwyg.css
│ │ │ ├── jquery.wysiwyg.gif
│ │ │ ├── jquery.wysiwyg.jpg
│ │ │ └── jquery.wysiwyg.js
│ │ ├── index.js
│ │ └── xheditor
│ │ ├── xheditor.js
│ │ ├── xheditor_emot
│ │ │ ├── default
│ │ │ │ ├── biggrin.gif
│ │ │ │ ├── call.gif
│ │ │ │ ├── cry.gif
│ │ │ │ ├── handshake.gif
│ │ │ │ ├── huffy.gif
│ │ │ │ ├── hug.gif
│ │ │ │ ├── kiss.gif
│ │ │ │ ├── lol.gif
│ │ │ │ ├── mad.gif
│ │ │ │ ├── sad.gif
│ │ │ │ ├── shocked.gif
│ │ │ │ ├── shy.gif
│ │ │ │ ├── smile.gif
│ │ │ │ ├── sweat.gif
│ │ │ │ ├── time.gif
│ │ │ │ ├── titter.gif
│ │ │ │ ├── tongue.gif
│ │ │ │ └── victory.gif
│ │ │ ├── msn
│ │ │ │ ├── 1.gif
│ │ │ │ ├── 10.gif
│ │ │ │ ├── 11.gif
│ │ │ │ ├── 12.gif
│ │ │ │ ├── 13.gif
│ │ │ │ ├── 14.gif
│ │ │ │ ├── 15.gif
│ │ │ │ ├── 16.gif
│ │ │ │ ├── 17.gif
│ │ │ │ ├── 18.gif
│ │ │ │ ├── 19.gif
│ │ │ │ ├── 2.gif
│ │ │ │ ├── 20.gif
│ │ │ │ ├── 21.gif
│ │ │ │ ├── 22.gif
│ │ │ │ ├── 23.gif
│ │ │ │ ├── 24.gif
│ │ │ │ ├── 25.gif
│ │ │ │ ├── 26.gif
│ │ │ │ ├── 27.gif
│ │ │ │ ├── 28.gif
│ │ │ │ ├── 29.gif
│ │ │ │ ├── 3.gif
│ │ │ │ ├── 30.gif
│ │ │ │ ├── 31.gif
│ │ │ │ ├── 32.gif
│ │ │ │ ├── 33.gif
│ │ │ │ ├── 34.gif
│ │ │ │ ├── 35.gif
│ │ │ │ ├── 36.gif
│ │ │ │ ├── 37.gif
│ │ │ │ ├── 38.gif
│ │ │ │ ├── 39.gif
│ │ │ │ ├── 4.gif
│ │ │ │ ├── 40.gif
│ │ │ │ ├── 5.gif
│ │ │ │ ├── 6.gif
│ │ │ │ ├── 7.gif
│ │ │ │ ├── 8.gif
│ │ │ │ └── 9.gif
│ │ │ └── qq
│ │ │ ├── 1.gif
│ │ │ ├── 10.gif
│ │ │ ├── 11.gif
│ │ │ ├── 12.gif
│ │ │ ├── 13.gif
│ │ │ ├── 14.gif
│ │ │ ├── 15.gif
│ │ │ ├── 16.gif
│ │ │ ├── 17.gif
│ │ │ ├── 18.gif
│ │ │ ├── 19.gif
│ │ │ ├── 2.gif
│ │ │ ├── 20.gif
│ │ │ ├── 21.gif
│ │ │ ├── 22.gif
│ │ │ ├── 23.gif
│ │ │ ├── 24.gif
│ │ │ ├── 25.gif
│ │ │ ├── 26.gif
│ │ │ ├── 27.gif
│ │ │ ├── 28.gif
│ │ │ ├── 29.gif
│ │ │ ├── 3.gif
│ │ │ ├── 30.gif
│ │ │ ├── 31.gif
│ │ │ ├── 32.gif
│ │ │ ├── 33.gif
│ │ │ ├── 34.gif
│ │ │ ├── 35.gif
│ │ │ ├── 36.gif
│ │ │ ├── 37.gif
│ │ │ ├── 38.gif
│ │ │ ├── 39.gif
│ │ │ ├── 4.gif
│ │ │ ├── 40.gif
│ │ │ ├── 41.gif
│ │ │ ├── 42.gif
│ │ │ ├── 43.gif
│ │ │ ├── 44.gif
│ │ │ ├── 45.gif
│ │ │ ├── 46.gif
│ │ │ ├── 47.gif
│ │ │ ├── 48.gif
│ │ │ ├── 49.gif
│ │ │ ├── 5.gif
│ │ │ ├── 50.gif
│ │ │ ├── 51.gif
│ │ │ ├── 52.gif
│ │ │ ├── 53.gif
│ │ │ ├── 54.gif
│ │ │ ├── 55.gif
│ │ │ ├── 6.gif
│ │ │ ├── 7.gif
│ │ │ ├── 8.gif
│ │ │ └── 9.gif
│ │ └── xheditor_skin
│ │ ├── default
│ │ │ ├── iframe.css
│ │ │ ├── img
│ │ │ │ ├── close.gif
│ │ │ │ ├── flash.gif
│ │ │ │ ├── icons.gif
│ │ │ │ ├── loading.gif
│ │ │ │ ├── tag-address.gif
│ │ │ │ ├── tag-div.gif
│ │ │ │ ├── tag-h1.gif
│ │ │ │ ├── tag-h2.gif
│ │ │ │ ├── tag-h3.gif
│ │ │ │ ├── tag-h4.gif
│ │ │ │ ├── tag-h5.gif
│ │ │ │ ├── tag-h6.gif
│ │ │ │ ├── tag-p.gif
│ │ │ │ ├── tag-pre.gif
│ │ │ │ ├── waiting.gif
│ │ │ │ └── wmp.gif
│ │ │ └── ui.css
│ │ ├── o2007blue
│ │ │ ├── iframe.css
│ │ │ ├── img
│ │ │ │ ├── buttonbg.gif
│ │ │ │ ├── close.gif
│ │ │ │ ├── flash.gif
│ │ │ │ ├── icons.gif
│ │ │ │ ├── loading.gif
│ │ │ │ ├── tag-address.gif
│ │ │ │ ├── tag-div.gif
│ │ │ │ ├── tag-h1.gif
│ │ │ │ ├── tag-h2.gif
│ │ │ │ ├── tag-h3.gif
│ │ │ │ ├── tag-h4.gif
│ │ │ │ ├── tag-h5.gif
│ │ │ │ ├── tag-h6.gif
│ │ │ │ ├── tag-p.gif
│ │ │ │ ├── tag-pre.gif
│ │ │ │ ├── waiting.gif
│ │ │ │ └── wmp.gif
│ │ │ └── ui.css
│ │ ├── o2007silver
│ │ │ ├── iframe.css
│ │ │ ├── img
│ │ │ │ ├── buttonbg.gif
│ │ │ │ ├── close.gif
│ │ │ │ ├── flash.gif
│ │ │ │ ├── icons.gif
│ │ │ │ ├── loading.gif
│ │ │ │ ├── tag-address.gif
│ │ │ │ ├── tag-div.gif
│ │ │ │ ├── tag-h1.gif
│ │ │ │ ├── tag-h2.gif
│ │ │ │ ├── tag-h3.gif
│ │ │ │ ├── tag-h4.gif
│ │ │ │ ├── tag-h5.gif
│ │ │ │ ├── tag-h6.gif
│ │ │ │ ├── tag-p.gif
│ │ │ │ ├── tag-pre.gif
│ │ │ │ ├── waiting.gif
│ │ │ │ └── wmp.gif
│ │ │ └── ui.css
│ │ └── vista
│ │ ├── iframe.css
│ │ ├── img
│ │ │ ├── buttonbg.gif
│ │ │ ├── close.gif
│ │ │ ├── flash.gif
│ │ │ ├── icons.gif
│ │ │ ├── loading.gif
│ │ │ ├── tag-address.gif
│ │ │ ├── tag-div.gif
│ │ │ ├── tag-h1.gif
│ │ │ ├── tag-h2.gif
│ │ │ ├── tag-h3.gif
│ │ │ ├── tag-h4.gif
│ │ │ ├── tag-h5.gif
│ │ │ ├── tag-h6.gif
│ │ │ ├── tag-p.gif
│ │ │ ├── tag-pre.gif
│ │ │ ├── titlebg.gif
│ │ │ ├── waiting.gif
│ │ │ └── wmp.gif
│ │ └── ui.css
│ ├── jssrc
│ │ ├── application.js
│ │ ├── customize.js
│ │ ├── editor
│ │ │ ├── jquery.wysiwyg.css
│ │ │ ├── jquery.wysiwyg.gif
│ │ │ ├── jquery.wysiwyg.jpg
│ │ │ └── jquery.wysiwyg.js
│ │ ├── index.js
│ │ ├── jquery-1.3.2.js
│ │ ├── jquery.form.js
│ │ ├── jquery.timers.js
│ │ ├── jquery.validator.js
│ │ ├── jszip
│ │ ├── md5.js
│ │ ├── php
│ │ │ ├── class.JavaScriptPacker.php
│ │ │ └── example-file.php
│ │ └── swfobject.js
│ ├── team
│ ├── theme
│ │ └── YellowUMZZ
│ │ ├── css
│ │ │ ├── i
│ │ │ │ ├── 99bill.gif
│ │ │ │ ├── alipay.gif
│ │ │ │ ├── alipay.png
│ │ │ │ ├── bg-bd.jpg
│ │ │ │ ├── bg-box-702.gif
│ │ │ │ ├── bg-box-944.gif
│ │ │ │ ├── bg-box-split-702.gif
│ │ │ │ ├── bg-box-split-702b.gif
│ │ │ │ ├── bg-consult-ask.gif
│ │ │ │ ├── bg-consult-bubble-b.gif
│ │ │ │ ├── bg-consult-bubble-t.gif
│ │ │ │ ├── bg-consult-deal-buy.gif
│ │ │ │ ├── bg-dashboard-tab.gif
│ │ │ │ ├── bg-deal-close-text.gif
│ │ │ │ ├── bg-deal-default-icons.gif
│ │ │ │ ├── bg-deal-end.gif
│ │ │ │ ├── bg-deal-expired-fail.gif
│ │ │ │ ├── bg-deal-expired-success.gif
│ │ │ │ ├── bg-deal-expired-text.gif
│ │ │ │ ├── bg-deal-open.gif
│ │ │ │ ├── bg-deal-price.png
│ │ │ │ ├── bg-deal-soldout-text.gif
│ │ │ │ ├── bg-deal-subscribe-b.gif
│ │ │ │ ├── bg-deal-subscribe-m.gif
│ │ │ │ ├── bg-deal-subscribe-t.gif
│ │ │ │ ├── bg-deal-voice-quote.gif
│ │ │ │ ├── bg-deal.jpg
│ │ │ │ ├── bg-deals-default-isopen.png
│ │ │ │ ├── bg-deals-default-soldout.png
│ │ │ │ ├── bg-ft.gif
│ │ │ │ ├── bg-guides-city.gif
│ │ │ │ ├── bg-hd.gif
│ │ │ │ ├── bg-learn-guide-bubble.gif
│ │ │ │ ├── bg-learn-guide-titles.gif
│ │ │ │ ├── bg-logins-line.gif
│ │ │ │ ├── bg-newbie-close.gif
│ │ │ │ ├── bg-newbie-guide.gif
│ │ │ │ ├── bg-pay-return-box.gif
│ │ │ │ ├── bg-pay-return-error.gif
│ │ │ │ ├── bg-pay-return-success.gif
│ │ │ │ ├── bg-progress-bottom.gif
│ │ │ │ ├── bg-progress-pointer.gif
│ │ │ │ ├── bg-progress-top-l.gif
│ │ │ │ ├── bg-progress-top-r.gif
│ │ │ │ ├── bg-recent-deals-time.gif
│ │ │ │ ├── bg-referrals-box.gif
│ │ │ │ ├── bg-referrals-money.jpg
│ │ │ │ ├── bg-referrals-star-b.gif
│ │ │ │ ├── bg-referrals-star.gif
│ │ │ │ ├── bg-sbox-230-white.gif
│ │ │ │ ├── bg-sbox-230.gif
│ │ │ │ ├── bg-sbox-bubble.gif
│ │ │ │ ├── bg-share-corner.gif
│ │ │ │ ├── bg-sold-out.gif
│ │ │ │ ├── bg-sys-icon-info.gif
│ │ │ │ ├── bg-sys-icons.gif
│ │ │ │ ├── bg-sysmsg-close.gif
│ │ │ │ ├── bg-sysmsg-error.gif
│ │ │ │ ├── bg-sysmsg-success.gif
│ │ │ │ ├── bg-sysmsg-tip-focus.gif
│ │ │ │ ├── bg-sysmsg-tip.gif
│ │ │ │ ├── bg-toggle-fold.gif
│ │ │ │ ├── blue_arrow.gif
│ │ │ │ ├── button-custom-msn.gif
│ │ │ │ ├── button-custom-qq.gif
│ │ │ │ ├── button-deal-buy.gif
│ │ │ │ ├── button-subscribe-b.gif
│ │ │ │ ├── button-subscribe.gif
│ │ │ │ ├── chinabank.gif
│ │ │ │ ├── chinabank.png
│ │ │ │ ├── deal-buy-succ.gif
│ │ │ │ ├── icons-share.gif
│ │ │ │ ├── logo-footer.gif
│ │ │ │ ├── logo.gif
│ │ │ │ ├── logo_douban.gif
│ │ │ │ ├── logo_email.gif
│ │ │ │ ├── logo_kaixin.gif
│ │ │ │ ├── logo_msn.png
│ │ │ │ ├── logo_renren.png
│ │ │ │ ├── logo_sina.png
│ │ │ │ ├── quote.gif
│ │ │ │ ├── tenpay.jpg
│ │ │ │ └── yeepay.gif
│ │ │ └── index.css
│ │ └── img
│ │ ├── coupon-tpl-logo.jpg
│ │ ├── faq-how-it-works1.gif
│ │ ├── faq-how-it-works2.gif
│ │ ├── faq-how-it-works3.gif
│ │ ├── how-it-works1.gif
│ │ ├── how-it-works2.gif
│ │ ├── how-it-works3.gif
│ │ ├── learn-guide-buy.gif
│ │ ├── learn-guide-mobile.gif
│ │ ├── learn-guide-sample.gif
│ │ ├── mail-tpl-logo.gif
│ │ ├── mail-tpl-more.gif
│ │ ├── mail-tpl-view.gif
│ │ ├── player.swf
│ │ ├── signup-email-link.gif
│ │ ├── subscribe-pic1.jpg
│ │ ├── subscribe-pic2.jpg
│ │ ├── subscribe-pic3.jpg
│ │ └── user-no-avatar.gif
│ └── user
├── subscribe.php
├── team
│ ├── ask.php
│ ├── buy.php
│ └── index.php
├── team.php
├── unsubscribe.php
├── upload.php
└── 安装说明.txt
67 directories, 733 files
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论