评论模块 1.0.0
通用评论系统
该模块是一款通用的评论系统,任意页面放入 {:widget('comment', ['type' => $type, 'id' => $id])}
即可加载评论系统。
$type string 自定义 如cms_article
$id int 主键
例如 CMS
文章添加评论:新增一个名称 cms_article_after_content
的碎片,内容为
<div class="container mt-3 mb-3">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 bg-white">
{:widget('comment', ['type' => 'cms_article', 'id' => $param['article']->id])}
</div>
</div>
</div>
可设置评论审核方式