Support.php 565 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2017 https://www.sapixx.com All rights reserved.
  4. * @license Licensed (http://www.apache.org/licenses/LICENSE-2.0).
  5. * @author pillar<ltmn@qq.com>
  6. * 工单支持
  7. */
  8. namespace app\system\controller\passport;
  9. class Support extends Common{
  10. public function initialize() {
  11. parent::initialize();
  12. $this->assign('pathMaps', [['name'=>'服务中心','url'=>url("system/passport.support/index")]]);
  13. }
  14. /**
  15. * 帐号管理
  16. * @access public
  17. */
  18. public function index(){
  19. }
  20. }