Chart.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. }