welcome.php 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: liu21st <liu21st@gmail.com>
  10. // +----------------------------------------------------------------------
  11. use think\facade\Route;
  12. //Route::view('/', 'welcome', [
  13. // 'version' => time(),
  14. // 'data' => [
  15. // 'description' => '基于ThinkPHP6.0和Layui的快速开发的后台管理系统',
  16. // 'system_description' => '框架主要使用ThinkPHP6.0 + layui,拥有完善的权限的管理模块以及敏捷的开发方式,让你开发起来更加的舒服。项目以及文档还在持续完善,请保持关注。',
  17. // ],
  18. // 'navbar' => [
  19. // [
  20. // 'name' => '首页',
  21. // 'active' => true,
  22. // 'href' => 'http://easyadmin.99php.cn',
  23. // 'target' => '_self',
  24. // ],
  25. // [
  26. // 'name' => '文档',
  27. // 'active' => false,
  28. // 'href' => 'http://easyadmin.99php.cn/docs',
  29. // 'target' => '_blank',
  30. // ],
  31. // [
  32. // 'name' => '演示',
  33. // 'active' => false,
  34. // 'href' => 'http://easyadmin.99php.cn/admindemo',
  35. // 'target' => '_blank',
  36. // ],
  37. // [
  38. // 'name' => 'QQ群',
  39. // 'active' => false,
  40. // 'href' => 'https://jq.qq.com/?_wv=1027&k=5IHJawE',
  41. // 'target' => '_blank',
  42. // ],
  43. // ],
  44. // 'feature' => [
  45. // [
  46. // 'name' => '内置权限管理',
  47. // 'description' => '内置基于auth的权限系统,使用注解方式自动更新权限节点,无需手动维护。',
  48. // ],
  49. // [
  50. // 'name' => '表格&表单的二次封装',
  51. // 'description' => '对layui的数据表格和表单进行二次封装,开发起来更舒服流畅。',
  52. // ],
  53. // [
  54. // 'name' => '上传&附件管理',
  55. // 'description' => '内置封装上传方法以及上传的附件管理,支持上传到本地以及OSS,可以在此基础上自己去扩展。',
  56. // ],
  57. // [
  58. // 'name' => '快速生成CURD模块',
  59. // 'description' => '完善的命令行开发模式, 一键生成控制器、模型、视图、JS等文件, 使开发速度快速提升。',
  60. // ],
  61. // [
  62. // 'name' => '公众号&小程序模块',
  63. // 'description' => '待开发。。。',
  64. // ],
  65. // [
  66. // 'name' => '插件管理模块',
  67. // 'description' => '待开发。。。',
  68. // ],
  69. // ],
  70. //]);