You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
122 lines
3.2 KiB
122 lines
3.2 KiB
<?php
|
|
|
|
|
|
namespace app\admin\controller\vote;
|
|
|
|
|
|
use app\admin\logic\content\HelpCategoryLogic;
|
|
use app\admin\logic\content\HelpLogic;
|
|
use app\admin\logic\content\ResourceCategoryLogic;
|
|
use app\admin\logic\content\ResourceLogic;
|
|
use app\admin\logic\vote\VoteLogic;
|
|
use app\admin\logic\vote\VotePlayerLogic;
|
|
use app\admin\validate\content\HelpValidate;
|
|
use app\common\basics\AdminBase;
|
|
use app\common\server\JsonServer;
|
|
|
|
class VotePlayer extends AdminBase
|
|
{
|
|
/**
|
|
* @NOTES: 帮助分类列表
|
|
* @author: 张无忌
|
|
*/
|
|
public function lists()
|
|
{
|
|
if ($this->request->isAjax()) {
|
|
$get = $this->request->get();
|
|
$lists = VotePlayerLogic::lists($get);
|
|
return JsonServer::success("获取成功", $lists);
|
|
}
|
|
|
|
return view('', [
|
|
'votes' => VoteLogic::getVotes()
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @NOTES: 添加帮助类
|
|
* @author: 张无忌
|
|
*/
|
|
public function add()
|
|
{
|
|
if ($this->request->isAjax()) {
|
|
$post = $this->request->post();
|
|
$res = VotePlayerLogic::add($post);
|
|
if ($res === false) {
|
|
$error = VotePlayerLogic::getError() ?: '新增失败';
|
|
return JsonServer::error($error);
|
|
}
|
|
return JsonServer::success('新增成功');
|
|
}
|
|
|
|
|
|
return view('', [
|
|
'votes' => VoteLogic::getVotes()
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @NOTES: 编辑帮助分类
|
|
* @author: 张无忌
|
|
*/
|
|
public function edit()
|
|
{
|
|
if ($this->request->isAjax()) {
|
|
$post = $this->request->post();
|
|
$res = VotePlayerLogic::edit($post);
|
|
if ($res === false) {
|
|
$error = VotePlayerLogic::getError() ?: '编辑失败';
|
|
return JsonServer::error($error);
|
|
}
|
|
return JsonServer::success('编辑成功');
|
|
}
|
|
|
|
|
|
$id = $this->request->get('id');
|
|
$detail = VotePlayerLogic::detail($id);
|
|
|
|
return view('', [
|
|
'detail' => $detail,
|
|
'votes' => VoteLogic::getVotes()
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @NOTES: 删除帮助分类
|
|
* @author: 张无忌
|
|
*/
|
|
public function del()
|
|
{
|
|
if ($this->request->isAjax()) {
|
|
$id = $this->request->post('id');
|
|
$res = VotePlayerLogic::del($id);
|
|
if ($res === false) {
|
|
$error = VotePlayerLogic::getError() ?: '删除失败';
|
|
return JsonServer::error($error);
|
|
}
|
|
return JsonServer::success('删除成功');
|
|
}
|
|
|
|
return JsonServer::error('异常');
|
|
}
|
|
|
|
/**
|
|
* @Notes: 隐藏帮助分类
|
|
* @Author: 张无忌
|
|
*/
|
|
public function status()
|
|
{
|
|
if ($this->request->isAjax()) {
|
|
$id = $this->request->post('id');
|
|
$status = $this->request->post('status');
|
|
$res = VotePlayerLogic::status($id,$status);
|
|
if ($res === false) {
|
|
$error = VotePlayerLogic::getError() ?: '操作失败';
|
|
return JsonServer::error($error);
|
|
}
|
|
return JsonServer::success('操作成功');
|
|
}
|
|
|
|
return JsonServer::success('异常');
|
|
}
|
|
}
|