在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → C# MVC+layui.js超轻量级框架(包含数据库)

C# MVC+layui.js超轻量级框架(包含数据库)

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:64.79M
  • 下载次数:89
  • 浏览次数:904
  • 发布时间:2021-11-18
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
c# mvc基础框架+前端layui.js+sqlsugar处理数据(支持sql server、mysql、sqlite、Oracle)。 用户,角色和页面配置齐全,容易上手,非常适合小微型项目开发。
【实例截图】
【核心代码】
16359647376189329256.rar
└── QSMP
├── db.sql
├── QSMP.Entity
│   ├── BaseTableEntity.cs
│   ├── bin
│   │   ├── Debug
│   │   │   ├── QSMP.Entity.dll
│   │   │   ├── QSMP.Entity.pdb
│   │   │   └── SqlSugar.dll
│   │   └── Release
│   ├── Domain
│   │   └── QSMPWebRequestException.cs
│   ├── Enum
│   │   └── ModuleType.cs
│   ├── obj
│   │   └── Debug
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── QSMP.Entity.csprojAssemblyReference.cache
│   │   ├── QSMP.Entity.csproj.CopyComplete
│   │   ├── QSMP.Entity.csproj.CoreCompileInputs.cache
│   │   ├── QSMP.Entity.csproj.FileListAbsolute.txt
│   │   ├── QSMP.Entity.dll
│   │   ├── QSMP.Entity.pdb
│   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   └── TempPE
│   ├── packages.config
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── QSMP.Entity.csproj
│   ├── Sys
│   │   ├── SysCommonFailing.cs
│   │   ├── SysItem.cs
│   │   ├── SysItemDetail.cs
│   │   ├── SysLog.cs
│   │   ├── SysOrganize.cs
│   │   ├── SysPermission.cs
│   │   ├── SysRoleAuthorize.cs
│   │   ├── SysRole.cs
│   │   ├── SysUser.cs
│   │   ├── SysUserLogOn.cs
│   │   └── SysUserRoleRelation.cs
│   └── TableEntity.cs
├── QSMP.Logic
│   ├── BaseGenericLogic.cs
│   ├── BaseLogic.cs
│   ├── bin
│   │   ├── Debug
│   │   │   ├── EPPlus.dll
│   │   │   ├── EPPlus.xml
│   │   │   ├── ICSharpCode.SharpZipLib.dll
│   │   │   ├── ICSharpCode.SharpZipLib.pdb
│   │   │   ├── ICSharpCode.SharpZipLib.xml
│   │   │   ├── Newtonsoft.Json.dll
│   │   │   ├── Newtonsoft.Json.xml
│   │   │   ├── NLog.dll
│   │   │   ├── NLog.xml
│   │   │   ├── NPOI.dll
│   │   │   ├── NPOI.OOXML.dll
│   │   │   ├── NPOI.OpenXml4Net.dll
│   │   │   ├── NPOI.OpenXmlFormats.dll
│   │   │   ├── QSMP.Entity.dll
│   │   │   ├── QSMP.Entity.pdb
│   │   │   ├── QSMP.Logic.dll
│   │   │   ├── QSMP.Logic.pdb
│   │   │   ├── QSMP.Utility.dll
│   │   │   ├── QSMP.Utility.dll.config
│   │   │   ├── QSMP.Utility.pdb
│   │   │   ├── ServiceStack.Common.dll
│   │   │   ├── ServiceStack.Common.xml
│   │   │   ├── ServiceStack.Interfaces.dll
│   │   │   ├── ServiceStack.Interfaces.xml
│   │   │   ├── ServiceStack.Redis.dll
│   │   │   ├── ServiceStack.Redis.xml
│   │   │   ├── ServiceStack.Text.dll
│   │   │   ├── ServiceStack.Text.xml
│   │   │   ├── SqlSugar.dll
│   │   │   ├── System.Buffers.dll
│   │   │   ├── System.Buffers.xml
│   │   │   ├── System.Memory.dll
│   │   │   ├── System.Memory.xml
│   │   │   ├── System.Runtime.CompilerServices.Unsafe.dll
│   │   │   └── System.Runtime.CompilerServices.Unsafe.xml
│   │   └── Release
│   ├── ExtendMethods.cs
│   ├── GenericLogic.cs
│   ├── obj
│   │   └── Debug
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── QSMP.Logic.csprojAssemblyReference.cache
│   │   ├── QSMP.Logic.csproj.CopyComplete
│   │   ├── QSMP.Logic.csproj.CoreCompileInputs.cache
│   │   ├── QSMP.Logic.csproj.FileListAbsolute.txt
│   │   ├── QSMP.Logic.dll
│   │   ├── QSMP.Logic.pdb
│   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   └── TempPE
│   ├── packages.config
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── QSMP.Logic.csproj
│   └── Sys
│   ├── SysCommonFailingLogic.cs
│   ├── SysItemLogic.cs
│   ├── SysItemsDetailLogic.cs
│   ├── SysLogLogic.cs
│   ├── SysOrganizeLogic.cs
│   ├── SysPermissionLogic.cs
│   ├── SysRoleAuthorizeLogic.cs
│   ├── SysRoleLogic.cs
│   ├── SysUserLogic.cs
│   ├── SysUserLogOnLogic.cs
│   └── SysUserRoleRelationLogic.cs
├── QSMP.sln
├── QSMP.Utility
│   ├── app.config
│   ├── bin
│   │   └── Debug
│   │   ├── BouncyCastle.Crypto.dll
│   │   ├── BouncyCastle.Crypto.xml
│   │   ├── EPPlus.dll
│   │   ├── EPPlus.xml
│   │   ├── Google.Protobuf.dll
│   │   ├── Google.Protobuf.pdb
│   │   ├── Google.Protobuf.xml
│   │   ├── ICSharpCode.SharpZipLib.dll
│   │   ├── ICSharpCode.SharpZipLib.pdb
│   │   ├── ICSharpCode.SharpZipLib.xml
│   │   ├── Newtonsoft.Json.dll
│   │   ├── Newtonsoft.Json.xml
│   │   ├── NLog.dll
│   │   ├── NLog.xml
│   │   ├── NPOI.dll
│   │   ├── NPOI.OOXML.dll
│   │   ├── NPOI.OpenXml4Net.dll
│   │   ├── NPOI.OpenXmlFormats.dll
│   │   ├── Oracle.ManagedDataAccess.dll
│   │   ├── QSMP.Utility.dll
│   │   ├── QSMP.Utility.dll.config
│   │   ├── QSMP.Utility.pdb
│   │   ├── ServiceStack.Common.dll
│   │   ├── ServiceStack.Common.xml
│   │   ├── ServiceStack.Interfaces.dll
│   │   ├── ServiceStack.Interfaces.xml
│   │   ├── ServiceStack.Redis.dll
│   │   ├── ServiceStack.Redis.xml
│   │   ├── ServiceStack.Text.dll
│   │   ├── ServiceStack.Text.xml
│   │   ├── SqlSugar.dll
│   │   ├── System.Buffers.dll
│   │   ├── System.Buffers.xml
│   │   ├── System.Memory.dll
│   │   ├── System.Memory.xml
│   │   ├── System.Runtime.CompilerServices.Unsafe.dll
│   │   └── System.Runtime.CompilerServices.Unsafe.xml
│   ├── ConstUtils.cs
│   ├── Excel
│   │   ├── ExcelAttributeUndefinedException.cs
│   │   ├── ExcelElementAttribute.cs
│   │   ├── ExcelFileAttribute.cs
│   │   ├── ExcelHelper.cs
│   │   ├── ExcelKeyValueNullException.cs
│   │   └── ExcelSheetAttribute.cs
│   ├── Extension
│   │   ├── DataCache
│   │   │   ├── HttpRuntimeCache .cs
│   │   │   └── RedisCache.cs
│   │   ├── ExtDateTime.cs
│   │   ├── ExtExcel.cs
│   │   ├── ExtString.cs
│   │   ├── FileExt.cs
│   │   └── SqlSugar
│   │   ├── ExtMethods.cs
│   │   └── SqlMath.cs
│   ├── Files
│   │   ├── Configs.cs
│   │   ├── ExcelUtils.cs
│   │   ├── FileUtil.cs
│   │   ├── ImageUtils.cs
│   │   ├── NPOIHelper.cs
│   │   ├── XmlUtils.cs
│   │   └── ZipUtils.cs
│   ├── Format
│   │   ├── ConvertHelper.cs
│   │   ├── EnumHelper.cs
│   │   └── JsonHelper.cs
│   ├── FrameworkLog
│   │   └── LogHelper.cs
│   ├── lib
│   │   └── Oracle.ManagedDataAccess.dll
│   ├── Mail
│   │   └── MailUtils.cs
│   ├── Network
│   │   ├── HttpDownloadFileHelper.cs
│   │   ├── HttpMethods.cs
│   │   ├── Net.cs
│   │   └── SocketHelper.cs
│   ├── obj
│   │   └── Debug
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── QSMP.Utility.csprojAssemblyReference.cache
│   │   ├── QSMP.Utility.csproj.CopyComplete
│   │   ├── QSMP.Utility.csproj.CoreCompileInputs.cache
│   │   ├── QSMP.Utility.csproj.FileListAbsolute.txt
│   │   ├── QSMP.Utility.dll
│   │   ├── QSMP.Utility.pdb
│   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   └── TempPE
│   ├── Operator
│   │   └── OperatorProvider.cs
│   ├── packages.config
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── QSMP.Utility.csproj
│   ├── ResponseModels
│   │   ├── AjaxResult.cs
│   │   ├── JsonResponse.cs
│   │   ├── LayNavbar.cs
│   │   ├── LayPadding.cs
│   │   ├── LayPaddingDataTable.cs
│   │   ├── TreeSelect.cs
│   │   └── ZTreeNode.cs
│   ├── Security
│   │   ├── AESHelper.cs
│   │   ├── Encrypt.cs
│   │   └── VerifyCode.cs
│   └── Web
│   ├── Keys.cs
│   └── WebHelper.cs
├── QSMP.VueApp
│   ├── babel.config.js
│   ├── package.json
│   ├── package-lock.json
│   ├── public
│   │   ├── favicon.ico
│   │   └── index.html
│   ├── README.md
│   ├── src
│   │   ├── App.vue
│   │   ├── assets
│   │   │   └── logo.png
│   │   ├── components
│   │   │   ├── BaseTableContainer.vue
│   │   │   ├── FileUploader.vue
│   │   │   └── HelloWorld.vue
│   │   ├── main.js
│   │   ├── plugins
│   │   │   ├── axios.js
│   │   │   └── element.js
│   │   ├── router
│   │   │   └── index.js
│   │   ├── store
│   │   │   └── index.js
│   │   ├── styles.scss
│   │   └── views
│   │   ├── About.vue
│   │   └── Home.vue
│   └── vue.config.js
└── QSMP.Web
├── App_Data
├── App_Start
│   ├── BundleConfig.cs
│   ├── FilterConfig.cs
│   ├── RouteConfig.cs
│   └── WebApiConfig.cs
├── Areas
│   └── System
│   ├── Controllers
│   │   ├── CommonFailingController.cs
│   │   ├── DemoController.cs
│   │   ├── ItemController.cs
│   │   ├── ItemsDetailController.cs
│   │   ├── LogController.cs
│   │   ├── OrganizeController.cs
│   │   ├── PermissionController.cs
│   │   ├── RoleAuthorizeController.cs
│   │   ├── RoleController.cs
│   │   ├── UserController.cs
│   │   └── UserLogOnController.cs
│   ├── Models
│   ├── SystemAreaRegistration.cs
│   └── Views
│   ├── CommonFailing
│   │   ├── Detail.cshtml
│   │   ├── Form.cshtml
│   │   └── Index.cshtml
│   ├── Item
│   │   ├── Detail.cshtml
│   │   ├── Form.cshtml
│   │   └── Index.cshtml
│   ├── ItemsDetail
│   │   ├── Detail.cshtml
│   │   ├── Form.cshtml
│   │   └── Index.cshtml
│   ├── Log
│   ├── Organize
│   │   ├── Detail.cshtml
│   │   ├── Form.cshtml
│   │   └── Index.cshtml
│   ├── Permission
│   │   ├── Detail.cshtml
│   │   ├── Form.cshtml
│   │   ├── Icon.cshtml
│   │   └── Index.cshtml
│   ├── Role
│   │   ├── Detail.cshtml
│   │   ├── Form.cshtml
│   │   └── Index.cshtml
│   ├── RoleAuthorize
│   │   └── Index.cshtml
│   ├── Shared
│   │   └── _Layout.cshtml
│   ├── User
│   │   ├── Detail.cshtml
│   │   ├── Form.cshtml
│   │   └── Index.cshtml
│   └── Web.config
├── bin
│   ├── Antlr3.Runtime.dll
│   ├── Antlr3.Runtime.pdb
│   ├── EPPlus.dll
│   ├── EPPlus.xml
│   ├── ICSharpCode.SharpZipLib.dll
│   ├── ICSharpCode.SharpZipLib.pdb
│   ├── ICSharpCode.SharpZipLib.xml
│   ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll
│   ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml
│   ├── Microsoft.Web.Infrastructure.dll
│   ├── Newtonsoft.Json.dll
│   ├── Newtonsoft.Json.xml
│   ├── NLog.dll
│   ├── NLog.xml
│   ├── NPOI.dll
│   ├── NPOI.OOXML.dll
│   ├── NPOI.OpenXml4Net.dll
│   ├── NPOI.OpenXmlFormats.dll
│   ├── QSMP.Entity.dll
│   ├── QSMP.Entity.pdb
│   ├── QSMP.Logic.dll
│   ├── QSMP.Logic.pdb
│   ├── QSMP.Utility.dll
│   ├── QSMP.Utility.dll.config
│   ├── QSMP.Utility.pdb
│   ├── QSMP.Web.dll
│   ├── QSMP.Web.dll.config
│   ├── QSMP.Web.pdb
│   ├── roslyn
│   │   ├── csc.exe
│   │   ├── csc.exe.config
│   │   ├── csc.rsp
│   │   ├── csi.exe
│   │   ├── csi.rsp
│   │   ├── Microsoft.Build.Tasks.CodeAnalysis.dll
│   │   ├── Microsoft.CodeAnalysis.CSharp.dll
│   │   ├── Microsoft.CodeAnalysis.CSharp.Scripting.dll
│   │   ├── Microsoft.CodeAnalysis.dll
│   │   ├── Microsoft.CodeAnalysis.Scripting.dll
│   │   ├── Microsoft.CodeAnalysis.VisualBasic.dll
│   │   ├── Microsoft.CSharp.Core.targets
│   │   ├── Microsoft.DiaSymReader.Native.amd64.dll
│   │   ├── Microsoft.DiaSymReader.Native.x86.dll
│   │   ├── Microsoft.VisualBasic.Core.targets
│   │   ├── System.AppContext.dll
│   │   ├── System.Collections.Immutable.dll
│   │   ├── System.Diagnostics.StackTrace.dll
│   │   ├── System.IO.FileSystem.dll
│   │   ├── System.IO.FileSystem.Primitives.dll
│   │   ├── System.Reflection.Metadata.dll
│   │   ├── vbc.exe
│   │   ├── vbc.exe.config
│   │   ├── vbc.rsp
│   │   ├── VBCSCompiler.exe
│   │   └── VBCSCompiler.exe.config
│   ├── ServiceStack.Common.dll
│   ├── ServiceStack.Common.xml
│   ├── ServiceStack.Interfaces.dll
│   ├── ServiceStack.Interfaces.xml
│   ├── ServiceStack.Redis.dll
│   ├── ServiceStack.Redis.xml
│   ├── ServiceStack.Text.dll
│   ├── ServiceStack.Text.xml
│   ├── SqlSugar.dll
│   ├── System.Buffers.dll
│   ├── System.Buffers.xml
│   ├── System.Memory.dll
│   ├── System.Memory.xml
│   ├── System.Net.Http.Formatting.dll
│   ├── System.Net.Http.Formatting.xml
│   ├── System.Runtime.CompilerServices.Unsafe.dll
│   ├── System.Runtime.CompilerServices.Unsafe.xml
│   ├── System.Web.Helpers.dll
│   ├── System.Web.Helpers.xml
│   ├── System.Web.Http.dll
│   ├── System.Web.Http.WebHost.dll
│   ├── System.Web.Http.WebHost.xml
│   ├── System.Web.Http.xml
│   ├── System.Web.Mvc.dll
│   ├── System.Web.Mvc.xml
│   ├── System.Web.Optimization.dll
│   ├── System.Web.Optimization.xml
│   ├── System.Web.Razor.dll
│   ├── System.Web.Razor.xml
│   ├── System.Web.WebPages.Deployment.dll
│   ├── System.Web.WebPages.Deployment.xml
│   ├── System.Web.WebPages.dll
│   ├── System.Web.WebPages.Razor.dll
│   ├── System.Web.WebPages.Razor.xml
│   ├── System.Web.WebPages.xml
│   ├── WebGrease.dll
│   └── zh-Hans
│   ├── System.Web.Helpers.resources.dll
│   ├── System.Web.Mvc.resources.dll
│   ├── System.Web.Optimization.resources.dll
│   ├── System.Web.Razor.resources.dll
│   ├── System.Web.WebPages.Deployment.resources.dll
│   ├── System.Web.WebPages.Razor.resources.dll
│   └── System.Web.WebPages.resources.dll
├── Content
│   ├── bootstrap.css
│   ├── bootstrap.css.map
│   ├── bootstrap.min.css
│   ├── bootstrap.min.css.map
│   ├── bootstrap-theme.css
│   ├── bootstrap-theme.css.map
│   ├── bootstrap-theme.min.css
│   ├── bootstrap-theme.min.css.map
│   ├── font-awesome
│   │   ├── css
│   │   │   ├── font-awesome.css
│   │   │   └── font-awesome.min.css
│   │   └── fonts
│   │   ├── FontAwesome.otf
│   │   ├── fontawesome-webfont.eot
│   │   ├── fontawesome-webfont.svg
│   │   ├── fontawesome-webfont.ttf
│   │   ├── fontawesome-webfont.woff
│   │   └── fontawesome-webfont.woff2
│   ├── framework
│   │   ├── css
│   │   │   ├── animate.css
│   │   │   ├── console.css
│   │   │   ├── index.css
│   │   │   └── login.css
│   │   ├── images
│   │   │   ├── avatar.png
│   │   │   ├── background.png
│   │   │   ├── error.jpg
│   │   │   ├── head.png
│   │   │   ├── left.png
│   │   │   ├── login-bak.jpg
│   │   │   ├── login.jpg
│   │   │   ├── logo.jpg
│   │   │   ├── logo.png
│   │   │   ├── pwd-1.png
│   │   │   └── pwd-2.png
│   │   └── js
│   │   ├── canvas.min.js
│   │   ├── common.js
│   │   ├── donate.js
│   │   ├── global.js
│   │   ├── navbar.js
│   │   ├── paging.js
│   │   └── tab.js
│   ├── jquery
│   │   ├── jquery-1.9.1.min.js
│   │   ├── jquery.date.js
│   │   ├── jquery.md5.js
│   │   └── jquery.min.js
│   ├── layui
│   │   ├── css
│   │   │   ├── layui.css
│   │   │   ├── layui.mobile.css
│   │   │   └── modules
│   │   │   ├── code.css
│   │   │   ├── laydate
│   │   │   │   └── default
│   │   │   │   ├── font.css
│   │   │   │   └── laydate.css
│   │   │   └── layer
│   │   │   └── default
│   │   │   ├── icon-ext.png
│   │   │   ├── icon.png
│   │   │   ├── layer.css
│   │   │   ├── loading-0.gif
│   │   │   ├── loading-1.gif
│   │   │   └── loading-2.gif
│   │   ├── font
│   │   │   ├── iconfont.eot
│   │   │   ├── iconfont.svg
│   │   │   ├── iconfont.ttf
│   │   │   ├── iconfont.woff
│   │   │   └── iconfont.woff2
│   │   ├── images
│   │   │   └── face
│   │   │   ├── 0.gif
│   │   │   ├── 10.gif
│   │   │   ├── 11.gif
│   │   │   ├── 12.gif
│   │   │   ├── 13.gif
│   │   │   ├── 14.gif
│   │   │   ├── 15.gif
│   │   │   ├── 16.gif
│   │   │   ├── 17.gif
│   │   │   ├── 18.gif
│   │   │   ├── 19.gif
│   │   │   ├── 1.gif
│   │   │   ├── 20.gif
│   │   │   ├── 21.gif
│   │   │   ├── 22.gif
│   │   │   ├── 23.gif
│   │   │   ├── 24.gif
│   │   │   ├── 25.gif
│   │   │   ├── 26.gif
│   │   │   ├── 27.gif
│   │   │   ├── 28.gif
│   │   │   ├── 29.gif
│   │   │   ├── 2.gif
│   │   │   ├── 30.gif
│   │   │   ├── 31.gif
│   │   │   ├── 32.gif
│   │   │   ├── 33.gif
│   │   │   ├── 34.gif
│   │   │   ├── 35.gif
│   │   │   ├── 36.gif
│   │   │   ├── 37.gif
│   │   │   ├── 38.gif
│   │   │   ├── 39.gif
│   │   │   ├── 3.gif
│   │   │   ├── 40.gif
│   │   │   ├── 41.gif
│   │   │   ├── 42.gif
│   │   │   ├── 43.gif
│   │   │   ├── 44.gif
│   │   │   ├── 45.gif
│   │   │   ├── 46.gif
│   │   │   ├── 47.gif
│   │   │   ├── 48.gif
│   │   │   ├── 49.gif
│   │   │   ├── 4.gif
│   │   │   ├── 50.gif
│   │   │   ├── 51.gif
│   │   │   ├── 52.gif
│   │   │   ├── 53.gif
│   │   │   ├── 54.gif
│   │   │   ├── 55.gif
│   │   │   ├── 56.gif
│   │   │   ├── 57.gif
│   │   │   ├── 58.gif
│   │   │   ├── 59.gif
│   │   │   ├── 5.gif
│   │   │   ├── 60.gif
│   │   │   ├── 61.gif
│   │   │   ├── 62.gif
│   │   │   ├── 63.gif
│   │   │   ├── 64.gif
│   │   │   ├── 65.gif
│   │   │   ├── 66.gif
│   │   │   ├── 67.gif
│   │   │   ├── 68.gif
│   │   │   ├── 69.gif
│   │   │   ├── 6.gif
│   │   │   ├── 70.gif
│   │   │   ├── 71.gif
│   │   │   ├── 7.gif
│   │   │   ├── 8.gif
│   │   │   └── 9.gif
│   │   ├── lay
│   │   │   ├── all.js
│   │   │   ├── all-mobile.js
│   │   │   └── modules
│   │   │   ├── carousel.js
│   │   │   ├── code.js
│   │   │   ├── colorpicker.js
│   │   │   ├── element.js
│   │   │   ├── flow.js
│   │   │   ├── form.js
│   │   │   ├── jquery.js
│   │   │   ├── laydate.js
│   │   │   ├── layedit.js
│   │   │   ├── layer.js
│   │   │   ├── laypage.js
│   │   │   ├── laytpl.js
│   │   │   ├── mobile
│   │   │   │   ├── layer-mobile.js
│   │   │   │   ├── layim-mobile-open.js
│   │   │   │   └── zepto.js
│   │   │   ├── mobile.js
│   │   │   ├── rate.js
│   │   │   ├── slider.js
│   │   │   ├── table.js
│   │   │   ├── transfer.js
│   │   │   ├── tree.js
│   │   │   ├── upload.js
│   │   │   └── util.js
│   │   └── layui.js
│   ├── pace
│   │   ├── dataurl.css
│   │   └── pace.min.js
│   ├── select2
│   │   ├── css
│   │   │   ├── select2.css
│   │   │   └── select2.min.css
│   │   └── js
│   │   ├── select2.full.js
│   │   ├── select2.full.min.js
│   │   ├── select2.js
│   │   ├── select2.min.js
│   │   └── zh-CN.js
│   ├── Site.css
│   ├── static
│   │   └── assets
│   │   ├── css
│   │   │   ├── 404.css
│   │   │   └── 404.min.css
│   │   ├── img
│   │   │   ├── 404-dark.png
│   │   │   ├── 404-light.gif
│   │   │   ├── ajax-loader.gif
│   │   │   ├── bg_btn.png
│   │   │   ├── btn.png
│   │   │   └── favicons
│   │   │   ├── favicon114x114.png
│   │   │   ├── favicon144x144.png
│   │   │   ├── favicon57x57.png
│   │   │   ├── favicon72x72.png
│   │   │   └── favicon.png
│   │   └── js
│   │   ├── 404.js
│   │   ├── 404.min.js
│   │   └── modernizr.custom.js
│   └── ztree
│   ├── css
│   │   ├── awesomeStyle
│   │   │   ├── awesome.css
│   │   │   ├── awesome.less
│   │   │   ├── fa.less
│   │   │   └── img
│   │   │   └── loading.gif
│   │   ├── demo.css
│   │   ├── metroStyle
│   │   │   ├── img
│   │   │   │   ├── line_conn.png
│   │   │   │   ├── loading.gif
│   │   │   │   ├── metro.gif
│   │   │   │   └── metro.png
│   │   │   └── metroStyle.css
│   │   └── zTreeStyle
│   │   ├── img
│   │   │   ├── diy
│   │   │   │   ├── 1_close.png
│   │   │   │   ├── 1_open.png
│   │   │   │   ├── 2.png
│   │   │   │   ├── 3.png
│   │   │   │   ├── 4.png
│   │   │   │   ├── 5.png
│   │   │   │   ├── 6.png
│   │   │   │   ├── 7.png
│   │   │   │   ├── 8.png
│   │   │   │   └── 9.png
│   │   │   ├── line_conn.gif
│   │   │   ├── loading.gif
│   │   │   ├── zTreeStandard.gif
│   │   │   └── zTreeStandard.png
│   │   └── zTreeStyle.css
│   └── js
│   ├── jquery.ztree.all.js
│   └── jquery.ztree.all.min.js
├── Controllers
│   ├── AccountController.cs
│   ├── BaseController.cs
│   ├── ErrorPageController.cs
│   ├── HomeController.cs
│   ├── RouterGuardController.cs
│   └── TestController.cs
├── favicon.ico
├── Filters
│   ├── AuthorizeCheckedAttribute.cs
│   ├── AuthorizeCheckedJsonAttribute.cs
│   ├── ErrorCheckedAttribute.cs
│   ├── JsonResponseErrorCheckedAttribute.cs
│   ├── LoginCheckedAttribute.cs
│   └── TestFilter.cs
├── fonts
│   ├── glyphicons-halflings-regular.eot
│   ├── glyphicons-halflings-regular.svg
│   ├── glyphicons-halflings-regular.ttf
│   ├── glyphicons-halflings-regular.woff
│   └── glyphicons-halflings-regular.woff2
├── Global.asax
├── Global.asax.cs
├── Models
│   └── MenuViewModel.cs
├── obj
│   └── Debug
│   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   ├── QSMP.Web.csprojAssemblyReference.cache
│   ├── QSMP.Web.csproj.CopyComplete
│   ├── QSMP.Web.csproj.CoreCompileInputs.cache
│   ├── QSMP.Web.csproj.FileListAbsolute.txt
│   ├── QSMP.Web.dll
│   ├── QSMP.Web.pdb
│   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   └── TempPE
├── packages.config
├── Properties
│   └── AssemblyInfo.cs
├── QSMP.Web.csproj
├── QSMP.Web.csproj.user
├── Scripts
│   ├── bootstrap.js
│   ├── bootstrap.min.js
│   ├── jquery-3.3.1.intellisense.js
│   ├── jquery-3.3.1.js
│   ├── jquery-3.3.1.min.js
│   ├── jquery-3.3.1.min.map
│   ├── jquery-3.3.1.slim.js
│   ├── jquery-3.3.1.slim.min.js
│   ├── jquery-3.3.1.slim.min.map
│   ├── jquery.validate.js
│   ├── jquery.validate.min.js
│   ├── jquery.validate.unobtrusive.js
│   ├── jquery.validate.unobtrusive.min.js
│   ├── jquery.validate-vsdoc.js
│   └── modernizr-2.8.3.js
├── Views
│   ├── Account
│   │   ├── ExceedRelogin.cshtml
│   │   ├── InfoCard.cshtml
│   │   ├── Login.cshtml
│   │   ├── ModifyPwd.cshtml
│   │   └── SetPassword.cshtml
│   ├── ErrorPage
│   │   └── NotFound.cshtml
│   ├── Home
│   │   ├── About.cshtml
│   │   ├── Default.cshtml
│   │   ├── Index.cshtml
│   │   └── Test.cshtml
│   ├── Shared
│   │   ├── _Error.cshtml
│   │   ├── Error.cshtml
│   │   ├── _Form.cshtml
│   │   ├── _HeaderLayout.cshtml
│   │   └── _Layout.cshtml
│   ├── _ViewStart.cshtml
│   └── Web.config
├── Web.config
├── Web.Debug.config
└── Web.Release.config

128 directories, 628 files

标签:

实例下载地址

C# MVC+layui.js超轻量级框架(包含数据库)

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警