【例子介绍】网站评论系统基于Waline开发的评论系统
【相关图片】
【源码结构】
.
├── cache
├── class
│ ├── admin
│ │ ├── admin.config
│ │ ├── admin.php
│ │ ├── article.php
│ │ ├── channel.php
│ │ ├── class.php
│ │ ├── column.php
│ │ ├── info.php
│ │ ├── input.php
│ │ ├── module.php
│ │ ├── my.php
│ │ ├── route.php
│ │ ├── template
│ │ │ ├── article_edit.php
│ │ │ ├── article_index.php
│ │ │ ├── article_var.php
│ │ │ ├── channel_edit.php
│ │ │ ├── channel_index.php
│ │ │ ├── class_config.php
│ │ │ ├── class_index.php
│ │ │ ├── class_permission.php
│ │ │ ├── class_setting.php
│ │ │ ├── column_edit.php
│ │ │ ├── column_index.php
│ │ │ ├── error.php
│ │ │ ├── index.php
│ │ │ ├── info_edit.php
│ │ │ ├── info_index.php
│ │ │ ├── input
│ │ │ │ ├── article.php
│ │ │ │ ├── articleunlimit.php
│ │ │ │ ├── classchannel.php
│ │ │ │ ├── classmodule.php
│ │ │ │ ├── colorpicker.php
│ │ │ │ ├── database.php
│ │ │ │ ├── databaseselects.php
│ │ │ │ ├── databaseunlimit.php
│ │ │ │ ├── datetime.php
│ │ │ │ ├── fileupload.php
│ │ │ │ ├── icon.php
│ │ │ │ ├── imgupload.php
│ │ │ │ ├── password.php
│ │ │ │ ├── rate.php
│ │ │ │ ├── slider.php
│ │ │ │ ├── switch.php
│ │ │ │ ├── tags.php
│ │ │ │ └── transfer.php
│ │ │ ├── install.php
│ │ │ ├── login.php
│ │ │ ├── module_add.php
│ │ │ ├── module_config.php
│ │ │ ├── module_index.php
│ │ │ ├── module_permission.php
│ │ │ ├── my_edit.php
│ │ │ ├── my_info.php
│ │ │ ├── route_edit.php
│ │ │ ├── route_index.php
│ │ │ ├── static
│ │ │ │ ├── admin.css
│ │ │ │ ├── config.js
│ │ │ │ ├── favicon.ico
│ │ │ │ └── lib
│ │ │ │ ├── admin.js
│ │ │ │ ├── extend
│ │ │ │ │ └── sortable.js
│ │ │ │ ├── index.js
│ │ │ │ └── view.js
│ │ │ ├── user_edit.php
│ │ │ ├── user_index.php
│ │ │ ├── user_info.php
│ │ │ ├── user_role_edit.php
│ │ │ ├── user_role_index.php
│ │ │ ├── user_role_permission.php
│ │ │ ├── var_edit.php
│ │ │ └── var_index.php
│ │ ├── user.php
│ │ └── var.php
│ ├── cms
│ │ ├── article.php
│ │ ├── channel.php
│ │ ├── class.php
│ │ ├── cms.config
│ │ ├── cms.php
│ │ ├── common.php
│ │ ├── config.php
│ │ ├── form.php
│ │ ├── hook.php
│ │ ├── input.php
│ │ ├── install.php
│ │ ├── module.php
│ │ ├── route.php
│ │ └── user.php
│ ├── comment
│ │ ├── admin.php
│ │ ├── api.php
│ │ ├── comment.config
│ │ ├── comment.php
│ │ └── template
│ │ ├── avatar.png
│ │ ├── code.php
│ │ ├── detail.php
│ │ ├── index.php
│ │ ├── test.php
│ │ ├── waline.css
│ │ └── waline.js
│ ├── layui
│ │ ├── css
│ │ │ ├── layui.css
│ │ │ ├── layui.mobile.css
│ │ │ └── modules
│ │ │ ├── code.css
│ │ │ ├── laydate
│ │ │ │ └── default
│ │ │ │ └── laydate.css
│ │ │ └── layer
│ │ │ └── default
│ │ │ ├── icon-ext.png
│ │ │ ├── icon.png
│ │ │ ├── layer.css
│ │ │ ├── loading-0.gif
│ │ │ ├── loading-1.gif
│ │ │ └── loading-2.gif
│ │ ├── font
│ │ │ ├── iconfont.eot
│ │ │ ├── iconfont.ttf
│ │ │ ├── iconfont.woff
│ │ │ └── iconfont.woff2
│ │ ├── lay
│ │ │ └── modules
│ │ │ ├── carousel.js
│ │ │ ├── code.js
│ │ │ ├── colorpicker.js
│ │ │ ├── element.js
│ │ │ ├── flow.js
│ │ │ ├── form.js
│ │ │ ├── jquery.js
│ │ │ ├── laydate.js
│ │ │ ├── layedit.js
│ │ │ ├── layer.js
│ │ │ ├── laypage.js
│ │ │ ├── laytpl.js
│ │ │ ├── mobile.js
│ │ │ ├── rate.js
│ │ │ ├── slider.js
│ │ │ ├── table.js
│ │ │ ├── transfer.js
│ │ │ ├── tree.js
│ │ │ ├── upload.js
│ │ │ └── util.js
│ │ ├── layui.all.js
│ │ ├── layui.config
│ │ ├── layui.js
│ │ └── layui.php
│ ├── parsedown
│ │ ├── parsedown.config
│ │ └── parsedown.php
│ └── shop
│ ├── shop.config
│ ├── shop.php
│ └── template
│ ├── config.php
│ └── index.php
├── favicon.ico
├── index.php
├── upload
└── 网站评论系统基于Waline开发的评论系统_claacms-comment-v1.3.zip
25 directories, 143 files
评论