【例子介绍】SDCMS
kuicms系统是:轻站系统是基于SDCMS产品系列修改而来,算是精简,但又有所不同。轻站系统:体积小、功能实用,运行环境兼容性高(支持Php5.4 至 7.4版本)。注意是,前台不显示未注册信息!
【相关图片】
【源码结构】
. └── web ├── api │ ├── login │ │ ├── api.php │ │ ├── kuicms.php │ │ │ ├── api.php │ │ │ └── qq.php │ │ │ ├── api.php │ │ │ └── weibo.php │ │ └── weixin │ │ ├── api.php │ │ └── weixin.php │ └── pay │ ├── alipay │ │ ├── alipay.php │ │ ├── images │ │ │ └── pay.png │ │ ├── m │ │ │ ├── api.php │ │ │ ├── notify.php │ │ │ └── return.php │ │ └── p │ │ ├── api.php │ │ ├── notify.php │ │ └── return.php │ ├── api.php │ ├── kuicms.php │ ├── result.php │ └── 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 │ │ │ ├── block.php │ │ │ ├── book.php │ │ │ ├── cache.php │ │ │ ├── catefield.php │ │ │ ├── category.php │ │ │ ├── city.php │ │ │ ├── cityconfig.php │ │ │ ├── config.php │ │ │ ├── configgroup.php │ │ │ ├── configgroupfield.php │ │ │ ├── content.php │ │ │ ├── controller.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 │ │ │ ├── upload.php │ │ │ ├── user.php │ │ │ ├── userconfig.php │ │ │ ├── usergroup.php │ │ │ ├── wxauto.php │ │ │ ├── wxkey.php │ │ │ ├── wxmass.php │ │ │ ├── wxmater.php │ │ │ ├── wxmenu.php │ │ │ └── wxsubscribe.php │ │ ├── controller.php │ │ ├── function.php │ │ └── view │ │ ├── index.php │ │ ├── login.php │ │ ├── module │ │ │ ├── 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 │ │ │ ├── category.lnk │ │ │ ├── city │ │ │ │ ├── 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 │ │ │ │ └── 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 │ │ │ ├── other │ │ │ │ └── image.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 │ │ │ │ ├── index.php │ │ │ │ ├── list.php │ │ │ │ │ ├── add.php │ │ │ │ │ ├── edit.php │ │ │ │ │ └── index.php │ │ │ │ ├── plug.php │ │ │ │ └── template.php │ │ │ ├── user │ │ │ │ ├── add.php │ │ │ │ ├── config.php │ │ │ │ ├── edit.php │ │ │ │ ├── group │ │ │ │ │ ├── add.php │ │ │ │ │ ├── edit.php │ │ │ │ │ └── index.php │ │ │ │ ├── index.php │ │ │ │ └── login.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 │ │ │ ├── menu │ │ │ │ ├── add.php │ │ │ │ ├── edit.php │ │ │ │ └── index.php │ │ │ └── subscribe.php │ │ └── right.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 │ │ │ ├── upload.php │ │ │ └── user.php │ │ ├── controller.php │ │ └── function.php │ ├── kuicms.php │ ├── lib │ │ ├── class │ │ │ ├── kuicms_api.php │ │ │ ├── kuicms_captcha.php │ │ │ ├── kuicms_db.php │ │ │ ├── kuicms_http.php │ │ │ ├── kuicms_image.php │ │ │ ├── kuicms_mail.php │ │ │ ├── kuicms_page.php │ │ │ ├── kuicms_parse.php │ │ │ ├── kuicms_route.php │ │ │ ├── kuicms_temp.php │ │ │ ├── kuicms_tree.php │ │ │ ├── kuicms_upload.php │ │ │ ├── kuicms_verify.php │ │ │ ├── kuicms_weixin.php │ │ │ └── upload │ │ │ ├── local.php │ │ │ ├── oss.php │ │ │ └── qiniu.php │ │ └── fonts │ │ └── elephant.ttf │ └── plug │ ├── attachment │ │ ├── _config.php │ │ ├── controller │ │ │ └── admin.php │ │ └── view │ │ ├── edit.php │ │ ├── group.php │ │ ├── index.php │ │ └── move.php │ ├── backup │ │ ├── _config.php │ │ ├── controller │ │ │ └── admin.php │ │ └── view │ │ ├── backup.php │ │ └── import.php │ ├── collect │ │ ├── _config.php │ │ ├── controller │ │ │ └── admin.php │ │ └── view │ │ └── admin │ │ ├── add.php │ │ ├── collect.php │ │ ├── contentset.php │ │ ├── edit.php │ │ ├── export.php │ │ ├── history.php │ │ ├── import.php │ │ ├── index.php │ │ ├── pageset.php │ │ └── test.php │ ├── controller.php │ ├── function.php │ ├── label │ │ ├── _config.php │ │ ├── controller │ │ │ └── admin.php │ │ └── view │ │ └── admin │ │ ├── index.php │ │ ├── index2.php │ │ ├── index3.php │ │ ├── index4.php │ │ └── index5.php │ ├── map │ │ ├── _config.php │ │ ├── controller │ │ │ ├── admin.php │ │ │ └── index.php │ │ └── view │ │ ├── admin │ │ │ └── index.php │ │ └── index.php │ ├── push │ │ ├── _config.php │ │ ├── controller │ │ │ └── admin.php │ │ └── view │ │ └── admin │ │ ├── config.php │ │ └── index.php │ ├── service │ │ ├── _config.php │ │ ├── controller │ │ │ └── admin.php │ │ └── view │ │ └── admin │ │ ├── add.php │ │ ├── edit.php │ │ └── index.php │ └── sitemap │ ├── _config.php │ ├── controller │ │ └── admin.php │ └── view │ └── admin │ └── index.php ├── data │ ├── backup │ ├── biz.php │ ├── config │ │ ├── 404.php │ │ ├── alias.php │ │ ├── bbscate.php │ │ ├── category.php │ │ ├── city.php │ │ ├── city.sql │ │ ├── close.php │ │ ├── config.php │ │ ├── field.php │ │ ├── model.php │ │ ├── plug.php │ │ ├── plug_service.php │ │ ├── sitelink.php │ │ ├── theme.php │ │ ├── weixin.php │ │ └── weixin_ticket.php │ ├── lan.php │ └── log │ └── del.txt ├── 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 │ ├── index.php │ ├── kuicms.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 │ │ │ ├── ordershow.php │ │ │ └── reg.php │ │ ├── checkuser.php │ │ ├── editemail.php │ │ ├── editpass.php │ │ ├── getuser.php │ │ ├── myorder.php │ │ ├── newpass.php │ │ └── weixin │ │ ├── api.php │ │ ├── bind.php │ │ ├── ordershow.php │ │ └── reg.php │ └── pay │ ├── baidu │ │ ├── bdpay.php │ │ └── notify.php │ └── weixin │ ├── notify.php │ └── wxpay.php ├── public │ ├── admin │ │ ├── css │ │ │ ├── iframe.css │ │ │ └── layout.css │ │ ├── images │ │ │ ├── bg_master.png │ │ │ ├── file-icons.gif │ │ │ ├── file-icons.png │ │ │ └── more.gif │ │ └── js │ │ ├── base.js │ │ ├── jquery-ui.js │ │ └── jquery.layout.js │ ├── css │ │ └── ui.css │ ├── datepick │ │ ├── laydate.css │ │ └── laydate.js │ ├── fonts │ │ ├── iconfont.eot │ │ ├── iconfont.ttf │ │ ├── iconfont.woff │ │ └── iconfont.woff2 │ ├── js │ │ ├── dropzone.js │ │ ├── highcharts.js │ │ ├── jquery.js │ │ ├── jquery.masonry.min.js │ │ ├── jquery.qrcode.js │ │ └── ui.js │ ├── scroll │ │ ├── jquery.nicescroll.min.js │ │ └── 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_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.js │ │ │ ├── ZeroClipboard.min.js │ │ │ └── ZeroClipboard.swf │ │ ├── ueditor.all.min.js │ │ └── ueditor.config.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 │ └── default │ ├── _config.php │ ├── _note.php │ ├── _theme.php │ ├── bbs │ │ ├── add.php │ │ ├── edit.php │ │ ├── index.php │ │ ├── myreply.php │ │ ├── mytopic.php │ │ ├── search.php │ │ └── show.php │ ├── block │ │ ├── about.php │ │ └── inner_text.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 │ │ └── weixin │ │ └── show.php │ ├── css │ │ └── app.css │ ├── foot.php │ ├── head.php │ ├── images │ │ ├── bg_foot_line.gif │ │ ├── logo.png │ │ ├── selected.gif │ │ └── slider-control.png │ ├── 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 │ │ │ ├── myorder.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 │ ├── myorder.php │ ├── nav.php │ └── reg.php ├── upfile │ ├── a.jpg │ ├── a1.jpg │ ├── b.jpg │ ├── b1.jpg │ ├── c.jpg │ ├── c1.jpg │ ├── c3.jpg │ ├── mobile.png │ ├── noface.gif │ └── pc.png └── version.php 204 directories, 700 files |
评论