12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- namespace app\api\controller;
- use app\api\model\CommodityModel;
- use app\common\controller\Api;
- use think\Db;
- /**
- * 首页接口
- */
- class Index extends Api
- {
- protected $noNeedLogin = ['*'];
- protected $noNeedRight = ['*'];
- /**
- * 首页轮播图
- *
- */
- public function Chart()
- {
- $data = Db::name('chart')->select();
- if ($data) {
- return $this->result('', $data, 200);
- } else {
- return $this->result('暂无图片',[],100);
- }
- }
- /**
- * 首页推荐商品
- *
- */
- public function indexRecommend () {
- $where = array(
- 'c_state_switch' => 1,
- 'c_recommodity' => 1,
- );
- $data = CommodityModel::where($where)->select();
- if ($data) {
- return $this->result('', $data, 200);
- } else {
- return $this->result('暂无商品',[],100);
- }
- }
- }
|