12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkAdmin
- // +----------------------------------------------------------------------
- // | 版权所有 2014~2022 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
- // +----------------------------------------------------------------------
- // | 官方网站: https://thinkadmin.top
- // +----------------------------------------------------------------------
- // | 开源协议 ( https://mit-license.org )
- // | 免费声明 ( https://thinkadmin.top/disclaimer )
- // +----------------------------------------------------------------------
- // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
- // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
- // +----------------------------------------------------------------------
- namespace app\admin\controller;
- use app\data\model\DataBestKnowledge;
- use app\data\model\DataClassification;
- use app\data\model\DataHotSearch;
- use app\data\model\DataPoolTalent;
- use app\data\model\DataZhicheng;
- use Carbon\Carbon;
- use think\admin\Controller;
- use app\data\model\SystemUser;
- use think\db\Query;
- /**
- * 热门搜索管理
- * Class Hotsearch
- * @package app\admin\controller
- */
- class Hotsearch extends Controller
- {
- /**
- * 热门搜索管理
- * @auth true
- * @menu true
- */
- public function index(){
- $this->title='热门搜索管理';
- DataHotSearch::mQuery()
- ->like('name')
- ->where('is_del',1)
- ->order('id','desc')
- ->layTable();
- }
- /**
- * 编辑
- * @auth true
- * @menu true
- */
- public function edit(){
- DataHotSearch::mForm('class_form');
- }
- /**
- * 添加
- * @auth true
- * @menu true
- */
- public function add(){
- DataHotSearch::mForm('class_form');
- }
- /**
- * 删除
- * @auth true
- * @menu true
- */
- public function del($id){
- DataHotSearch::whereIn('id',$id)->save([
- 'is_del'=>0,
- ]);
- $this->success('删除成功');
- }
- }
|