实例介绍
【实例简介】YouDianCMS即友点企业网站管理系统
YouDianCMS即友点企业网站管理系统集PC站 手机站 微网站 多端小程序(微信、百度、抖音/头条、支付宝、QQ、360小程序) APP十站合一,数据自动同步,降低人力维护成本;共用一个管理后台,只要一个服务器,有效节约空间投资。系统采用开源技术PHP MYSQL开发,开源且具有操作简单、功能强大、稳定性好、易扩展、安全性强、维护方便、兼容性好等特点,可帮您快速构建一个强大专业的企业网站。系统支持多语言轻松打造国际站、自定义模型、支持网站模板换肤、内置SEO优化功能、静态页、评论留言、购物车、在线支付、优惠券、积分、三级分销、订单管理、会员、数据采集、短信接口、插件应用商店、广告等企业网站基本功能。运行环境:PHP5.3/5.4/5.5/5.6/7.0/7.1/7.2/7.3/8.0 MYSQL。
【实例截图】

【核心代码】
..
├── App
│ ├── Common
│ │ ├── common.php
│ │ └── tag.php
│ ├── Conf
│ │ ├── config.php
│ │ ├── copy.php
│ │ ├── version.php
│ │ └── wxapp.php
│ ├── Core
│ │ ├── Common
│ │ │ ├── common.php
│ │ │ ├── functions.php
│ │ │ └── runtime.php
│ │ ├── Conf
│ │ │ ├── alias.php
│ │ │ ├── convention.php
│ │ │ ├── debug.php
│ │ │ ├── mode.php
│ │ │ └── tags.php
│ │ ├── Extend
│ │ │ ├── Action
│ │ │ ├── Behavior
│ │ │ ├── Driver
│ │ │ ├── Function
│ │ │ ├── Library
│ │ │ └── Model
│ │ ├── LICENSE.txt
│ │ ├── Lang
│ │ │ └── zh-cn.php
│ │ ├── Lib
│ │ │ ├── Behavior
│ │ │ ├── Core
│ │ │ ├── Driver
│ │ │ └── Template
│ │ ├── ThinkPHP.php
│ │ └── Tpl
│ │ ├── default_index.tpl
│ │ ├── dispatch_jump.tpl
│ │ ├── page_trace.tpl
│ │ └── think_exception.tpl
│ ├── Lang
│ │ ├── cn
│ │ │ └── common.php
│ │ └── en
│ │ └── common.php
│ ├── Lib
│ │ ├── Action
│ │ │ ├── Admin
│ │ │ ├── AdminBaseAction.class.php
│ │ │ ├── BaseAction.class.php
│ │ │ ├── EmptyAction.class.php
│ │ │ ├── Home
│ │ │ ├── HomeBaseAction.class.php
│ │ │ ├── Member
│ │ │ ├── MemberBaseAction.class.php
│ │ │ └── Wap
│ │ ├── Behavior
│ │ │ ├── AutoLinkBehavior.class.php
│ │ │ ├── BadIPBehavior.class.php
│ │ │ ├── BadWordsBehavior.class.php
│ │ │ ├── CheckLangBehavior.class.php
│ │ │ ├── IpLocationBehavior.class.php
│ │ │ └── StartWebBehavior.class.php
│ │ ├── Common
│ │ │ ├── AliOss
│ │ │ ├── MobileDetect.class.php
│ │ │ ├── PhpQuery.class.php
│ │ │ ├── YdApi.class.php
│ │ │ ├── YdAuthorize.class.php
│ │ │ ├── YdCart.class.php
│ │ │ ├── YdDbMysql.class.php
│ │ │ ├── YdGeoTrans.class.php
│ │ │ ├── YdJiguangPush.class.php
│ │ │ ├── YdJsSdk.class.php
│ │ │ ├── YdOauth.class.php
│ │ │ ├── YdParseModel.class.php
│ │ │ ├── YdPay.class.php
│ │ │ ├── YdQiniu.class.php
│ │ │ ├── YdResource.class.php
│ │ │ ├── YdServerInfo.class.php
│ │ │ ├── YdSms.class.php
│ │ │ ├── YdTemplate.class.php
│ │ │ ├── YdTemplateConfig.class.php
│ │ │ ├── YdUcApi.class.php
│ │ │ ├── YdUpgrade.class.php
│ │ │ ├── YdVideoPlayer.class.php
│ │ │ ├── YdWx.class.php
│ │ │ ├── YdWxApp.class.php
│ │ │ ├── YdWxMsg.class.php
│ │ │ ├── class.phpmailer.php
│ │ │ ├── class.pop3.php
│ │ │ ├── class.smtp.php
│ │ │ └── phpqrcode.class.php
│ │ ├── Model
│ │ │ ├── Admin
│ │ │ ├── Home
│ │ │ └── Install
│ │ └── Widget
│ ├── Plugin
│ └── Tpl
│ ├── Admin
│ │ └── Default
│ ├── Home
│ │ └── Default
│ ├── Member
│ │ └── Default
│ └── Wap
├── Data
│ ├── core.php
│ ├── db2021-12-13_11_11_27_iNcumX.sql
│ ├── index.html
│ ├── map
│ │ ├── sitemap.html
│ │ ├── sitemap.txt
│ │ └── sitemap.xml
│ ├── source.lock
│ └── web.config
├── Install
│ ├── Tpl
│ │ ├── Public
│ │ │ ├── css
│ │ │ └── images
│ │ ├── error.html
│ │ ├── index.html
│ │ ├── step1.html
│ │ ├── step2.html
│ │ ├── step3.html
│ │ └── step4.html
│ └── index.php
├── Public
│ ├── Images
│ │ ├── FileICO
│ │ │ ├── aac.gif
│ │ │ ├── ace.gif
│ │ │ ├── ai.gif
│ │ │ ├── ain.gif
│ │ │ ├── amr.gif
│ │ │ ├── app.gif
│ │ │ ├── arj.gif
│ │ │ ├── asf.gif
│ │ │ ├── asp.gif
│ │ │ ├── aspx.gif
│ │ │ ├── av.gif
│ │ │ ├── avi.gif
│ │ │ ├── bin.gif
│ │ │ ├── bmp.gif
│ │ │ ├── cab.gif
│ │ │ ├── cad.gif
│ │ │ ├── cat.gif
│ │ │ ├── cdr.gif
│ │ │ ├── chm.gif
│ │ │ ├── com.gif
│ │ │ ├── css.gif
│ │ │ ├── cur.gif
│ │ │ ├── dat.gif
│ │ │ ├── db.gif
│ │ │ ├── dir.gif
│ │ │ ├── dll.gif
│ │ │ ├── dmv.gif
│ │ │ ├── doc.gif
│ │ │ ├── dot.gif
│ │ │ ├── dps.gif
│ │ │ ├── dpt.gif
│ │ │ ├── dwg.gif
│ │ │ ├── dxf.gif
│ │ │ ├── emf.gif
│ │ │ ├── eps.gif
│ │ │ ├── et.gif
│ │ │ ├── ett.gif
│ │ │ ├── exe.gif
│ │ │ ├── fla.gif
│ │ │ ├── folder.gif
│ │ │ ├── ftp.gif
│ │ │ ├── gif.gif
│ │ │ ├── hlp.gif
│ │ │ ├── htm.gif
│ │ │ ├── html.gif
│ │ │ ├── icl.gif
│ │ │ ├── ico.gif
│ │ │ ├── img.gif
│ │ │ ├── inf.gif
│ │ │ ├── ini.gif
│ │ │ ├── iso.gif
│ │ │ ├── jpeg.gif
│ │ │ ├── jpg.gif
│ │ │ ├── js.gif
│ │ │ ├── last.gif
│ │ │ ├── m3u.gif
│ │ │ ├── max.gif
│ │ │ ├── mdb.gif
│ │ │ ├── mde.gif
│ │ │ ├── mht.gif
│ │ │ ├── mid.gif
│ │ │ ├── midi.gif
│ │ │ ├── mov.gif
│ │ │ ├── mp3.gif
│ │ │ ├── mp4.gif
│ │ │ ├── mpeg.gif
│ │ │ ├── mpg.gif
│ │ │ ├── msi.gif
│ │ │ ├── nrg.gif
│ │ │ ├── ocx.gif
│ │ │ ├── ogg.gif
│ │ │ ├── ogm.gif
│ │ │ ├── other.gif
│ │ │ ├── pdf.gif
│ │ │ ├── php.gif
│ │ │ ├── png.gif
│ │ │ ├── pot.gif
│ │ │ ├── ppt.gif
│ │ │ ├── psd.gif
│ │ │ ├── pub.gif
│ │ │ ├── qt.gif
│ │ │ ├── ra.gif
│ │ │ ├── ram.gif
│ │ │ ├── rar.gif
│ │ │ ├── rm.gif
│ │ │ ├── rmvb.gif
│ │ │ ├── rtf.gif
│ │ │ ├── swf.gif
│ │ │ ├── tar.gif
│ │ │ ├── tif.gif
│ │ │ ├── tiff.gif
│ │ │ ├── txt.gif
│ │ │ ├── unknown.gif
│ │ │ ├── url.gif
│ │ │ ├── vbs.gif
│ │ │ ├── vsd.gif
│ │ │ ├── vss.gif
│ │ │ ├── vst.gif
│ │ │ ├── wav.gif
│ │ │ ├── wave.gif
│ │ │ ├── wm.gif
│ │ │ ├── wma.gif
│ │ │ ├── wmd.gif
│ │ │ ├── wmf.gif
│ │ │ ├── wmv.gif
│ │ │ ├── wps.gif
│ │ │ ├── wpt.gif
│ │ │ ├── xls.gif
│ │ │ ├── xlt.gif
│ │ │ ├── xml.gif
│ │ │ └── zip.gif
│ │ ├── Thumbs.db
│ │ ├── adclose.gif
│ │ ├── card
│ │ │ ├── bg1.png
│ │ │ ├── bg10.png
│ │ │ ├── bg11.png
│ │ │ ├── bg12.png
│ │ │ ├── bg13.png
│ │ │ ├── bg14.png
│ │ │ ├── bg15.png
│ │ │ ├── bg16.png
│ │ │ ├── bg17.png
│ │ │ ├── bg18.png
│ │ │ ├── bg19.png
│ │ │ ├── bg2.png
│ │ │ ├── bg20.png
│ │ │ ├── bg21.png
│ │ │ ├── bg22.png
│ │ │ ├── bg23.png
│ │ │ ├── bg3.png
│ │ │ ├── bg4.png
│ │ │ ├── bg5.png
│ │ │ ├── bg6.png
│ │ │ ├── bg7.png
│ │ │ ├── bg8.png
│ │ │ ├── bg9.png
│ │ │ └── cover.jpg
│ │ ├── closefloatad.png
│ │ ├── gotop
│ │ │ ├── 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
│ │ │ ├── 3.gif
│ │ │ ├── 4.gif
│ │ │ ├── 5.gif
│ │ │ ├── 6.gif
│ │ │ ├── 7.gif
│ │ │ ├── 8.gif
│ │ │ ├── 9.gif
│ │ │ └── Thumbs.db
│ │ ├── loading
│ │ │ ├── 10.gif
│ │ │ ├── 11.gif
│ │ │ ├── 12.gif
│ │ │ ├── 13.gif
│ │ │ ├── 14.gif
│ │ │ ├── 15.gif
│ │ │ ├── 16.gif
│ │ │ ├── 17.gif
│ │ │ ├── 18.gif
│ │ │ ├── 19.gif
│ │ │ ├── 20.gif
│ │ │ ├── 21.gif
│ │ │ ├── 22.gif
│ │ │ ├── 24.gif
│ │ │ ├── 25.gif
│ │ │ ├── 26.gif
│ │ │ ├── 3.gif
│ │ │ ├── 5.gif
│ │ │ ├── 6.gif
│ │ │ ├── 7.gif
│ │ │ ├── 8.gif
│ │ │ ├── 9.gif
│ │ │ └── Thumbs.db
│ │ ├── nopic
│ │ │ ├── 1cn.jpg
│ │ │ ├── 1en.jpg
│ │ │ ├── 2cn.jpg
│ │ │ ├── 2en.jpg
│ │ │ └── noavatar.png
│ │ ├── oauth
│ │ │ ├── qq.png
│ │ │ └── wx.png
│ │ ├── online
│ │ │ ├── msn.gif
│ │ │ └── skype.gif
│ │ ├── other
│ │ │ ├── 404_1.png
│ │ │ ├── 404_2.gif
│ │ │ └── t1.jpg
│ │ ├── standard
│ │ │ └── 1.jpg
│ │ └── xcx
│ │ ├── about.png
│ │ ├── announcement.png
│ │ ├── case.png
│ │ ├── class.png
│ │ ├── contact.png
│ │ ├── discount.png
│ │ ├── download.png
│ │ ├── feedback.png
│ │ ├── home.png
│ │ ├── my.png
│ │ ├── news.png
│ │ ├── online.png
│ │ ├── picture.png
│ │ ├── product.png
│ │ ├── services.png
│ │ └── video.png
│ ├── My97DatePicker
│ │ ├── My97DatePicker.htm
│ │ ├── WdatePicker.js
│ │ ├── calendar.js
│ │ ├── config.js
│ │ ├── lang
│ │ │ ├── en.js
│ │ │ ├── zh-cn.js
│ │ │ └── zh-tw.js
│ │ └── skin
│ │ ├── WdatePicker.css
│ │ ├── datePicker.gif
│ │ ├── default
│ │ └── whyGreen
│ ├── chart
│ │ ├── fusioncharts.charts.js
│ │ ├── fusioncharts.js
│ │ ├── fusioncharts.theme.carbon.js
│ │ ├── fusioncharts.theme.fint.js
│ │ ├── fusioncharts.theme.ocean.js
│ │ └── fusioncharts.theme.zune.js
│ ├── ckeditor
│ │ ├── CHANGES.md
│ │ ├── LICENSE.md
│ │ ├── README.md
│ │ ├── adapters
│ │ │ └── jquery.js
│ │ ├── build-config.js
│ │ ├── ckeditor.js
│ │ ├── config.js
│ │ ├── config_member.js
│ │ ├── contents.css
│ │ ├── lang
│ │ │ ├── en.js
│ │ │ ├── zh-cn.js
│ │ │ └── zh.js
│ │ ├── plugins
│ │ │ ├── a11yhelp
│ │ │ ├── about
│ │ │ ├── colordialog
│ │ │ ├── copyformatting
│ │ │ ├── dialog
│ │ │ ├── div
│ │ │ ├── find
│ │ │ ├── flash
│ │ │ ├── forms
│ │ │ ├── icons.png
│ │ │ ├── icons_hidpi.png
│ │ │ ├── iframe
│ │ │ ├── image
│ │ │ ├── lineheight
│ │ │ ├── link
│ │ │ ├── liststyle
│ │ │ ├── magicline
│ │ │ ├── multiimage
│ │ │ ├── pagebreak
│ │ │ ├── pastefromword
│ │ │ ├── preview
│ │ │ ├── scayt
│ │ │ ├── showblocks
│ │ │ ├── smiley
│ │ │ ├── specialchar
│ │ │ ├── table
│ │ │ ├── tableselection
│ │ │ ├── tabletools
│ │ │ ├── templates
│ │ │ ├── video
│ │ │ ├── videoplayer
│ │ │ ├── widget
│ │ │ └── wsc
│ │ ├── skins
│ │ │ └── moono-lisa
│ │ └── styles.js
│ ├── effect
│ │ ├── cu3er.swf
│ │ ├── flvplayer.swf
│ │ ├── mp3player.swf
│ │ ├── normal.swf
│ │ └── slide.swf
│ ├── font
│ │ ├── arial.ttf
│ │ ├── heiti.ttf
│ │ └── verdana.ttf
│ ├── jquery
│ │ ├── Thumbs.db
│ │ ├── TouchSlide.js
│ │ ├── ZeroClipboard.min.js
│ │ ├── ZeroClipboard.swf
│ │ ├── clipboard.min.js
│ │ ├── common.js
│ │ ├── css
│ │ │ └── start
│ │ ├── emotions.js
│ │ ├── flexslider
│ │ │ ├── flexslider.css
│ │ │ ├── fonts
│ │ │ ├── images
│ │ │ └── jquery.flexslider-min.js
│ │ ├── images
│ │ │ ├── progressbar.gif
│ │ │ ├── progressbg_black.gif
│ │ │ ├── progressbg_green.gif
│ │ │ ├── progressbg_orange.gif
│ │ │ ├── progressbg_red.gif
│ │ │ └── progressbg_yellow.gif
│ │ ├── jquery-1.7.2.min.js
│ │ ├── jquery-ui-1.8.22.custom.min.js
│ │ ├── jquery-weui.css
│ │ ├── jquery-weui.js
│ │ ├── jquery.SuperSlide.js
│ │ ├── jquery.colorpicker.js
│ │ ├── jquery.floatingAd.css
│ │ ├── jquery.floatingAd.js
│ │ ├── jquery.form.js
│ │ ├── jquery.min.js
│ │ ├── jquery.mousewheel.js
│ │ ├── jquery.powerFloat.css
│ │ ├── jquery.powerFloat.min.js
│ │ ├── jquery.progressbar.min.js
│ │ ├── jquery.tabs.min.js
│ │ ├── jscroll.js
│ │ ├── layer
│ │ │ ├── extend
│ │ │ ├── layer.js
│ │ │ └── skin
│ │ ├── loading_s.gif
│ │ ├── loading_s2.gif
│ │ └── weui.css
│ ├── online
│ │ ├── images
│ │ │ ├── SonlineTitleBg.gif
│ │ │ ├── closeBtnImg.gif
│ │ │ ├── grayOpen.jpg
│ │ │ ├── grayOpen_en.jpg
│ │ │ ├── grayTitleBg.gif
│ │ │ ├── greenOpen.jpg
│ │ │ ├── greenOpen_en.jpg
│ │ │ ├── greenTitleBg.gif
│ │ │ ├── openTrigger.jpg
│ │ │ ├── openTrigger_en.jpg
│ │ │ ├── redOpen.jpg
│ │ │ ├── redOpen_en.jpg
│ │ │ └── redTitleBg.gif
│ │ ├── jquery.online.js
│ │ └── style
│ │ ├── blue.css
│ │ ├── blue_en.css
│ │ ├── common.css
│ │ ├── gray.css
│ │ ├── gray_en.css
│ │ ├── green.css
│ │ ├── green_en.css
│ │ ├── red.css
│ │ └── red_en.css
│ ├── tpl
│ │ ├── 404_1.html
│ │ ├── close_1.html
│ │ ├── user
│ │ │ ├── addconsignee.html
│ │ │ ├── cash.html
│ │ │ ├── comment.html
│ │ │ ├── consignee.html
│ │ │ ├── consigneecommon.html
│ │ │ ├── coupon.html
│ │ │ ├── css
│ │ │ ├── downline.html
│ │ │ ├── favorite.html
│ │ │ ├── footer.html
│ │ │ ├── guestbook.html
│ │ │ ├── header.html
│ │ │ ├── images
│ │ │ ├── income.html
│ │ │ ├── index.html
│ │ │ ├── js
│ │ │ ├── memberinfo.html
│ │ │ ├── meta.html
│ │ │ ├── modifyconsignee.html
│ │ │ ├── modifyresume.html
│ │ │ ├── mylink.html
│ │ │ ├── order.html
│ │ │ ├── point.html
│ │ │ ├── pwd.html
│ │ │ ├── recharge.html
│ │ │ ├── resume.html
│ │ │ ├── vieworder.html
│ │ │ └── withdraw.html
│ │ └── wx
│ │ ├── bindmember.html
│ │ ├── card.html
│ │ ├── cardcoupon.html
│ │ ├── cardexchange.html
│ │ ├── cardfooter.html
│ │ ├── cardinfo.html
│ │ ├── cardmember.html
│ │ ├── cardmyconsume.html
│ │ ├── cardmyexchange.html
│ │ ├── cardmyscore.html
│ │ ├── cardnotify.html
│ │ ├── cardscore.html
│ │ ├── cardstore.html
│ │ ├── css
│ │ ├── error.html
│ │ ├── images
│ │ ├── js
│ │ ├── meta.html
│ │ ├── research.html
│ │ ├── scratch.html
│ │ ├── vote.html
│ │ └── wheel.html
│ └── ueditor
│ ├── dialogs
│ │ ├── anchor
│ │ ├── attachment
│ │ ├── background
│ │ ├── charts
│ │ ├── emotion
│ │ ├── gmap
│ │ ├── help
│ │ ├── image
│ │ ├── insertframe
│ │ ├── internal.js
│ │ ├── link
│ │ ├── map
│ │ ├── music
│ │ ├── preview
│ │ ├── scrawl
│ │ ├── searchreplace
│ │ ├── snapscreen
│ │ ├── spechars
│ │ ├── table
│ │ ├── template
│ │ ├── video
│ │ ├── webapp
│ │ └── wordimage
│ ├── lang
│ │ ├── en
│ │ └── zh-cn
│ ├── themes
│ │ ├── default
│ │ └── iframe.css
│ ├── third-party
│ │ ├── SyntaxHighlighter
│ │ ├── codemirror
│ │ ├── jquery-1.10.2.js
│ │ ├── jquery-1.10.2.min.js
│ │ ├── snapscreen
│ │ ├── video-js
│ │ ├── webuploader
│ │ ├── xss.min.js
│ │ └── zeroclipboard
│ ├── ueditor.all.js
│ ├── ueditor.all.min.js
│ ├── ueditor.config.js
│ ├── ueditor.parse.js
│ └── ueditor.parse.min.js
├── Thumbs.db
├── Upload
│ ├── 1.jpg
│ ├── 5321
│ │ └── Thumbs.db
│ ├── ADMIABAEGAAguI2Z3AUowYq0TDCkATikAQ.png
│ ├── Thumbs.db
│ ├── banner
│ │ ├── Thumbs.db
│ │ ├── banner1.jpg
│ │ ├── banner2.jpg
│ │ ├── bannera.jpg
│ │ ├── bannerb.jpg
│ │ └── fmvgty.jpg
│ ├── case
│ │ ├── 0000000000000000.jpg
│ │ ├── 11-(2).jpg
│ │ ├── 11.jpg
│ │ ├── 162556467110.png
│ │ ├── 169959636.jpg
│ │ ├── 223.jpg
│ │ ├── Thumbs.db
│ │ ├── a1.png
│ │ ├── a2.png
│ │ ├── a3.png
│ │ ├── a4.png
│ │ ├── case1.jpg
│ │ ├── case2.jpg
│ │ ├── case3.jpg
│ │ ├── case4.jpg
│ │ ├── case5.jpg
│ │ ├── case6.jpg
│ │ ├── case7.jpg
│ │ ├── case8.jpg
│ │ ├── log22.jpg
│ │ └── logo-(13).jpg
│ ├── channel
│ │ ├── 1-20111Q50322526.png
│ │ ├── Thumbs.db
│ │ ├── channel10_detail1.png
│ │ ├── channel11_detail1.png
│ │ ├── channel1_album1.jpg
│ │ ├── channel1_album2.jpg
│ │ ├── channel1_album3.jpg
│ │ ├── channel1_detail1.jpg
│ │ ├── channel1_icon1.jpg
│ │ ├── channel7_album1.jpg
│ │ ├── channel7_album2.jpg
│ │ ├── channel8_album1.jpg
│ │ ├── channel8_album2.jpg
│ │ ├── channel8_album3.jpg
│ │ ├── channel8_album4.jpg
│ │ ├── channel9_detail1.png
│ │ ├── fm.jpg
│ │ └── fm_wap.jpg
│ ├── customer
│ │ ├── Thumbs.db
│ │ ├── contact.png
│ │ ├── customer1.jpg
│ │ ├── home.png
│ │ ├── product.png
│ │ └── tel.png
│ ├── download
│ │ ├── Thumbs.db
│ │ ├── download1.jpg
│ │ ├── download1.zip
│ │ ├── download2.jpg
│ │ ├── download2.zip
│ │ ├── download3.jpg
│ │ ├── download3.zip
│ │ ├── download4.jpg
│ │ ├── download5.jpg
│ │ └── download6.jpg
│ ├── icon
│ │ ├── Thumbs.db
│ │ ├── contact.png
│ │ ├── home.png
│ │ ├── notice.png
│ │ ├── product.png
│ │ └── tel.png
│ ├── link
│ │ ├── Thumbs.db
│ │ ├── link1.png
│ │ ├── link2.png
│ │ ├── link3.png
│ │ ├── link4.png
│ │ ├── link5.png
│ │ ├── link6.png
│ │ ├── link7.png
│ │ └── link8.png
│ ├── news
│ │ ├── Thumbs.db
│ │ ├── news1.jpg
│ │ ├── news10.jpg
│ │ ├── news11.jpg
│ │ ├── news12.jpg
│ │ ├── news13.jpg
│ │ ├── news14.jpg
│ │ ├── news15.jpg
│ │ ├── news15_detail1.jpg
│ │ ├── news15_detail2.jpg
│ │ ├── news16.jpg
│ │ ├── news2.jpg
│ │ ├── news3.jpg
│ │ ├── news4.jpg
│ │ ├── news4_detail1.jpg
│ │ ├── news5.jpg
│ │ ├── news5_detail1.jpg
│ │ ├── news5_detail2.jpg
│ │ ├── news6.jpg
│ │ ├── news7.jpg
│ │ ├── news8.jpg
│ │ ├── news8_detail1.jpg
│ │ └── news9.jpg
│ ├── product
│ │ ├── Thumbs.db
│ │ ├── product1.jpg
│ │ ├── product10.jpg
│ │ ├── product11.jpg
│ │ ├── product12.jpg
│ │ ├── product13.jpg
│ │ ├── product14.jpg
│ │ ├── product15.jpg
│ │ ├── product16.jpg
│ │ ├── product17.jpg
│ │ ├── product18.jpg
│ │ ├── product19.jpg
│ │ ├── product2.jpg
│ │ ├── product20.jpg
│ │ ├── product21.jpg
│ │ ├── product22.jpg
│ │ ├── product23.jpg
│ │ ├── product24.jpg
│ │ ├── product25.jpg
│ │ ├── product26.jpg
│ │ ├── product27.jpg
│ │ ├── product3.jpg
│ │ ├── product4.jpg
│ │ ├── product5.jpg
│ │ ├── product6.jpg
│ │ ├── product7.jpg
│ │ ├── product8.jpg
│ │ ├── product9.jpg
│ │ ├── product_album1.jpg
│ │ ├── product_album2.jpg
│ │ ├── product_album3.jpg
│ │ ├── product_album4.jpg
│ │ ├── product_album5.jpg
│ │ ├── product_album6.jpg
│ │ ├── product_detail1.jpg
│ │ ├── product_detail2.jpg
│ │ ├── product_detail3.jpg
│ │ ├── product_detail4.jpg
│ │ ├── product_detail5.jpg
│ │ └── product_detail6.jpg
│ ├── public
│ │ ├── Thumbs.db
│ │ ├── gzh_qrcode.png
│ │ ├── kefu_qrcode.jpg
│ │ ├── logo.png
│ │ └── logoen.png
│ ├── video
│ │ ├── Thumbs.db
│ │ ├── video1.jpg
│ │ ├── video2.jpg
│ │ ├── video3.jpg
│ │ ├── video4.jpg
│ │ ├── video6.jpg
│ │ ├── video7.jpg
│ │ ├── video8.jpg
│ │ ├── video9.jpg
│ │ └── video_icon1.jpg
│ ├── web.config
│ └── xcx
│ └── Thumbs.db
├── favicon.ico
├── httpd.ini
├── index.php
├── readme.txt
├── web.config
├── 说明.htm
└── 好例子网_youdiancms-v9.5.0.zip
182 directories, 608 files
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论