Няма описание
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ArchivesFlag.php 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\admin\controller;
  14. use think\Db;
  15. use think\Page;
  16. use think\Cache;
  17. class ArchivesFlag extends Base
  18. {
  19. public function index()
  20. {
  21. $list = array();
  22. $keywords = input('keywords/s');
  23. $keywords = addslashes(trim($keywords));
  24. $condition = array();
  25. if (!empty($keywords)) {
  26. $condition['flag_name'] = array('LIKE', "%{$keywords}%");
  27. }
  28. $archivesflagM = Db::name('archives_flag');
  29. $count = $archivesflagM->where($condition)->count('id');// 查询满足要求的总记录数
  30. $Page = $pager = new Page($count, config('paginate.list_rows'));// 实例化分页类 传入总记录数和每页显示的记录数
  31. $list = $archivesflagM->where($condition)->order('sort_order asc, id asc')->limit($Page->firstRow.','.$Page->listRows)->select();
  32. $show = $Page->show();// 分页显示输出
  33. $this->assign('page',$show);// 赋值分页输出
  34. $this->assign('list',$list);// 赋值数据集
  35. $this->assign('pager',$pager);// 赋值分页对象
  36. return $this->fetch();
  37. }
  38. }