1234567891011121314151617181920212223242526272829 |
- <?php
- namespace app\portal\controller;
- use cmf\controller\HomeBaseController;
- class IndexController extends HomeBaseController
- {
-
- public function index()
- {
- return $this->fetch();
- }
-
- public function scanqr() {
- return $this->fetch();
- }
- }
|