修复后台评论审核功能

This commit is contained in:
monanxiao 2023-03-21 17:44:18 +08:00
parent 46eb8fdbdd
commit b9e42c632a
2 changed files with 17 additions and 5 deletions

View File

@ -123,14 +123,26 @@ class Comment extends BaseController
public function edit(){
$param= get_params();
$param = get_params();
if (request()->isAjax()) {
$res=Db::table('fa_article_comment')->where('id',$param['id'])->strict(false)->field(true)->update($param);
$data = [
'content' => $param['content'],
'reply' => $param['reply'],
'status' => $param['status'],
];
$res = Db::table('fa_article_comment')
->where('id', $param['id'])
->strict(false)
->update($data);
if ($res){
return to_assign();
return to_assign(0, '操作成功');
}else{
return to_assign(1, '操作失败,原因:'.$res);
}
}else{
$id = isset($param['id']) ? $param['id'] : 0;
$detail = Db::table('fa_article_comment')->where('id',$id)->find();

View File

@ -36,8 +36,8 @@
<tr>
<td class="layui-td-gray">状态<font>*</font></td>
<td colspan="6">
<input type="radio" name="status" value="1" title="通过" {if $detail.status==1} checked {/if}>
<input type="radio" name="status" value="0" title="不通过" {if $detail.status==0} checked {/if}>
<input type="radio" name="status" value="1" title="通过" checked>
<input type="radio" name="status" value="2" title="不通过" >
</td>
</tr>