Chart.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?PHP
  2. namespace app\admin\controller;
  3. use app\admin\controller\Base;
  4. use app\admin\model\ChartModel;
  5. use think\Db;
  6. class Chart extends Base
  7. {
  8. public function index()
  9. {
  10. if(request()->isAjax ()){
  11. $model=new ChartModel();
  12. $count=Db::name("chart")->count();
  13. $lists=$model->index();
  14. //halt($lists);
  15. return json(['code'=>220,'count'=>$count,'data'=>$lists]);
  16. }
  17. return $this->fetch("index");
  18. }
  19. public function add()
  20. {
  21. if(request()->isAjax()){
  22. $data=input("post.");
  23. $model=new ChartModel();
  24. $add=$model->add($data);
  25. return $add;
  26. }
  27. return $this->fetch("add");
  28. }
  29. public function edit()
  30. {
  31. if(request()->isPost()){
  32. $data=input("post.");
  33. //halt($data);
  34. $model=new ChartModel();
  35. $edit=$model->edit($data);
  36. return $edit;
  37. }
  38. $id=input("id");
  39. //echo $id;die;
  40. $data=Db::name("chart")->where("cid",$id)->find();
  41. return $this->fetch("edit",["data"=>$data]);
  42. }
  43. public function del()
  44. {
  45. $id=input("id");
  46. $del=Db::name("chart")->where("cid",$id)->delete();
  47. if($del){
  48. return json(["code"=>200,"msg"=>"删除成功"]);
  49. }else{
  50. return json(["code"=>200,"msg"=>"删除失败"]);
  51. }
  52. }
  53. }