1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace addons\unishop\controller;
- use app\common\controller\Api;
- class Ads extends Api
- {
- protected $noNeedLogin = ['index'];
- protected $noNeedRight = ['*'];
- public function _initialize()
- {
- parent::_initialize();
- }
-
- public function index()
- {
- $ads = \addons\unishop\model\Ads::where('status', 1)->cache('ads-index', 20)->select();
- $this->success('广告列表', $ads);
- }
- }
|