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.
 
 
 
 
 
 

68 lines
1.9 KiB

  1. <?php
  2. namespace app\admin\controller;
  3. use app\common\controller\Backend;
  4. /**
  5. * 问答
  6. *
  7. * @icon fa fa-circle-o
  8. */
  9. class Qa extends Backend
  10. {
  11. /**
  12. * Qa模型对象
  13. * @var \app\admin\model\Qa
  14. */
  15. protected $model = null;
  16. public function _initialize()
  17. {
  18. parent::_initialize();
  19. $this->model = new \app\admin\model\Qa;
  20. }
  21. /**
  22. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  23. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  24. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  25. */
  26. /**
  27. * 查看
  28. */
  29. public function index()
  30. {
  31. //设置过滤方法
  32. $this->request->filter(['strip_tags']);
  33. if ($this->request->isAjax()) {
  34. //如果发送的来源是Selectpage,则转发到Selectpage
  35. if ($this->request->request('keyField')) {
  36. return $this->selectpage();
  37. }
  38. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  39. $total = $this->model
  40. ->where($where)
  41. ->order($sort, $order)
  42. ->count();
  43. $list = $this->model
  44. ->join("ww_unishop_product","ww_unishop_product.id=ww_qa.product_id")
  45. ->field("ww_qa.id,ww_qa.question,ww_qa.answer,ww_unishop_product.title")
  46. ->where($where)
  47. ->order($sort, $order)
  48. ->limit($offset, $limit)
  49. ->select();
  50. $list = collection($list)->toArray();
  51. $result = array("total" => $total, "rows" => $list);
  52. return json($result);
  53. }
  54. return $this->view->fetch();
  55. }
  56. }