Index.php 941 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. namespace app\api\controller;
  3. use app\api\model\CommodityModel;
  4. use app\common\controller\Api;
  5. use think\Db;
  6. /**
  7. * 首页接口
  8. */
  9. class Index extends Api
  10. {
  11. protected $noNeedLogin = ['*'];
  12. protected $noNeedRight = ['*'];
  13. /**
  14. * 首页轮播图
  15. *
  16. */
  17. public function Chart()
  18. {
  19. $data = Db::name('chart')->select();
  20. if ($data) {
  21. return $this->result('', $data, 200);
  22. } else {
  23. return $this->result('暂无图片',[],100);
  24. }
  25. }
  26. /**
  27. * 首页推荐商品
  28. *
  29. */
  30. public function indexRecommend () {
  31. $where = array(
  32. 'c_state_switch' => 1,
  33. 'c_recommodity' => 1,
  34. );
  35. $data = CommodityModel::where($where)->select();
  36. if ($data) {
  37. return $this->result('', $data, 200);
  38. } else {
  39. return $this->result('暂无商品',[],100);
  40. }
  41. }
  42. }