修复后台评论审核功能
This commit is contained in:
parent
46eb8fdbdd
commit
b9e42c632a
@ -123,14 +123,26 @@ class Comment extends BaseController
|
|||||||
|
|
||||||
|
|
||||||
public function edit(){
|
public function edit(){
|
||||||
$param= get_params();
|
|
||||||
|
$param = get_params();
|
||||||
if (request()->isAjax()) {
|
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){
|
if ($res){
|
||||||
return to_assign();
|
return to_assign(0, '操作成功');
|
||||||
}else{
|
}else{
|
||||||
return to_assign(1, '操作失败,原因:'.$res);
|
return to_assign(1, '操作失败,原因:'.$res);
|
||||||
}
|
}
|
||||||
|
|
||||||
}else{
|
}else{
|
||||||
$id = isset($param['id']) ? $param['id'] : 0;
|
$id = isset($param['id']) ? $param['id'] : 0;
|
||||||
$detail = Db::table('fa_article_comment')->where('id',$id)->find();
|
$detail = Db::table('fa_article_comment')->where('id',$id)->find();
|
||||||
|
@ -36,8 +36,8 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<td class="layui-td-gray">状态<font>*</font></td>
|
<td class="layui-td-gray">状态<font>*</font></td>
|
||||||
<td colspan="6">
|
<td colspan="6">
|
||||||
<input type="radio" name="status" value="1" title="通过" {if $detail.status==1} checked {/if}>
|
<input type="radio" name="status" value="1" title="通过" checked>
|
||||||
<input type="radio" name="status" value="0" title="不通过" {if $detail.status==0} checked {/if}>
|
<input type="radio" name="status" value="2" title="不通过" >
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user