123456789101112131415161718192021222324252627282930313233 |
- <?php
- /**
- * Created by PhpStorm.
- * User: 中闽 < 1464674022@qq.com >
- * Date: 2019/12/5
- * Time: 17:44
- */
- namespace app\api\controller;
- use app\api\controller\base\Base;
- use app\common\model\Announcement;
- class Index extends Base
- {
- public function index()
- {
- $this->json_success('success', ['ip' => $this->request->ip()]);
- }
- //首页接口
- public function site()
- {
- $announcements = (new Announcement())->order('id desc')->limit(3)->select();
- return [
- "banners" => [],
- "boxs" => [],
- // "contact_us" => "",
- "announcements" => $announcements
- ];
- }
- }
|