12345678910111213141516171819202122 |
- <?php
- /**
- * @copyright Copyright (c) 2017 https://www.sapixx.com All rights reserved.
- * @license Licensed (http://www.apache.org/licenses/LICENSE-2.0).
- * @author pillar<ltmn@qq.com>
- * 文章内容
- */
- namespace app\ais\controller\home;
- use app\common\controller\Home;
- use app\ais\model\AisConfig;
- class Index extends Home{
- /**
- * 服务协议
- * @return void
- */
- public function index(){
- code($this->is_minapp);
- }
-
- }
|