🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
目录结构如下 <pre><code class="javascript hljs"> ├── addons <span class="hljs-comment">//插件存放目录</span> ├── application <span class="hljs-comment">//应用目录</span> │&nbsp;&nbsp; ├── admin <span class="hljs-comment">//PC端应用模块</span> │&nbsp;&nbsp; ├── api <span class="hljs-comment">//API应用模块</span> │&nbsp;&nbsp; ├── common <span class="hljs-comment">//通用应用模块</span> │&nbsp;&nbsp; ├── extra <span class="hljs-comment">//扩展配置目录</span> │&nbsp;&nbsp; ├── index <span class="hljs-comment">//前台应用模块</span> |&nbsp;&nbsp; ├── mobile <span class="hljs-comment">//手机端H5应用模块</span> │&nbsp;&nbsp; ├── build.php │&nbsp;&nbsp; ├── command.php <span class="hljs-comment">//命令行配置</span> │&nbsp;&nbsp; ├── common.php <span class="hljs-comment">//通用辅助函数</span> │&nbsp;&nbsp; ├── config.php <span class="hljs-comment">//基础配置</span> │&nbsp;&nbsp; ├── database.php <span class="hljs-comment">//数据库配置</span> │&nbsp;&nbsp; ├── route.php <span class="hljs-comment">//路由配置</span> │&nbsp;&nbsp; ├── tags.php <span class="hljs-comment">//行为配置</span> ├── extend │&nbsp;&nbsp; └── fast <span class="hljs-comment">//FastAdmin扩展辅助类目录</span> ├── public │&nbsp;&nbsp; ├── assets │&nbsp;&nbsp; │&nbsp;&nbsp; ├── build <span class="hljs-comment">//打包JS、CSS的资源目录</span> │&nbsp;&nbsp; │&nbsp;&nbsp; ├── css <span class="hljs-comment">//CSS样式目录</span> │&nbsp;&nbsp; │&nbsp;&nbsp; ├── fonts <span class="hljs-comment">//字体目录</span> │&nbsp;&nbsp; │&nbsp;&nbsp; ├── img │&nbsp;&nbsp; │&nbsp;&nbsp; ├── js │&nbsp;&nbsp; │&nbsp;&nbsp; │&nbsp;&nbsp; ├── backend │&nbsp;&nbsp; │&nbsp;&nbsp; │&nbsp;&nbsp; └── frontend <span class="hljs-comment">//后台功能模块JS文件存放目录</span> │&nbsp;&nbsp; │&nbsp;&nbsp; ├── libs <span class="hljs-comment">//Bower资源包位置</span> │&nbsp;&nbsp; │&nbsp;&nbsp; └── less <span class="hljs-comment">//Less资源目录</span> │&nbsp;&nbsp; └── uploads <span class="hljs-comment">//上传文件目录</span> │&nbsp;&nbsp; ├── index.php <span class="hljs-comment">//应用入口主文件</span> │&nbsp;&nbsp; ├── install.php <span class="hljs-comment">//FastAdmin安装引导</span> │&nbsp;&nbsp; ├── admin.php <span class="hljs-comment">//后台入口文件,强烈建议修改</span> │&nbsp;&nbsp; ├── robots.txt │&nbsp;&nbsp; └── router.php ├── runtime <span class="hljs-comment">//缓存目录 </span> ├── thinkphp <span class="hljs-comment">//ThinkPHP5框架核心目录</span> ├── vendor <span class="hljs-comment">//Compposer资源包位置</span> ├── .bowerrc <span class="hljs-comment">//Bower目录配置文件</span> ├── bower.json <span class="hljs-comment">//Bower前端包配置</span> ├── build.php ├── composer.json <span class="hljs-comment">//Composer包配置</span> └── think </code></pre>