2025-03-25 15:36:55 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace app\api\controller\backend;
|
|
|
|
|
|
|
|
use app\common\controller\Api;
|
|
|
|
use app\api\model\Admin as AdminModel;
|
|
|
|
use think\Db;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 考评时间控制器
|
|
|
|
*/
|
|
|
|
class EvaluationSchedule extends Api
|
|
|
|
{
|
|
|
|
protected $noNeedLogin = ['*'];
|
|
|
|
protected $noNeedRight = ['*'];
|
2025-04-03 15:50:14 +08:00
|
|
|
public function _initialize()
|
|
|
|
{
|
|
|
|
parent::_initialize();
|
|
|
|
$id = $this->request->header('Token');
|
|
|
|
if(!$id){
|
|
|
|
return $this->error('缺少参数');
|
|
|
|
}
|
|
|
|
$user = Db::name('user')->where('token', $id)->find();
|
|
|
|
if(!$user){
|
|
|
|
return $this->error('用户不存在','',99998);
|
|
|
|
}
|
|
|
|
}
|
2025-03-25 15:36:55 +08:00
|
|
|
/**
|
|
|
|
* 首页
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public function getHierarchicalData()
|
|
|
|
{
|
|
|
|
// 从数据库中获取所有数据
|
|
|
|
$data = Db::name('evaluation_schedule')->select();
|
|
|
|
return $this->success('请求成功',$data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*添加数据
|
|
|
|
*/
|
|
|
|
public function create()
|
|
|
|
{
|
|
|
|
$data = $this->request->post();
|
|
|
|
$data['createtime'] = date('Y-m-d H:i:s');
|
|
|
|
$data['updatetime'] = date('Y-m-d H:i:s');
|
|
|
|
$result = Db::name('evaluation_schedule')->strict(false)->insert($data);
|
|
|
|
if ($result) {
|
|
|
|
return $this->success('添加成功',$result);
|
|
|
|
} else {
|
|
|
|
return $this->error('添加失败',$result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 更新记录
|
|
|
|
*
|
|
|
|
* @param Request $request
|
|
|
|
* @param int $id
|
|
|
|
* @return \think\Response
|
|
|
|
*/
|
|
|
|
public function update()
|
|
|
|
{
|
|
|
|
$id = $this->request->post('id');
|
|
|
|
$data = $this->request->post();
|
|
|
|
$data['updatetime'] = date('Y-m-d H:i:s');
|
|
|
|
$result = Db::name('evaluation_schedule')->where('id', $id)->strict(false)->update($data);
|
|
|
|
if ($result) {
|
|
|
|
return $this->success('更新成功',$result);
|
|
|
|
} else {
|
|
|
|
return $this->error('更新失败',$result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 删除记录
|
|
|
|
*
|
|
|
|
* @param int $id
|
|
|
|
* @return \think\Response
|
|
|
|
*/
|
|
|
|
public function delete()
|
|
|
|
{
|
|
|
|
$id = $this->request->post('id');
|
|
|
|
if(!$id){
|
|
|
|
return $this->error('缺少参数');
|
|
|
|
}
|
|
|
|
$result = Db::name('evaluation_schedule')->delete($id);
|
|
|
|
if ($result) {
|
|
|
|
return $this->success('删除成功',$result);
|
|
|
|
} else {
|
|
|
|
return $this->error('删除失败',$result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|