FilmManage.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <?php
  2. namespace app\store\controller;
  3. use library\Controller;
  4. use think\Db;
  5. /**
  6. * 电影管理
  7. * Class FilmList
  8. * @package app\store\controller
  9. */
  10. class FilmManage extends Controller
  11. {
  12. protected $table = 'FilmList';
  13. /**
  14. * @auth true
  15. * @menu true
  16. * 电影列表
  17. */
  18. public function index(){
  19. $this->title = '电影列表';
  20. $query = $this->_query($this->table)->like('name');
  21. $query->order('status asc,sort desc,id desc')->page();
  22. }
  23. /**
  24. * @auth true
  25. * @menu true
  26. * 电影上架
  27. */
  28. public function up()
  29. {
  30. $this->_save($this->table, ['status' => '1']);
  31. }
  32. /**
  33. * @auth true
  34. * @menu true
  35. * 电影下架
  36. */
  37. public function down()
  38. {
  39. $this->_save($this->table, ['status' => '2']);
  40. }
  41. /**
  42. * @auth true
  43. * @menu true
  44. * 添加电影
  45. * @auth true
  46. * @menu true
  47. * @throws \think\Exception
  48. * @throws \think\db\exception\DataNotFoundException
  49. * @throws \think\db\exception\ModelNotFoundException
  50. * @throws \think\exception\DbException
  51. * @throws \think\exception\PDOException
  52. */
  53. public function add()
  54. {
  55. $this->title = '添加电影';
  56. $this->_form($this->table, 'form');
  57. }
  58. /**
  59. * 编辑电影
  60. * @auth true
  61. * @menu true
  62. * @throws \think\Exception
  63. * @throws \think\db\exception\DataNotFoundException
  64. * @throws \think\db\exception\ModelNotFoundException
  65. * @throws \think\exception\DbException
  66. * @throws \think\exception\PDOException
  67. */
  68. public function edit()
  69. {
  70. $this->title = '编辑电影';
  71. $this->_form($this->table, 'form');
  72. }
  73. }