News.php 855 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. namespace app\api\controller\zzz;
  3. use app\common\controller\Api;
  4. use think\Db;
  5. /**
  6. *
  7. */
  8. class News extends Api
  9. {
  10. protected $noNeedLogin = ['*'];
  11. protected $noNeedRight = ['*'];
  12. //分类
  13. public function typelist()
  14. {
  15. $list = Db::name('zzz_newstype')->field('id, name')->select();
  16. $this->success(1, $list);
  17. }
  18. public function newslist(){
  19. $type_id = input('type_id',0);
  20. $list = Db::name('zzz_news')->field('content',true)->where('type_id',$type_id)->autopage()->select();
  21. $list = list_domain_image($list,['image']);
  22. $this->success(1, $list);
  23. }
  24. public function newsinfo(){
  25. $id = input('id',0);
  26. $info = Db::name('zzz_news')->where('id',$id)->find();
  27. $info = info_domain_image($info,['image']);
  28. $this->success(1, $info);
  29. }
  30. }