截流自动化的商城平台
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?php
  2. namespace app\api\logic;
  3. use app\common\basics\Logic;
  4. use app\common\model\content\Help;
  5. use app\common\model\content\HelpCategory;
  6. use app\common\server\JsonServer;
  7. use app\common\server\UrlServer;
  8. use think\facade\Db;
  9. class HelpLogic extends Logic
  10. {
  11. public static function category()
  12. {
  13. $where = [
  14. 'del' => 0,
  15. 'is_show' => 1
  16. ];
  17. $data = HelpCategory::field('id,name')->where($where)->select()->toArray();
  18. return $data;
  19. }
  20. public static function lists($get)
  21. {
  22. $where = [
  23. ['h.del', '=', 0],
  24. ['h.is_show', '=', 1],
  25. ['c.del', '=', 0],
  26. ['c.is_show', '=', 1],
  27. ];
  28. if(isset($get['cid']) && !empty($get['cid'])) {
  29. $where[] = ['cid', '=', $get['cid']];
  30. }
  31. $order = [
  32. 'sort' => 'asc',
  33. 'id' => 'desc'
  34. ];
  35. $model = new Help();
  36. $list = $model->alias('h')
  37. ->join('help_category c', 'c.id = h.cid')
  38. ->field(['h.id', 'h.title', 'h.intro', 'h.image', 'h.visit', 'h.likes', 'h.content', 'h.create_time'])
  39. ->where($where)
  40. ->order($order)
  41. ->page($get['page_no'], $get['page_size'])
  42. ->select()
  43. ->toArray();
  44. $count = $model->alias('h')->join('help_category c', 'c.id = h.cid')->where($where)->count();
  45. $more = is_more($count, $get['page_no'], $get['page_size']);
  46. $data = [
  47. 'list' => $list,
  48. 'page_no' => $get['page_no'],
  49. 'page_size' => $get['page_size'],
  50. 'count' => $count,
  51. 'more' => $more
  52. ];
  53. return $data;
  54. }
  55. public static function detail($id)
  56. {
  57. $help = Help::field('id,title,create_time,visit,content')->where('id', $id)->findOrEmpty();
  58. if($help->isEmpty()) {
  59. $help = [];
  60. }else{
  61. $help->visit = $help->visit + 1;
  62. $help->save();
  63. $help = $help->toArray();
  64. }
  65. $recommend_list = Db::name('help')
  66. ->where([['del','=','0'], ['id','<>',$id]])
  67. ->field('id,title,image,visit')
  68. ->order('visit desc')
  69. ->limit(5)
  70. ->select()
  71. ->toArray();
  72. foreach ($recommend_list as $key => $recommend){
  73. $recommend_list[$key]['image'] = empty($recommend['image']) ? "" : UrlServer::getFileUrl($recommend['image']);
  74. }
  75. $help['recommend_list'] = $recommend_list;
  76. return $help;
  77. }
  78. }