1234567891011121314151617181920212223242526272829 |
- <?php
- // +—————————————————————————————————————————————————————————————————————
- // | Created by Yunbao
- // +—————————————————————————————————————————————————————————————————————
- // | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved.
- // +—————————————————————————————————————————————————————————————————————
- // | Author: https://gitee.com/yunbaokeji
- // +—————————————————————————————————————————————————————————————————————
- // | Date: 2022-02-17
- // +—————————————————————————————————————————————————————————————————————
- namespace app\portal\controller;
- use cmf\controller\HomeBaseController;
- class IndexController extends HomeBaseController
- {
- // 首页
- public function index()
- {
- return $this->fetch();
- }
-
- public function scanqr() {
- return $this->fetch();
- }
- }
|