Hotsearch.php 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2022 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: https://thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // | 免费声明 ( https://thinkadmin.top/disclaimer )
  11. // +----------------------------------------------------------------------
  12. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  13. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  14. // +----------------------------------------------------------------------
  15. namespace app\admin\controller;
  16. use app\data\model\DataBestKnowledge;
  17. use app\data\model\DataClassification;
  18. use app\data\model\DataHotSearch;
  19. use app\data\model\DataPoolTalent;
  20. use app\data\model\DataZhicheng;
  21. use Carbon\Carbon;
  22. use think\admin\Controller;
  23. use app\data\model\SystemUser;
  24. use think\db\Query;
  25. /**
  26. * 热门搜索管理
  27. * Class Hotsearch
  28. * @package app\admin\controller
  29. */
  30. class Hotsearch extends Controller
  31. {
  32. /**
  33. * 热门搜索管理
  34. * @auth true
  35. * @menu true
  36. */
  37. public function index(){
  38. $this->title='热门搜索管理';
  39. DataHotSearch::mQuery()
  40. ->like('name')
  41. ->where('is_del',1)
  42. ->order('id','desc')
  43. ->layTable();
  44. }
  45. /**
  46. * 编辑
  47. * @auth true
  48. * @menu true
  49. */
  50. public function edit(){
  51. DataHotSearch::mForm('class_form');
  52. }
  53. /**
  54. * 添加
  55. * @auth true
  56. * @menu true
  57. */
  58. public function add(){
  59. DataHotSearch::mForm('class_form');
  60. }
  61. /**
  62. * 删除
  63. * @auth true
  64. * @menu true
  65. */
  66. public function del($id){
  67. DataHotSearch::whereIn('id',$id)->save([
  68. 'is_del'=>0,
  69. ]);
  70. $this->success('删除成功');
  71. }
  72. }