数据结构
12114
└─ 02-lms-seo_admin├─ README.md├─ app│ ├─ common│ │ └─ README.md│ ├─ constant│ │ ├─ README.md│ │ ├─ constant.js│ │ └─ error.js│ ├─ controller│ │ └─ README.md│ ├─ extend│ │ └─ helper.js│ ├─ public│ │ ├─ README.md│ │ ├─ articleViewer│ │ │ ├─ font-awesome.min.css│ │ │ ├─ fonts│ │ │ │ ├─ fa-brands-400.woff2│ │ │ │ ├─ fa-regular-400.ttf│ │ │ │ ├─ fa-regular-400.woff2│ │ │ │ ├─ fa-solid-900.ttf│ │ │ │ └─ fa-solid-900.woff2│ │ │ ├─ mdb.min.css│ │ │ ├─ mdb.min.js│ │ │ ├─ mdb.min.js.map│ │ │ └─ roboto-font.css│ │ └─ jsoneditor│ │ ├─ img│ │ │ └─ jsoneditor-icons.svg│ │ ├─ jsoneditor.css│ │ └─ jsoneditor.js│ ├─ schedule│ │ └─ clearResourceRequestLog.js│ ├─ service│ │ ├─ article.js│ │ ├─ articleParser.js│ │ ├─ category.js│ │ ├─ cloudDrive.js│ │ ├─ constantUi.js│ │ ├─ userManagement.js│ │ └─ xfPage.js│ └─ view│ ├─ component│ │ ├─ articleEditor│ │ │ └─ articleEditorCss.html│ │ ├─ articleViewer│ │ │ ├─ jianghuCommonCss.html│ │ │ ├─ jianghuDocCss.html│ │ │ ├─ jianghuDocDocsCss.html│ │ │ ├─ jianghuJs.html│ │ │ └─ jianghuUiCss.html│ │ ├─ calendarEvent.html│ │ ├─ calendarEventTile.html│ │ ├─ datetimePicker.html│ │ ├─ fileBrowser│ │ │ ├─ breadcrumbs.html│ │ │ ├─ createNewDirectory.html│ │ │ ├─ directoryList.html│ │ │ ├─ fileBrowser.html│ │ │ ├─ fileDetail.html│ │ │ ├─ fileUpload.html│ │ │ └─ markdownEditor.html│ │ ├─ markdown2html│ │ │ ├─ articleMarkdownEngine.html│ │ │ ├─ articleQueryTemplate.html│ │ │ ├─ jhTagEngine.html│ │ │ ├─ md2html.html│ │ │ ├─ pdfViewerTemplate.html│ │ │ └─ toggleTemplate.html│ │ ├─ vueFilters.html│ │ └─ vueJsonEditor.html│ ├─ page│ │ ├─ article.html│ │ ├─ articleEdit.html│ │ ├─ articleHistory.html│ │ ├─ articleList.html│ │ ├─ calendarManagement.html│ │ ├─ categoryList.html│ │ ├─ constantUiList.html│ │ ├─ materialList.html│ │ ├─ resetUserPassword.html│ │ ├─ userList.html│ │ ├─ xfPageEdit.html│ │ ├─ xfPageHistory.html│ │ └─ xfPageList.html│ └─ template│ └─ articleTemplate.html├─ app.js├─ config│ ├─ config.default.js│ ├─ config.env.example.js│ ├─ config.local.example.js│ ├─ config.local.js│ ├─ config.prod.cn.example.js│ ├─ config.prod.example.js│ └─ plugin.js├─ jsconfig.json├─ package-lock.json├─ package.json└─ sql├─ cn_init.sql├─ init.sql└─ mock.sql