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.

Ask.php 4.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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\user\controller;
  14. use think\Db;
  15. use think\Config;
  16. use think\Page;
  17. class Ask extends Base
  18. {
  19. public function _initialize()
  20. {
  21. parent::_initialize();
  22. $this->ask_db = Db::name('ask'); // 问题表
  23. $this->ask_answer_db = Db::name('ask_answer'); // 答案表
  24. $this->ask_type_db = Db::name('ask_type'); // 问题栏目分类表
  25. $functionLogic = new \app\common\logic\FunctionLogic;
  26. $functionLogic->validate_authorfile(2);
  27. }
  28. /**
  29. * 会员中心--我的问答--我的问题
  30. */
  31. public function ask_index()
  32. {
  33. // 提问问题查询列表
  34. /*查询字段*/
  35. $field = 'a.ask_id, a.ask_title, a.click, a.replies, a.add_time, a.is_review, b.type_name';
  36. /* END */
  37. /*查询条件*/
  38. $where = [
  39. 'a.status' => ['IN', [0, 1]],
  40. 'a.users_id' => $this->users_id,
  41. ];
  42. /* END */
  43. /* 分页 */
  44. $count = $this->ask_db->alias('a')->where($where)->count('ask_id');
  45. $pageObj = new Page($count, config('paginate.list_rows'));
  46. /* END */
  47. /*问题表数据(问题表+会员表+问题分类表)*/
  48. $result = $this->ask_db->field($field)
  49. ->alias('a')
  50. ->join('ask_type b', 'a.type_id = b.type_id', 'LEFT')
  51. ->where($where)
  52. ->order('a.add_time desc')
  53. ->limit($pageObj->firstRow . ',' . $pageObj->listRows)
  54. ->select();
  55. /* END */
  56. /*数据处理*/
  57. foreach ($result as $key => $value) {
  58. // 问题内容Url
  59. $result[$key]['AskUrl'] = url('home/Ask/details', ['ask_id' => $value['ask_id']]);
  60. }
  61. /* END */
  62. $show = $pageObj->show();// 分页显示输出
  63. $this->assign('page',$show);// 赋值分页输出
  64. $this->assign('list',$result);// 赋值数据集
  65. $this->assign('pager',$pageObj);// 赋值分页对象
  66. return $this->fetch('ask_index');
  67. }
  68. /**
  69. * 会员中心--我的问答--我的回复
  70. */
  71. public function answer_index()
  72. {
  73. // 回答问题查询列表
  74. /*查询字段*/
  75. $field = 'a.*, b.ask_title';
  76. /* END */
  77. /*查询条件*/
  78. $where = [
  79. 'a.users_id' =>$this->users_id,
  80. ];
  81. /* END */
  82. /* 分页 */
  83. $count = $this->ask_answer_db->alias('a')->where($where)->count('answer_id');
  84. $pageObj = new Page($count, config('paginate.list_rows'));
  85. /* END */
  86. /*问题回答人查询*/
  87. $result = $this->ask_answer_db->field($field)
  88. ->alias('a')
  89. ->join('ask b', 'a.ask_id = b.ask_id', 'LEFT')
  90. ->where($where)
  91. ->order('a.add_time desc')
  92. ->limit($pageObj->firstRow . ',' . $pageObj->listRows)
  93. ->select();
  94. /* END */
  95. /*数据处理*/
  96. foreach ($result as $key => $value) {
  97. // 问题内容Url
  98. $result[$key]['AskUrl'] = url('home/Ask/details', ['ask_id' => $value['ask_id']]);
  99. if (isset($value['answer_id']) && !empty($value['answer_id'])) {
  100. $preg = '/<img.*?src=[\"|\']?(.*?)[\"|\']?\s.*?>/i';
  101. $value['content'] = htmlspecialchars_decode($value['content']);
  102. $value['content'] = preg_replace($preg, '[图片]', $value['content']);
  103. $value['content'] = strip_tags($value['content']);
  104. $result[$key]['content'] = mb_strimwidth($value['content'], 0, 120, "...");
  105. }
  106. }
  107. /* END */
  108. $show = $pageObj->show();// 分页显示输出
  109. $this->assign('page',$show);// 赋值分页输出
  110. $this->assign('list',$result);// 赋值数据集
  111. $this->assign('pager',$pageObj);// 赋值分页对象
  112. return $this->fetch('answer_index');
  113. }
  114. }