No Description
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.

UsersScore.php 3.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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 UsersScore extends Base
  18. {
  19. /**
  20. * 构造方法
  21. */
  22. public function __construct(){
  23. parent::__construct();
  24. $functionLogic = new \app\common\logic\FunctionLogic;
  25. $functionLogic->validate_authorfile(1.5);
  26. $this->language_access(); // 多语言功能操作权限
  27. // 会员中心配置信息
  28. $this->UsersConfigData = getUsersConfigData('all');
  29. $this->assign('userConfig',$this->UsersConfigData);
  30. }
  31. public function index()
  32. {
  33. $list = array();
  34. $keywords = input('keywords/s');
  35. $condition = [
  36. 'type' => ['IN', [1, 2, 5, 8, 10]], // 1(提问)、2(回答)、5(签到)、8(消费赠送)、10(登录赠送积分)
  37. ];
  38. //时间检索条件
  39. $begin = strtotime(input('param.add_time_begin/s'));
  40. $end = input('param.add_time_end/s');
  41. !empty($end) && $end .= ' 23:59:59';
  42. $end = strtotime($end);
  43. // 时间检索
  44. if ($begin > 0 && $end > 0) {
  45. $condition['a.add_time'] = array('between',"$begin,$end");
  46. } else if ($begin > 0) {
  47. $condition['a.add_time'] = array('egt', $begin);
  48. } else if ($end > 0) {
  49. $condition['a.add_time'] = array('elt', $end);
  50. }
  51. if ($keywords) $condition['b.username'] = array('LIKE', "%{$keywords}%");
  52. $condition['a.lang'] = $this->admin_lang;
  53. $count = Db::name('users_score')->alias('a')->join('users b','a.users_id = b.users_id')->where($condition)->count('id');// 查询满足要求的总记录数
  54. $Page = $pager = new Page($count, config('paginate.list_rows'));// 实例化分页类 传入总记录数和每页显示的记录数
  55. $list = Db::name('users_score')
  56. ->alias('a')
  57. ->field('a.*,b.username,b.head_pic,b.nickname')
  58. ->join('users b','a.users_id = b.users_id')
  59. ->where($condition)
  60. ->order('id desc')
  61. ->limit($Page->firstRow . ',' . $Page->listRows)
  62. ->select();
  63. $show = $Page->show();// 分页显示输出
  64. $this->assign('page', $show);// 赋值分页输出
  65. $this->assign('list', $list);// 赋值数据集
  66. $this->assign('pager', $pager);// 赋值分页对象
  67. return $this->fetch();
  68. }
  69. /**
  70. * 积分设置
  71. */
  72. public function conf()
  73. {
  74. if (IS_POST) {
  75. $post = input('post.');
  76. $functionLogic = new \app\common\logic\FunctionLogic;
  77. $functionLogic->scoreConf($post);
  78. $this->success("操作成功", url('UsersScore/conf'));
  79. }
  80. $score = getUsersConfigData('score');
  81. $this->assign('score', $score);
  82. return $this->fetch();
  83. }
  84. }