Index.php 314 B

123456789101112131415161718192021
  1. <?php
  2. namespace app\register\controller;
  3. use crmeb\basic\BaseController;
  4. class Index extends BaseController
  5. {
  6. public function index()
  7. {
  8. return $this->fetch();
  9. }
  10. public function down()
  11. {
  12. $this->assign('url', $this->request->domain());
  13. return $this->fetch();
  14. }
  15. }