Expet.php 590 B

1234567891011121314151617181920212223242526272829
  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 app\common\model\Config as ConfigModel;
  8. use fast\Date;
  9. use think\Db;
  10. class Expet extends Backend
  11. {
  12. /**
  13. * 查看
  14. */
  15. public function index()
  16. {
  17. $this->assignConfig('sim_sim_type', ConfigModel::getSimTypeList());
  18. $this->assign('sim_sim_type', ConfigModel::getSimTypeList());
  19. $this->assignConfig('url_type', config('site.url_type'));
  20. return $this->view->fetch();
  21. }
  22. }