mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-05-09 23:28:02 +08:00
124 lines
3.4 KiB
Markdown
124 lines
3.4 KiB
Markdown
# 前端结构
|
||
|
||
OpenAuth.Mvc前端采用典型的mvc结构部署,其中:
|
||
|
||
* Views: 为静态资源页面,最终会渲染成html(实在不懂,百度Asp.Net Mvc中的View);
|
||
|
||
* wwwroot/js: 通用的js组件;
|
||
|
||
* wwwroot/userJs: 业务相关的js代码。通常一个csthml页面对应一个userJs中的js文件。如`Categories\Index.cshtml`对应`userJs\categories.js`
|
||
|
||
```shell
|
||
|-- OpenAuth.Mvc
|
||
|-- Views
|
||
| |-- _ViewStart.cshtml
|
||
| |-- Categories
|
||
| | |-- Index.cshtml
|
||
| |-- DataPrivilegeRules
|
||
| | |-- index.cshtml
|
||
| |-- Error
|
||
| | |-- Auth.cshtml
|
||
| |-- FlowInstances
|
||
| | |-- Detail.cshtml
|
||
| | |-- Disposed.cshtml
|
||
| | |-- Edit.cshtml
|
||
| | |-- Index.cshtml
|
||
| | |-- Verification.cshtml
|
||
| | |-- Wait.cshtml
|
||
| |-- FlowSchemes
|
||
| | |-- Design.cshtml
|
||
| | |-- Index.cshtml
|
||
| | |-- NodeInfo.cshtml
|
||
| | |-- Preview.cshtml
|
||
| |-- Forms
|
||
| | |-- Edit.cshtml
|
||
| | |-- index.cshtml
|
||
| | |-- Preview.cshtml
|
||
| |-- Home
|
||
| | |-- git.cshtml
|
||
| | |-- Index.cshtml
|
||
| | |-- Main.cshtml
|
||
| |-- Login
|
||
| | |-- Index.cshtml
|
||
| |-- ModuleManager
|
||
| | |-- Assign.cshtml
|
||
| | |-- Index.cshtml
|
||
| |-- OpenJobs
|
||
| | |-- index.cshtml
|
||
| |-- OrgManager
|
||
| | |-- Index.cshtml
|
||
| |-- Redirects
|
||
| | |-- IdentityAuth.cshtml
|
||
| |-- Resources
|
||
| | |-- Assign.cshtml
|
||
| | |-- Index.cshtml
|
||
| |-- RoleManager
|
||
| | |-- Assign.cshtml
|
||
| | |-- Index.cshtml
|
||
| |-- Shared
|
||
| | |-- _Layout.cshtml
|
||
| |-- SysLogs
|
||
| | |-- index.cshtml
|
||
| |-- SysMessages
|
||
| | |-- index.cshtml
|
||
| |-- UserManager
|
||
| | |-- ChangePassword.cshtml
|
||
| | |-- Index.cshtml
|
||
| | |-- Profile.cshtml
|
||
| |-- WmsInboundOrderTbls
|
||
| |-- index.cshtml
|
||
|-- wwwroot
|
||
|-- css
|
||
| |-- formpreview.css
|
||
| |-- images.css
|
||
| |-- login.css
|
||
| |-- main.css
|
||
| |-- treetable.css
|
||
|-- js
|
||
|-- bodyTab.js
|
||
|-- bootstrap.js
|
||
|-- cookie.js
|
||
|-- droptree.js
|
||
|-- dtree.js
|
||
|-- flowlayout.js
|
||
|-- iconPicker.js
|
||
|-- index.js
|
||
|-- leftNav.js
|
||
|-- openauth.js
|
||
|-- slimscroll.js
|
||
|-- utils.js
|
||
|-- vue.js
|
||
|-- ztree.js
|
||
|-- userJs
|
||
|-- assignModule.js
|
||
|-- assignResource.js
|
||
|-- assignRole.js
|
||
|-- categories.js
|
||
|-- changePwd.js
|
||
|-- dataprivilegerules.js
|
||
|-- flowinstanceDetail.js
|
||
|-- flowInstanceDisposed.js
|
||
|-- flowInstanceEdit.js
|
||
|-- flowInstances.js
|
||
|-- flowInstanceWait.js
|
||
|-- flowSchemeDesign.js
|
||
|-- flowSchemePreview.js
|
||
|-- flowSchemes.js
|
||
|-- formEdit.js
|
||
|-- forms.js
|
||
|-- login.js
|
||
|-- main.js
|
||
|-- modules.js
|
||
|-- nodeInfo.js
|
||
|-- openjobs.js
|
||
|-- orgs.js
|
||
|-- preview.js
|
||
|-- profile.js
|
||
|-- resources.js
|
||
|-- roles.js
|
||
|-- syslogs.js
|
||
|-- sysmessages.js
|
||
|-- users.js
|
||
|-- verification.js
|
||
|-- wmsinboundordertbls.js
|
||
``` |