Expet.php 400 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace app\admin\controller;
  3. use app\admin\model\Admin;
  4. use app\admin\model\User;
  5. use app\common\controller\Backend;
  6. use app\common\model\Attachment;
  7. use fast\Date;
  8. use think\Db;
  9. class Expet extends Backend
  10. {
  11. /**
  12. * 查看
  13. */
  14. public function index()
  15. {
  16. $this->assignConfig('url_type', config('site.url_type'));
  17. return $this->view->fetch();
  18. }
  19. }