tp6框架的销售统计系统

Department.php 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <?php
  2. namespace app\controller;
  3. use think\App;
  4. use think\facade\View;
  5. use app\model\Department as DepartmentModel;
  6. class Department extends Base
  7. {
  8. protected $model;
  9. public function __construct(App $app)
  10. {
  11. parent::__construct($app);
  12. $this->model = new DepartmentModel();
  13. }
  14. public function index()
  15. {
  16. $list = $this->model->select();
  17. return View::fetch('',['list'=>$list]);
  18. }
  19. public function info($id)
  20. {
  21. $data = $this->model->find($id);
  22. if ($this->request->isAjax()) {
  23. return json(['code'=>2, 'data'=>$data]);
  24. }
  25. }
  26. public function save()
  27. {
  28. if ($this->request->isPost()) {
  29. $param = $this->request->param();
  30. try {
  31. if ($param['id']) {
  32. $department = $this->model->find(intval($param['id']));
  33. } else {
  34. $department = new DepartmentModel();
  35. $department->create_time = time();
  36. }
  37. $department->name = $param['name'];
  38. $department->director = $param['director'];
  39. $department->save();
  40. } catch (\Exception $e) {
  41. return json(['code'=>0, 'msg'=>$e->getMessage()]);
  42. }
  43. return json(['code'=>2]);
  44. }
  45. }
  46. public function delete($id)
  47. {
  48. if ($this->request->isPost()) {
  49. if ($this->model->destroy($id)) {
  50. return json(['code'=>2]);
  51. } else {
  52. return json(['code'=>0]);
  53. }
  54. }
  55. }
  56. }