WorkListController.php 1.0 KB

1234567891011121314151617181920212223242526
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2013-2019 http://www.thinkcmf.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: 老猫 <thinkcmf@126.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\portal\controller;
  12. use app\portal\model\EnterpriseApplyJoinPlatformModel;
  13. use app\portal\model\UserinfoModel;
  14. use app\portal\model\WcCompayApplyModel;
  15. use cmf\controller\HomeBaseController;
  16. use app\user\model\UserModel;
  17. class WorkListController extends HomeBaseController {
  18. public function getList() {
  19. $m_u = new UserinfoModel();
  20. $list = $m_u->getlist();
  21. $list = $list->toArray();
  22. $this->assign('list', $list);
  23. }
  24. }