实例介绍
这是最新版 SmartAdmin 的 Angular 版,提供给需要的朋友
【实例截图】
【核心代码】
smartadmin.angular.1.8.2
├── api
│ ├── activities
│ │ └── activity.json
│ ├── chat.json
│ ├── e-commerce
│ │ └── orders.json
│ ├── events.json
│ ├── inbox.json
│ ├── langs
│ │ ├── cn.json
│ │ └── us.json
│ ├── languages.json
│ ├── messages.json
│ ├── project-list.json
│ ├── projects.json
│ ├── tables
│ │ └── datatables.standard.json
│ ├── todos.json
│ └── user.json
├── app
│ ├── app-views
│ │ └── views
│ │ ├── blog-demo.html
│ │ ├── forum-demo.html
│ │ ├── forum-post-demo.html
│ │ ├── forum-topic-demo.html
│ │ ├── gallery-demo.html
│ │ ├── profile-demo.html
│ │ ├── project-list.html
│ │ └── timeline-demo.html
│ ├── auth
│ │ ├── directives
│ │ │ └── login-info.tpl.html
│ │ └── views
│ │ ├── forgot-password.html
│ │ ├── lock.html
│ │ ├── login.html
│ │ └── register.html
│ ├── calendar
│ │ ├── directives
│ │ │ └── full-calendar.tpl.html
│ │ └── views
│ │ └── calendar.tpl.html
│ ├── _common
│ │ ├── forms
│ │ │ └── directives
│ │ │ └── bootstrap-validation
│ │ │ ├── bootstrap-attribute-form.tpl.html
│ │ │ ├── bootstrap-button-group-form.tpl.html
│ │ │ ├── bootstrap-contact-form.tpl.html
│ │ │ ├── bootstrap-movie-form.tpl.html
│ │ │ ├── bootstrap-product-form.tpl.html
│ │ │ ├── bootstrap-profile-form.tpl.html
│ │ │ └── bootstrap-toggling-form.tpl.html
│ │ └── layout
│ │ └── directives
│ │ └── demo
│ │ └── demo-states.tpl.html
│ ├── dashboard
│ │ ├── activities
│ │ │ ├── activities.html
│ │ │ └── tabs
│ │ │ ├── tab-default.html
│ │ │ ├── tab-msgs.html
│ │ │ ├── tab-notify.html
│ │ │ └── tab-tasks.html
│ │ ├── chat
│ │ │ └── directives
│ │ │ ├── aside-chat-widget.tpl.html
│ │ │ ├── chat-users.tpl.html
│ │ │ └── chat-widget.tpl.html
│ │ ├── dashboard.html
│ │ ├── live-feeds.tpl.html
│ │ ├── projects
│ │ │ └── recent-projects.tpl.html
│ │ ├── social-wall.html
│ │ └── todo
│ │ ├── directives
│ │ │ └── todo-list.tpl.html
│ │ └── todo-widget.tpl.html
│ ├── e-commerce
│ │ └── views
│ │ ├── detail.html
│ │ ├── orders.html
│ │ └── products.html
│ ├── forms
│ │ └── views
│ │ ├── bootstrap-forms.html
│ │ ├── bootstrap-validation.html
│ │ ├── dropzone.html
│ │ ├── form-editors.html
│ │ ├── form-elements.html
│ │ ├── form-layouts
│ │ │ ├── checkout-form.html
│ │ │ ├── comment-form.html
│ │ │ ├── contacts-form.html
│ │ │ ├── form-layouts-demo.html
│ │ │ ├── order-form.html
│ │ │ ├── registration-form.html
│ │ │ └── review-form.html
│ │ ├── form-plugins.html
│ │ ├── form-validation.html
│ │ ├── form-wizards.html
│ │ └── image-editor.html
│ ├── graphs
│ │ └── views
│ │ ├── chartjs-charts.html
│ │ ├── dygraphs-charts.html
│ │ ├── easy-pie-charts.html
│ │ ├── flot-charts.html
│ │ ├── highchart-tables.html
│ │ ├── morris-charts.html
│ │ └── sparkline.html
│ ├── inbox
│ │ └── views
│ │ ├── inbox-folder.html
│ │ └── inbox-layout.html
│ ├── layout
│ │ ├── language
│ │ │ └── language-selector.tpl.html
│ │ ├── layout.tpl.html
│ │ ├── partials
│ │ │ ├── footer.tpl.html
│ │ │ ├── header.tpl.html
│ │ │ ├── navigation.tpl.html
│ │ │ ├── sub-header.tpl.html
│ │ │ └── voice-commands.tpl.html
│ │ └── shortcut
│ │ └── shortcut.tpl.html
│ ├── maps
│ │ └── views
│ │ └── maps-demo.html
│ ├── misc
│ │ └── views
│ │ ├── blank.html
│ │ ├── ckeditor.html
│ │ ├── email-template.html
│ │ ├── error404.html
│ │ ├── error500.html
│ │ ├── invoice.html
│ │ ├── pricing-table.html
│ │ └── search.html
│ ├── smart-admin
│ │ └── views
│ │ ├── app-layouts.html
│ │ └── prebuilt-skins.html
│ ├── tables
│ │ └── views
│ │ ├── datatables.html
│ │ ├── jqgrid.html
│ │ └── normal.html
│ ├── ui
│ │ └── views
│ │ ├── buttons.html
│ │ ├── general-elements.html
│ │ ├── grid.html
│ │ ├── icons-fa.html
│ │ ├── icons-flags.html
│ │ ├── icons-glyph.html
│ │ ├── jquery-ui.html
│ │ ├── nestable-lists.html
│ │ ├── tree-view.html
│ │ └── typography.html
│ └── widgets
│ └── views
│ ├── widget-demo.html
│ └── widgets-demo.html
├── build
│ ├── app.js
│ ├── vendor.datatables.js
│ ├── vendor.graphs.js
│ ├── vendor.js
│ └── vendor.ui.js
├── index.html
├── __MACOSX
│ ├── app
│ │ ├── auth
│ │ └── layout
│ └── styles
│ └── img
├── smartadmin-plugin
│ └── legacy
│ ├── ckeditor
│ │ ├── ckeditor.js
│ │ ├── config.js
│ │ ├── contents.css
│ │ ├── lang
│ │ │ └── zh-cn.js
│ │ ├── plugins
│ │ │ ├── image
│ │ │ │ └── dialogs
│ │ │ │ └── image.js
│ │ │ └── link
│ │ │ └── images
│ │ │ └── anchor.png
│ │ ├── skins
│ │ │ └── moono
│ │ │ ├── dialog.css
│ │ │ ├── editor.css
│ │ │ ├── icons.png
│ │ │ └── images
│ │ │ ├── close.png
│ │ │ ├── lock.png
│ │ │ └── refresh.png
│ │ └── styles.js
│ ├── jqgrid
│ │ └── js
│ │ ├── i18n
│ │ │ └── grid.locale-en.js
│ │ └── minified
│ │ └── jquery.jqGrid.min.js
│ └── superbox
│ └── superbox.min.js
└── styles
├── css
│ ├── bootstrap.min.css
│ ├── demo.min.css
│ ├── font-awesome.min.css
│ ├── smartadmin-angular.css
│ ├── smartadmin-production.min.css
│ ├── smartadmin-production-plugins.min.css
│ ├── smartadmin-rtl.min.css
│ └── smartadmin-skins.min.css
├── fonts
│ ├── fontawesome-webfont.woff
│ └── glyphicons-halflings-regular.woff2
└── img
├── avatars
│ ├── 1.png
│ ├── 2.png
│ ├── 3.png
│ ├── 4.png
│ ├── 5.png
│ ├── female.png
│ ├── male.png
│ ├── sunny-big.png
│ └── sunny.png
├── blank.gif
├── demo
│ ├── 64x64.png
│ ├── basic.png
│ ├── demo-smartbig-alert.png
│ ├── e-comm
│ │ ├── 1.png
│ │ ├── 2.png
│ │ ├── 3.png
│ │ ├── 4.png
│ │ ├── 5.png
│ │ ├── 7.png
│ │ ├── 8.png
│ │ ├── 9.png
│ │ ├── detail-1.png
│ │ ├── detail-2.png
│ │ └── detail-3.png
│ ├── hero.png
│ ├── iphoneview.png
│ ├── layout-skins
│ │ ├── layout-collapse-minified.png
│ │ ├── layout-collapse.png
│ │ ├── layout-hidden.png
│ │ ├── layout-menutop.png
│ │ ├── layout-rtl-menutop.png
│ │ ├── layout-rtl.png
│ │ ├── skin-dark.png
│ │ ├── skin-default.png
│ │ ├── skin-glass.png
│ │ ├── skin-google.png
│ │ ├── skin-pixel.png
│ │ └── skin-ultralight.png
│ ├── m1.jpg
│ ├── m2.jpg
│ ├── m3.jpg
│ ├── newsletter.png
│ ├── responseimg.png
│ ├── s1.jpg
│ ├── s2.jpg
│ ├── sample.jpg
│ ├── sidebarhero.png
│ ├── sidebar.png
│ └── widget-colorpicker.png
├── flags
│ ├── es.png
│ ├── flags.png
│ └── us.png
├── gradient
│ └── login.png
├── invoice
│ ├── americanexpress.png
│ ├── mastercard.png
│ ├── paypal.png
│ └── visa.png
├── jcrop
│ └── Jcrop.gif
├── jqueryui
│ ├── ui-icons_222222_256x240.png
│ └── ui-icons_888888_256x240.png
├── logo-blacknwhite.png
├── logo-o.png
├── logo.png
├── mybg.png
├── pattern
│ └── overlay-pattern.png
├── realestate
│ └── 6.png
├── ribbon.png
├── select2-spinner.gif
└── superbox
├── superbox-full-10.jpg
├── superbox-full-11.jpg
├── superbox-full-15.jpg
├── superbox-full-16.jpg
├── superbox-full-19.jpg
├── superbox-full-24.jpg
├── superbox-full-7.jpg
├── superbox-full-9.jpg
├── superbox-thumb-10.jpg
├── superbox-thumb-11.jpg
├── superbox-thumb-12.jpg
├── superbox-thumb-13.jpg
├── superbox-thumb-14.jpg
├── superbox-thumb-15.jpg
├── superbox-thumb-16.jpg
├── superbox-thumb-17.jpg
├── superbox-thumb-18.jpg
├── superbox-thumb-19.jpg
├── superbox-thumb-1.jpg
├── superbox-thumb-20.jpg
├── superbox-thumb-21.jpg
├── superbox-thumb-22.jpg
├── superbox-thumb-23.jpg
├── superbox-thumb-24.jpg
├── superbox-thumb-2.jpg
├── superbox-thumb-3.jpg
├── superbox-thumb-4.jpg
├── superbox-thumb-5.jpg
├── superbox-thumb-6.jpg
├── superbox-thumb-7.jpg
├── superbox-thumb-8.jpg
└── superbox-thumb-9.jpg
94 directories, 245 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论