实例介绍
【实例简介】绿色通用企业网
SDCMS绿色通用企业网站是基于SDCMS四合一企业网站管理系统开发的模板,适合企业站,带手机版。
【实例截图】
【核心代码】
.
├── sdcms-green
│ ├── 1、安装前必读本文件.txt
│ └── 【网站程序】
│ ├── api
│ │ ├── login
│ │ │ ├── api.php
│ │ │ ├── qq
│ │ │ │ ├── api.php
│ │ │ │ └── qq.php
│ │ │ ├── sdcms.php
│ │ │ ├── weibo
│ │ │ │ ├── api.php
│ │ │ │ └── weibo.php
│ │ │ └── weixin
│ │ │ ├── api.php
│ │ │ └── weixin.php
│ │ └── pay
│ │ ├── alipay
│ │ │ ├── alipay.php
│ │ │ ├── images
│ │ │ │ ├── open.png
│ │ │ │ └── pay.png
│ │ │ ├── m
│ │ │ │ ├── api.php
│ │ │ │ ├── notify.php
│ │ │ │ └── return.php
│ │ │ └── p
│ │ │ ├── api.php
│ │ │ ├── notify.php
│ │ │ └── return.php
│ │ ├── api.php
│ │ ├── sdcms.php
│ │ ├── user
│ │ │ └── images
│ │ │ └── pay.png
│ │ └── wxpay
│ │ ├── images
│ │ │ └── pay.png
│ │ ├── m
│ │ │ ├── api.php
│ │ │ └── notify.php
│ │ ├── p
│ │ │ ├── api.php
│ │ │ └── notify.php
│ │ ├── w
│ │ │ ├── api.php
│ │ │ ├── notify.php
│ │ │ └── openid.php
│ │ └── wxpay.php
│ ├── app
│ │ ├── admin
│ │ │ ├── controller
│ │ │ │ ├── ad.php
│ │ │ │ ├── admin.php
│ │ │ │ ├── api.php
│ │ │ │ ├── bbs.php
│ │ │ │ ├── bbscate.php
│ │ │ │ ├── bbsconfig.php
│ │ │ │ ├── bbstopic.php
│ │ │ │ ├── bind.php
│ │ │ │ ├── block.php
│ │ │ │ ├── book.php
│ │ │ │ ├── cache.php
│ │ │ │ ├── catefield.php
│ │ │ │ ├── category.php
│ │ │ │ ├── city.php
│ │ │ │ ├── cityconfig.php
│ │ │ │ ├── config.php
│ │ │ │ ├── configgroup.php
│ │ │ │ ├── configgroupfield.php
│ │ │ │ ├── content.php
│ │ │ │ ├── extend.php
│ │ │ │ ├── extendfield.php
│ │ │ │ ├── form.php
│ │ │ │ ├── formdata.php
│ │ │ │ ├── formfield.php
│ │ │ │ ├── index.php
│ │ │ │ ├── inquiry.php
│ │ │ │ ├── link.php
│ │ │ │ ├── log.php
│ │ │ │ ├── logerror.php
│ │ │ │ ├── loginlog.php
│ │ │ │ ├── mail.php
│ │ │ │ ├── menu.php
│ │ │ │ ├── model.php
│ │ │ │ ├── modelfield.php
│ │ │ │ ├── order.php
│ │ │ │ ├── part.php
│ │ │ │ ├── plug.php
│ │ │ │ ├── sitelink.php
│ │ │ │ ├── tags.php
│ │ │ │ ├── theme.php
│ │ │ │ ├── upgrade.php
│ │ │ │ ├── upload.php
│ │ │ │ ├── user.php
│ │ │ │ ├── userbuy.php
│ │ │ │ ├── userconfig.php
│ │ │ │ ├── usergroup.php
│ │ │ │ ├── usermoney.php
│ │ │ │ ├── useronline.php
│ │ │ │ ├── userpay.php
│ │ │ │ ├── wxauto.php
│ │ │ │ ├── wxkey.php
│ │ │ │ ├── wxmass.php
│ │ │ │ ├── wxmater.php
│ │ │ │ ├── wxmenu.php
│ │ │ │ └── wxsubscribe.php
│ │ │ ├── controller.php
│ │ │ ├── function.php
│ │ │ ├── g.php
│ │ │ └── view
│ │ │ ├── bbs
│ │ │ │ ├── cate
│ │ │ │ │ ├── add.php
│ │ │ │ │ ├── edit.php
│ │ │ │ │ └── index.php
│ │ │ │ ├── config.php
│ │ │ │ ├── edit.php
│ │ │ │ ├── edittopic.php
│ │ │ │ ├── index.php
│ │ │ │ ├── topic
│ │ │ │ │ ├── edit.php
│ │ │ │ │ └── index.php
│ │ │ │ └── topic.php
│ │ │ ├── category
│ │ │ │ ├── add.php
│ │ │ │ ├── catefield
│ │ │ │ │ ├── add.php
│ │ │ │ │ ├── edit.php
│ │ │ │ │ └── index.php
│ │ │ │ ├── edit.php
│ │ │ │ ├── extend
│ │ │ │ │ ├── add.php
│ │ │ │ │ ├── edit.php
│ │ │ │ │ └── index.php
│ │ │ │ ├── extendfield
│ │ │ │ │ ├── add.php
│ │ │ │ │ ├── edit.php
│ │ │ │ │ └── index.php
│ │ │ │ ├── form
│ │ │ │ │ ├── add.php
│ │ │ │ │ ├── edit.php
│ │ │ │ │ └── index.php
│ │ │ │ ├── formdata
│ │ │ │ │ ├── add.php
│ │ │ │ │ ├── edit.php
│ │ │ │ │ └── index.php
│ │ │ │ ├── formfield
│ │ │ │ │ ├── add.php
│ │ │ │ │ ├── edit.php
│ │ │ │ │ └── index.php
│ │ │ │ ├── index.php
│ │ │ │ ├── model
│ │ │ │ │ ├── add.php
│ │ │ │ │ ├── copy.php
│ │ │ │ │ ├── edit.php
│ │ │ │ │ └── index.php
│ │ │ │ ├── modelfield
│ │ │ │ │ ├── add.php
│ │ │ │ │ ├── edit.php
│ │ │ │ │ └── index.php
│ │ │ │ └── move.php
│ │ │ ├── city
│ │ │ │ ├── add.php
│ │ │ │ ├── btach.php
│ │ │ │ ├── config.php
│ │ │ │ ├── edit.php
│ │ │ │ └── index.php
│ │ │ ├── config
│ │ │ │ ├── admin
│ │ │ │ │ ├── add.php
│ │ │ │ │ ├── edit.php
│ │ │ │ │ ├── index.php
│ │ │ │ │ └── pass.php
│ │ │ │ ├── admin_part
│ │ │ │ │ ├── add.php
│ │ │ │ │ ├── cate.php
│ │ │ │ │ ├── edit.php
│ │ │ │ │ ├── index.php
│ │ │ │ │ └── page.php
│ │ │ │ ├── api.php
│ │ │ │ ├── bind.php
│ │ │ │ └── config.php
│ │ │ ├── content
│ │ │ │ ├── add.php
│ │ │ │ ├── block
│ │ │ │ │ ├── add.php
│ │ │ │ │ ├── edit.php
│ │ │ │ │ └── list.php
│ │ │ │ ├── edit.php
│ │ │ │ ├── index.php
│ │ │ │ ├── list.php
│ │ │ │ ├── page.php
│ │ │ │ ├── recycle.php
│ │ │ │ ├── tags.php
│ │ │ │ └── tree.php
│ │ │ ├── extend
│ │ │ │ ├── ad
│ │ │ │ │ ├── add.php
│ │ │ │ │ ├── edit.php
│ │ │ │ │ └── index.php
│ │ │ │ ├── book
│ │ │ │ │ ├── edit.php
│ │ │ │ │ └── index.php
│ │ │ │ ├── inquiry
│ │ │ │ │ ├── edit.php
│ │ │ │ │ └── index.php
│ │ │ │ ├── link
│ │ │ │ │ ├── add.php
│ │ │ │ │ ├── config.php
│ │ │ │ │ ├── edit.php
│ │ │ │ │ └── index.php
│ │ │ │ ├── order
│ │ │ │ │ ├── edit.php
│ │ │ │ │ └── index.php
│ │ │ │ ├── sitelink
│ │ │ │ │ ├── add.php
│ │ │ │ │ ├── edit.php
│ │ │ │ │ └── index.php
│ │ │ │ └── tags.php
│ │ │ ├── index.php
│ │ │ ├── login.php
│ │ │ ├── other
│ │ │ │ ├── image - 副本.php
│ │ │ │ ├── image.php
│ │ │ │ └── upload.php
│ │ │ ├── right.php
│ │ │ ├── system
│ │ │ │ ├── cache.php
│ │ │ │ ├── error.php
│ │ │ │ ├── field
│ │ │ │ │ ├── add.php
│ │ │ │ │ ├── edit.php
│ │ │ │ │ └── index.php
│ │ │ │ ├── group
│ │ │ │ │ ├── add.php
│ │ │ │ │ ├── edit.php
│ │ │ │ │ └── index.php
│ │ │ │ ├── log.php
│ │ │ │ ├── loginlog.php
│ │ │ │ └── menu
│ │ │ │ ├── add.php
│ │ │ │ ├── edit.php
│ │ │ │ └── index.php
│ │ │ ├── theme
│ │ │ │ ├── edit.php
│ │ │ │ ├── list.php
│ │ │ │ ├── local.php
│ │ │ │ ├── mail
│ │ │ │ │ ├── add.php
│ │ │ │ │ ├── edit.php
│ │ │ │ │ └── index.php
│ │ │ │ ├── net.php
│ │ │ │ ├── plug
│ │ │ │ │ ├── local.php
│ │ │ │ │ └── net.php
│ │ │ │ └── template.php
│ │ │ ├── user
│ │ │ │ ├── add.php
│ │ │ │ ├── buy
│ │ │ │ │ └── index.php
│ │ │ │ ├── config.php
│ │ │ │ ├── edit.php
│ │ │ │ ├── group
│ │ │ │ │ ├── add.php
│ │ │ │ │ ├── edit.php
│ │ │ │ │ └── index.php
│ │ │ │ ├── index.php
│ │ │ │ ├── money
│ │ │ │ │ ├── add.php
│ │ │ │ │ └── index.php
│ │ │ │ ├── online
│ │ │ │ │ └── index.php
│ │ │ │ └── pay
│ │ │ │ └── index.php
│ │ │ └── weixin
│ │ │ ├── auto.php
│ │ │ ├── key
│ │ │ │ ├── add.php
│ │ │ │ ├── edit.php
│ │ │ │ └── index.php
│ │ │ ├── mass
│ │ │ │ ├── add.php
│ │ │ │ └── index.php
│ │ │ ├── mater
│ │ │ │ ├── add.php
│ │ │ │ ├── all.php
│ │ │ │ ├── choose.php
│ │ │ │ ├── index.php
│ │ │ │ └── master.php
│ │ │ ├── menu
│ │ │ │ ├── add.php
│ │ │ │ ├── edit.php
│ │ │ │ └── index.php
│ │ │ └── subscribe.php
│ │ ├── controller.php
│ │ ├── function.php
│ │ ├── home
│ │ │ ├── controller
│ │ │ │ ├── bbs
│ │ │ │ │ ├── add.php
│ │ │ │ │ ├── code.php
│ │ │ │ │ ├── edit.php
│ │ │ │ │ ├── index.php
│ │ │ │ │ ├── myreply.php
│ │ │ │ │ ├── mytopic.php
│ │ │ │ │ ├── reply.php
│ │ │ │ │ ├── search.php
│ │ │ │ │ └── show.php
│ │ │ │ ├── bbs.php
│ │ │ │ ├── form
│ │ │ │ │ ├── add.php
│ │ │ │ │ ├── code.php
│ │ │ │ │ ├── index.php
│ │ │ │ │ └── show.php
│ │ │ │ ├── form.php
│ │ │ │ ├── index
│ │ │ │ │ ├── cate.php
│ │ │ │ │ └── show.php
│ │ │ │ ├── index.php
│ │ │ │ ├── other.php
│ │ │ │ ├── task.php
│ │ │ │ ├── upload.php
│ │ │ │ └── user.php
│ │ │ ├── controller.php
│ │ │ └── function.php
│ │ ├── lib
│ │ │ ├── class
│ │ │ │ ├── sdcms_api.php
│ │ │ │ ├── sdcms_captcha.php
│ │ │ │ ├── sdcms_db.php
│ │ │ │ ├── sdcms_http.php
│ │ │ │ ├── sdcms_image.php
│ │ │ │ ├── sdcms_mail.php
│ │ │ │ ├── sdcms_page.php
│ │ │ │ ├── sdcms_parse.php
│ │ │ │ ├── sdcms_route.php
│ │ │ │ ├── sdcms_temp.php
│ │ │ │ ├── sdcms_tree.php
│ │ │ │ ├── sdcms_upload.php
│ │ │ │ ├── sdcms_verify.php
│ │ │ │ ├── sdcms_weixin.php
│ │ │ │ ├── sdcms_zip.php
│ │ │ │ ├── upload
│ │ │ │ │ ├── local.php
│ │ │ │ │ ├── oss.php
│ │ │ │ │ └── qiniu.php
│ │ │ │ └── zip
│ │ │ │ └── pclzip.php
│ │ │ └── fonts
│ │ │ └── elephant.ttf
│ │ ├── plug
│ │ │ ├── controller.php
│ │ │ └── function.php
│ │ └── sdcms.php
│ ├── data
│ │ ├── auth.php
│ │ ├── backup
│ │ ├── bind.php
│ │ ├── biz.php
│ │ ├── config
│ │ │ ├── 404.php
│ │ │ ├── alias.php
│ │ │ ├── bbscate.php
│ │ │ ├── category.php
│ │ │ ├── city.php
│ │ │ ├── city.sql
│ │ │ ├── close.php
│ │ │ ├── config.php
│ │ │ ├── field.php
│ │ │ ├── model.php
│ │ │ ├── nav.php
│ │ │ ├── plug.php
│ │ │ ├── plug_service.php
│ │ │ ├── sitelink.php
│ │ │ ├── theme.php
│ │ │ ├── weixin.php
│ │ │ └── weixin_ticket.php
│ │ ├── lan.php
│ │ └── log
│ ├── favicon.ico
│ ├── index.php
│ ├── install
│ │ ├── cache
│ │ │ ├── check.php
│ │ │ ├── config.php
│ │ │ ├── index.php
│ │ │ └── result.php
│ │ ├── css
│ │ │ └── app.css
│ │ ├── images
│ │ │ └── logo.png
│ │ ├── index.php
│ │ ├── install.php
│ │ ├── sql
│ │ │ └── mysql.sql
│ │ └── view
│ │ ├── check.php
│ │ ├── config.php
│ │ ├── index.php
│ │ └── result.php
│ ├── open
│ │ ├── api.php
│ │ ├── function.php
│ │ ├── index.php
│ │ ├── module
│ │ │ ├── ad.php
│ │ │ ├── block.php
│ │ │ ├── category.php
│ │ │ ├── config.php
│ │ │ ├── content.php
│ │ │ ├── lists.php
│ │ │ ├── other
│ │ │ │ ├── book
│ │ │ │ │ ├── add.php
│ │ │ │ │ └── list.php
│ │ │ │ ├── digs.php
│ │ │ │ ├── inquiry.php
│ │ │ │ ├── order.php
│ │ │ │ └── search.php
│ │ │ ├── show.php
│ │ │ └── user
│ │ │ ├── baidu
│ │ │ │ ├── api.php
│ │ │ │ ├── bind.php
│ │ │ │ ├── buy.php
│ │ │ │ ├── orderpay.php
│ │ │ │ ├── ordershow.php
│ │ │ │ ├── pay.php
│ │ │ │ └── reg.php
│ │ │ ├── buy.php
│ │ │ ├── checkuser.php
│ │ │ ├── douyin
│ │ │ │ ├── api.php
│ │ │ │ ├── bind.php
│ │ │ │ ├── buy.php
│ │ │ │ ├── orderpay.php
│ │ │ │ ├── ordershow.php
│ │ │ │ ├── pay.php
│ │ │ │ └── reg.php
│ │ │ ├── editemail.php
│ │ │ ├── editpass.php
│ │ │ ├── getuser.php
│ │ │ ├── mymoney.php
│ │ │ ├── myorder.php
│ │ │ ├── newpass.php
│ │ │ ├── order.php
│ │ │ └── weixin
│ │ │ ├── api.php
│ │ │ ├── bind.php
│ │ │ ├── buy.php
│ │ │ ├── orderpay.php
│ │ │ ├── ordershow.php
│ │ │ ├── pay.php
│ │ │ └── reg.php
│ │ ├── pay
│ │ │ ├── baidu
│ │ │ │ ├── bdpay.php
│ │ │ │ └── notify.php
│ │ │ ├── douyin
│ │ │ │ ├── dypay.php
│ │ │ │ ├── notify.php
│ │ │ │ └── wxnotify.php
│ │ │ └── weixin
│ │ │ ├── notify.php
│ │ │ └── wxpay.php
│ │ └── sdcms.php
│ ├── public
│ │ ├── admin
│ │ │ ├── css
│ │ │ │ ├── iframe.css
│ │ │ │ └── layout.css
│ │ │ ├── images
│ │ │ │ ├── bg_master.png
│ │ │ │ ├── file-icons.gif
│ │ │ │ ├── file-icons.png
│ │ │ │ ├── logo.png
│ │ │ │ └── more.gif
│ │ │ └── js
│ │ │ ├── base.js
│ │ │ ├── jquery-ui.js
│ │ │ └── jquery.layout.js
│ │ ├── css
│ │ │ └── ui.css
│ │ ├── datepick
│ │ │ ├── laydate.css
│ │ │ └── laydate.js
│ │ ├── fonts
│ │ │ ├── iconfont.eot
│ │ │ ├── iconfont.svg
│ │ │ ├── iconfont.ttf
│ │ │ ├── iconfont.woff
│ │ │ └── iconfont.woff2
│ │ ├── js
│ │ │ ├── dropzone.js
│ │ │ ├── highcharts.js
│ │ │ ├── jquery.js
│ │ │ ├── jquery.masonry.min.js
│ │ │ ├── jquery.qrcode.js
│ │ │ ├── lan
│ │ │ │ └── cn.js
│ │ │ ├── sortable.min.js
│ │ │ └── ui.js
│ │ ├── scroll
│ │ │ └── jquery.slimscroll.js
│ │ ├── select
│ │ │ ├── select.css
│ │ │ └── select.js
│ │ ├── ueditor
│ │ │ ├── dialogs
│ │ │ │ ├── anchor
│ │ │ │ │ └── anchor.html
│ │ │ │ ├── attachment
│ │ │ │ │ ├── attachment.css
│ │ │ │ │ ├── attachment.html
│ │ │ │ │ ├── attachment.js
│ │ │ │ │ ├── fileTypeImages
│ │ │ │ │ │ ├── icon_chm.gif
│ │ │ │ │ │ ├── icon_default.png
│ │ │ │ │ │ ├── icon_doc.gif
│ │ │ │ │ │ ├── icon_docx.gif
│ │ │ │ │ │ ├── icon_exe.gif
│ │ │ │ │ │ ├── icon_jpg.gif
│ │ │ │ │ │ ├── icon_mp3.gif
│ │ │ │ │ │ ├── icon_mv.gif
│ │ │ │ │ │ ├── icon_pdf.gif
│ │ │ │ │ │ ├── icon_ppt.gif
│ │ │ │ │ │ ├── icon_psd.gif
│ │ │ │ │ │ ├── icon_rar.gif
│ │ │ │ │ │ ├── icon_txt.gif
│ │ │ │ │ │ └── icon_xls.gif
│ │ │ │ │ └── images
│ │ │ │ │ ├── alignicon.gif
│ │ │ │ │ ├── alignicon.png
│ │ │ │ │ ├── bg.png
│ │ │ │ │ ├── file-icons.gif
│ │ │ │ │ ├── file-icons.png
│ │ │ │ │ ├── icons.gif
│ │ │ │ │ ├── icons.png
│ │ │ │ │ ├── image.png
│ │ │ │ │ ├── progress.png
│ │ │ │ │ ├── success.gif
│ │ │ │ │ └── success.png
│ │ │ │ ├── charts
│ │ │ │ │ ├── chart.config.js
│ │ │ │ │ ├── charts.css
│ │ │ │ │ ├── charts.html
│ │ │ │ │ ├── charts.js
│ │ │ │ │ └── images
│ │ │ │ │ ├── charts0.png
│ │ │ │ │ ├── charts1.png
│ │ │ │ │ ├── charts2.png
│ │ │ │ │ ├── charts3.png
│ │ │ │ │ ├── charts4.png
│ │ │ │ │ └── charts5.png
│ │ │ │ ├── emotion
│ │ │ │ │ ├── emotion.css
│ │ │ │ │ ├── emotion.html
│ │ │ │ │ ├── emotion.js
│ │ │ │ │ └── images
│ │ │ │ │ ├── 0.gif
│ │ │ │ │ ├── bface.gif
│ │ │ │ │ ├── cface.gif
│ │ │ │ │ ├── fface.gif
│ │ │ │ │ ├── jxface2.gif
│ │ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ │ ├── tface.gif
│ │ │ │ │ ├── wface.gif
│ │ │ │ │ └── yface.gif
│ │ │ │ ├── help
│ │ │ │ │ ├── help.css
│ │ │ │ │ ├── help.html
│ │ │ │ │ └── help.js
│ │ │ │ ├── image
│ │ │ │ │ ├── image.css
│ │ │ │ │ ├── image.html
│ │ │ │ │ ├── image.js
│ │ │ │ │ └── images
│ │ │ │ │ ├── alignicon.jpg
│ │ │ │ │ ├── bg.png
│ │ │ │ │ ├── icons.gif
│ │ │ │ │ ├── icons.png
│ │ │ │ │ ├── image.png
│ │ │ │ │ ├── progress.png
│ │ │ │ │ ├── success.gif
│ │ │ │ │ └── success.png
│ │ │ │ ├── insertframe
│ │ │ │ │ └── insertframe.html
│ │ │ │ ├── internal.js
│ │ │ │ ├── link
│ │ │ │ │ └── link.html
│ │ │ │ ├── map
│ │ │ │ │ ├── map.html
│ │ │ │ │ └── show.html
│ │ │ │ ├── preview
│ │ │ │ │ └── preview.html
│ │ │ │ ├── scrawl
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── addimg.png
│ │ │ │ │ │ ├── brush.png
│ │ │ │ │ │ ├── delimg.png
│ │ │ │ │ │ ├── delimgH.png
│ │ │ │ │ │ ├── empty.png
│ │ │ │ │ │ ├── emptyH.png
│ │ │ │ │ │ ├── eraser.png
│ │ │ │ │ │ ├── redo.png
│ │ │ │ │ │ ├── redoH.png
│ │ │ │ │ │ ├── scale.png
│ │ │ │ │ │ ├── scaleH.png
│ │ │ │ │ │ ├── size.png
│ │ │ │ │ │ ├── undo.png
│ │ │ │ │ │ └── undoH.png
│ │ │ │ │ ├── scrawl.css
│ │ │ │ │ ├── scrawl.html
│ │ │ │ │ └── scrawl.js
│ │ │ │ ├── searchreplace
│ │ │ │ │ ├── searchreplace.html
│ │ │ │ │ └── searchreplace.js
│ │ │ │ ├── spechars
│ │ │ │ │ ├── spechars.html
│ │ │ │ │ └── spechars.js
│ │ │ │ ├── table
│ │ │ │ │ ├── dragicon.png
│ │ │ │ │ ├── edittable.css
│ │ │ │ │ ├── edittable.html
│ │ │ │ │ ├── edittable.js
│ │ │ │ │ ├── edittd.html
│ │ │ │ │ └── edittip.html
│ │ │ │ ├── template
│ │ │ │ │ ├── config.js
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── bg.gif
│ │ │ │ │ │ ├── pre0.png
│ │ │ │ │ │ ├── pre1.png
│ │ │ │ │ │ ├── pre2.png
│ │ │ │ │ │ ├── pre3.png
│ │ │ │ │ │ └── pre4.png
│ │ │ │ │ ├── template.css
│ │ │ │ │ ├── template.html
│ │ │ │ │ └── template.js
│ │ │ │ ├── video
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ ├── center_focus.jpg
│ │ │ │ │ │ ├── file-icons.gif
│ │ │ │ │ │ ├── file-icons.png
│ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ ├── image.png
│ │ │ │ │ │ ├── left_focus.jpg
│ │ │ │ │ │ ├── none_focus.jpg
│ │ │ │ │ │ ├── progress.png
│ │ │ │ │ │ ├── right_focus.jpg
│ │ │ │ │ │ ├── success.gif
│ │ │ │ │ │ └── success.png
│ │ │ │ │ ├── video.css
│ │ │ │ │ ├── video.html
│ │ │ │ │ └── video.js
│ │ │ │ └── wordimage
│ │ │ │ ├── fClipboard_ueditor.swf
│ │ │ │ ├── imageUploader.swf
│ │ │ │ ├── tangram.js
│ │ │ │ ├── wordimage.html
│ │ │ │ └── wordimage.js
│ │ │ ├── lang
│ │ │ │ └── zh-cn
│ │ │ │ ├── images
│ │ │ │ │ ├── copy.png
│ │ │ │ │ ├── imgLable.png
│ │ │ │ │ ├── imglabel.png
│ │ │ │ │ ├── localimage.png
│ │ │ │ │ └── upload.png
│ │ │ │ └── zh-cn.js
│ │ │ ├── themes
│ │ │ │ ├── default
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── ueditor.min.css
│ │ │ │ │ ├── dialogbase.css
│ │ │ │ │ └── images
│ │ │ │ │ ├── anchor.gif
│ │ │ │ │ ├── arrow.png
│ │ │ │ │ ├── arrow_down.png
│ │ │ │ │ ├── arrow_up.png
│ │ │ │ │ ├── button-bg.gif
│ │ │ │ │ ├── cancelbutton.gif
│ │ │ │ │ ├── charts.png
│ │ │ │ │ ├── cursor_h.gif
│ │ │ │ │ ├── cursor_h.png
│ │ │ │ │ ├── cursor_v.gif
│ │ │ │ │ ├── cursor_v.png
│ │ │ │ │ ├── dialog-title-bg.png
│ │ │ │ │ ├── filescan.png
│ │ │ │ │ ├── highlighted.gif
│ │ │ │ │ ├── icons-all.gif
│ │ │ │ │ ├── icons.gif
│ │ │ │ │ ├── icons.png
│ │ │ │ │ ├── loaderror.png
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── lock.gif
│ │ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ │ ├── pagebreak.gif
│ │ │ │ │ ├── scale.png
│ │ │ │ │ ├── sortable.png
│ │ │ │ │ ├── spacer.gif
│ │ │ │ │ ├── sparator_v.png
│ │ │ │ │ ├── table-cell-align.png
│ │ │ │ │ ├── tangram-colorpicker.png
│ │ │ │ │ ├── toolbar_bg.png
│ │ │ │ │ ├── unhighlighted.gif
│ │ │ │ │ ├── upload.png
│ │ │ │ │ ├── videologo.gif
│ │ │ │ │ ├── word.gif
│ │ │ │ │ └── wordpaste.png
│ │ │ │ └── iframe.css
│ │ │ ├── third-party
│ │ │ │ ├── SyntaxHighlighter
│ │ │ │ │ ├── shCore.js
│ │ │ │ │ └── shCoreDefault.css
│ │ │ │ ├── codemirror
│ │ │ │ │ ├── codemirror.css
│ │ │ │ │ └── codemirror.js
│ │ │ │ ├── jquery-1.10.2.min.js
│ │ │ │ ├── video-js
│ │ │ │ │ ├── font
│ │ │ │ │ │ ├── vjs.eot
│ │ │ │ │ │ ├── vjs.svg
│ │ │ │ │ │ ├── vjs.ttf
│ │ │ │ │ │ └── vjs.woff
│ │ │ │ │ ├── video-js.css
│ │ │ │ │ ├── video-js.min.css
│ │ │ │ │ ├── video-js.swf
│ │ │ │ │ └── video.js
│ │ │ │ ├── webuploader
│ │ │ │ │ ├── Uploader.swf
│ │ │ │ │ ├── webuploader.css
│ │ │ │ │ └── webuploader.min.js
│ │ │ │ ├── xss.min.js
│ │ │ │ └── zeroclipboard
│ │ │ │ ├── ZeroClipboard.min.js
│ │ │ │ └── ZeroClipboard.swf
│ │ │ ├── ueditor.all.min.js
│ │ │ └── ueditor.config.js
│ │ ├── upload
│ │ │ ├── css
│ │ │ │ └── style.css
│ │ │ ├── images
│ │ │ │ ├── bg.png
│ │ │ │ ├── icons.png
│ │ │ │ ├── image.png
│ │ │ │ ├── progress.png
│ │ │ │ └── success.png
│ │ │ └── js
│ │ │ ├── upload.js
│ │ │ └── webuploader.js
│ │ └── ztree
│ │ ├── css
│ │ │ └── zTreeStyle.css
│ │ ├── images
│ │ │ ├── line_conn.gif
│ │ │ ├── loading.gif
│ │ │ ├── zTreeStandard.gif
│ │ │ └── zTreeStandard.png
│ │ ├── jquery.ztree.core-3.5.min.js
│ │ └── jquery.ztree.excheck-3.5.min.js
│ ├── theme
│ │ └── 20170104
│ │ ├── _config.php
│ │ ├── _note.php
│ │ ├── _theme.php
│ │ ├── bbs
│ │ │ ├── add.php
│ │ │ ├── edit.php
│ │ │ ├── index.php
│ │ │ ├── left.php
│ │ │ ├── myreply.php
│ │ │ ├── mytopic.php
│ │ │ ├── search.php
│ │ │ └── show.php
│ │ ├── block
│ │ │ ├── about.php
│ │ │ └── contact.php
│ │ ├── book.php
│ │ ├── city.php
│ │ ├── content
│ │ │ ├── form
│ │ │ │ ├── add.php
│ │ │ │ ├── list.php
│ │ │ │ └── show.php
│ │ │ ├── job
│ │ │ │ ├── list.php
│ │ │ │ └── show.php
│ │ │ ├── news
│ │ │ │ ├── list.php
│ │ │ │ ├── list_pic.php
│ │ │ │ └── show.php
│ │ │ ├── page
│ │ │ │ └── page.php
│ │ │ └── pro
│ │ │ ├── list.php
│ │ │ └── show.php
│ │ ├── css
│ │ │ └── public.css
│ │ ├── foot.php
│ │ ├── head.php
│ │ ├── images
│ │ │ ├── b00.jpg
│ │ │ ├── b01.jpg
│ │ │ ├── b02.jpg
│ │ │ ├── b03.jpg
│ │ │ ├── bg_400.jpg
│ │ │ └── logo.gif
│ │ ├── index.php
│ │ ├── js
│ │ │ └── app.js
│ │ ├── mobile
│ │ │ ├── bar.php
│ │ │ ├── bbs
│ │ │ │ ├── add.php
│ │ │ │ ├── edit.php
│ │ │ │ ├── index.php
│ │ │ │ ├── myreply.php
│ │ │ │ ├── mytopic.php
│ │ │ │ ├── search.php
│ │ │ │ └── show.php
│ │ │ ├── book.php
│ │ │ ├── content
│ │ │ │ ├── form
│ │ │ │ │ ├── add.php
│ │ │ │ │ ├── list.php
│ │ │ │ │ └── show.php
│ │ │ │ ├── job
│ │ │ │ │ ├── list.php
│ │ │ │ │ └── show.php
│ │ │ │ ├── news
│ │ │ │ │ ├── list.php
│ │ │ │ │ ├── list_pic.php
│ │ │ │ │ └── show.php
│ │ │ │ ├── page
│ │ │ │ │ └── page.php
│ │ │ │ ├── pro
│ │ │ │ │ ├── list.php
│ │ │ │ │ └── show.php
│ │ │ │ └── weixin
│ │ │ │ └── show.php
│ │ │ ├── css
│ │ │ │ └── app.css
│ │ │ ├── foot.php
│ │ │ ├── head.php
│ │ │ ├── images
│ │ │ │ ├── b01.jpg
│ │ │ │ ├── logo.png
│ │ │ │ └── selected.gif
│ │ │ ├── index.php
│ │ │ ├── js
│ │ │ │ └── app.js
│ │ │ ├── ordershow.php
│ │ │ ├── search.php
│ │ │ ├── sitemap.php
│ │ │ ├── taglist.php
│ │ │ ├── tags.php
│ │ │ ├── top.php
│ │ │ ├── user
│ │ │ │ ├── editemail.php
│ │ │ │ ├── editpass.php
│ │ │ │ ├── getpass.php
│ │ │ │ ├── index.php
│ │ │ │ ├── login.php
│ │ │ │ ├── mymoney.php
│ │ │ │ ├── myorder.php
│ │ │ │ ├── pay.php
│ │ │ │ └── reg.php
│ │ │ └── wxshare.php
│ │ ├── ordershow.php
│ │ ├── search.php
│ │ ├── sitemap.php
│ │ ├── taglist.php
│ │ ├── tags.php
│ │ ├── theme.jpg
│ │ ├── top.php
│ │ └── user
│ │ ├── editemail.php
│ │ ├── editpass.php
│ │ ├── getpass.php
│ │ ├── index.php
│ │ ├── login.php
│ │ ├── mymoney.php
│ │ ├── myorder.php
│ │ ├── nav.php
│ │ ├── pay.php
│ │ └── reg.php
│ ├── upfile
│ │ ├── 2017
│ │ │ ├── 04
│ │ │ │ ├── 1491370922113.jpg
│ │ │ │ ├── 1491370922143.jpg
│ │ │ │ ├── 1491370922493.jpg
│ │ │ │ ├── 1491370922546.jpg
│ │ │ │ ├── 1491370922793.jpg
│ │ │ │ ├── 1491398238496.jpg
│ │ │ │ ├── 1491398255999.jpg
│ │ │ │ ├── 1491398267736.jpg
│ │ │ │ ├── 1491398277385.jpg
│ │ │ │ ├── 1491398288770.jpg
│ │ │ │ ├── 1491398298642.jpg
│ │ │ │ ├── 1491398308495.jpg
│ │ │ │ ├── 1491398321540.jpg
│ │ │ │ ├── 1491398337126.jpg
│ │ │ │ ├── 1491398346730.jpg
│ │ │ │ ├── 1491398356573.jpg
│ │ │ │ ├── 1491398367681.jpg
│ │ │ │ ├── 1491438121397.jpg
│ │ │ │ ├── 1491438290437.jpg
│ │ │ │ ├── 1491438396852.jpg
│ │ │ │ ├── 1491438487685.jpg
│ │ │ │ ├── 1491438609385.jpg
│ │ │ │ ├── 1491438690212.jpg
│ │ │ │ ├── 1491438775969.jpg
│ │ │ │ ├── 1491439678202.jpg
│ │ │ │ ├── 1491439808265.jpg
│ │ │ │ ├── 1491439857326.jpg
│ │ │ │ ├── 1491439857622.jpg
│ │ │ │ ├── 1491439857685.jpg
│ │ │ │ ├── 1491439857697.jpg
│ │ │ │ ├── 1491530691193.jpg
│ │ │ │ ├── 1491530715373.jpg
│ │ │ │ ├── 1491530769912.jpg
│ │ │ │ ├── 1491530909556.jpg
│ │ │ │ ├── 1491530925314.jpg
│ │ │ │ ├── 1491531043489.jpg
│ │ │ │ ├── 1491531059616.jpg
│ │ │ │ ├── 1491531200195.jpg
│ │ │ │ ├── 1491531213722.jpg
│ │ │ │ ├── 1491531319947.jpg
│ │ │ │ ├── 1491531332883.jpg
│ │ │ │ ├── 1491531390508.jpg
│ │ │ │ ├── 1491531402586.jpg
│ │ │ │ ├── 1491531682930.jpg
│ │ │ │ ├── 1491531695425.jpg
│ │ │ │ ├── 1491531775939.jpg
│ │ │ │ ├── 1491531789438.jpg
│ │ │ │ ├── 1491532775365.jpg
│ │ │ │ ├── 1491532800637.jpg
│ │ │ │ ├── thumb_277_232_1491438487685.jpg
│ │ │ │ ├── thumb_277_232_1491438609385.jpg
│ │ │ │ ├── thumb_277_232_1491438690212.jpg
│ │ │ │ ├── thumb_277_232_1491438775969.jpg
│ │ │ │ ├── thumb_277_232_1491439678202.jpg
│ │ │ │ ├── thumb_277_232_1491439808265.jpg
│ │ │ │ ├── thumb_277_242_1491531213722.jpg
│ │ │ │ ├── thumb_277_242_1491531332883.jpg
│ │ │ │ ├── thumb_277_242_1491531402586.jpg
│ │ │ │ ├── thumb_277_242_1491531695425.jpg
│ │ │ │ ├── thumb_277_242_1491531789438.jpg
│ │ │ │ ├── thumb_277_242_1491532800637.jpg
│ │ │ │ ├── thumb_280_200_1491438690212.jpg
│ │ │ │ ├── thumb_280_200_1491438775969.jpg
│ │ │ │ ├── thumb_280_200_1491439678202.jpg
│ │ │ │ ├── thumb_280_200_1491439808265.jpg
│ │ │ │ ├── thumb_60_60_1491531332883.jpg
│ │ │ │ ├── thumb_60_60_1491531775939.jpg
│ │ │ │ └── thumb_60_60_1491532800637.jpg
│ │ │ └── 09
│ │ │ ├── 1505443054573.jpg
│ │ │ ├── 1505443054603.jpg
│ │ │ ├── 1505443054799.jpg
│ │ │ ├── 1505443096340.gif
│ │ │ ├── 1505456111932.jpg
│ │ │ ├── 1505696231154.jpg
│ │ │ ├── 1505696231838.jpg
│ │ │ └── 1505696231961.jpg
│ │ ├── mobile.png
│ │ ├── noface.gif
│ │ └── pc.png
│ └── version.php
└── 好例子网_sdcms-green.zip
191 directories, 784 files
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论