实例介绍
适用大部分vue2.0后台管理系统,iview框架开发后台系统 最新资源 信息系统
【实例截图】
【核心代码】
iview-admin-dev
└── iview-admin-dev
├── build
│ ├── config.js
│ ├── webpack.base.config.js
│ ├── webpack.dev.config.js
│ └── webpack.prod.config.js
├── github-gif
│ ├── access.gif
│ ├── article-publish.gif
│ ├── code.png
│ ├── count-to.gif
│ ├── dragable-list.gif
│ ├── dragable-table.gif
│ ├── editable-table.gif
│ ├── error-page.gif
│ ├── exportable-table.gif
│ ├── home.gif
│ ├── image-editor.gif
│ ├── locking.gif
│ ├── message.gif
│ ├── page-tags.gif
│ ├── sidebarmenu.gif
│ ├── split-pane.gif
│ ├── table2image.gif
│ ├── theme.gif
│ ├── upload.gif
│ └── workflow.gif
├── index.html
├── LICENSE
├── package.json
├── package-lock.json
├── README_EN.md
├── README.md
├── src
│ ├── app.vue
│ ├── images
│ │ ├── cropper-test.png
│ │ ├── logo.jpg
│ │ └── logo-min.jpg
│ ├── libs
│ │ ├── table2excel.js
│ │ └── util.js
│ ├── locale
│ │ ├── index.js
│ │ └── locale.js
│ ├── main.js
│ ├── router
│ │ ├── index.js
│ │ └── router.js
│ ├── store
│ │ ├── index.js
│ │ └── modules
│ │ ├── app.js
│ │ └── user.js
│ ├── styles
│ │ ├── common.less
│ │ ├── fonts
│ │ │ ├── ionicons.eot
│ │ │ ├── ionicons.svg
│ │ │ ├── ionicons.ttf
│ │ │ └── ionicons.woff
│ │ ├── loading.less
│ │ └── login_bg.jpg
│ ├── template
│ │ └── index.ejs
│ ├── vendors
│ │ ├── vendors.base.js
│ │ └── vendors.exten.js
│ └── views
│ ├── access
│ │ ├── access.less
│ │ ├── access-test.vue
│ │ └── access.vue
│ ├── advanced-router
│ │ ├── advanced-router.less
│ │ ├── argument-page.vue
│ │ ├── component
│ │ │ ├── expandRow.vue
│ │ │ ├── order-info.vue
│ │ │ └── shopping-info.vue
│ │ └── mutative-router.vue
│ ├── error-page
│ │ ├── 403.less
│ │ ├── 403.vue
│ │ ├── 404.less
│ │ ├── 404.vue
│ │ ├── 500.less
│ │ ├── 500.vue
│ │ ├── error-page.less
│ │ └── error-page.vue
│ ├── form
│ │ ├── article-publish
│ │ │ ├── article-publish.less
│ │ │ ├── article-publish.vue
│ │ │ ├── preview.less
│ │ │ └── preview.vue
│ │ └── work-flow
│ │ ├── work-flow.less
│ │ └── work-flow.vue
│ ├── home
│ │ ├── components
│ │ │ ├── countUp.vue
│ │ │ ├── dataSourcePie.vue
│ │ │ ├── inforCard.vue
│ │ │ ├── mapDataTable.vue
│ │ │ ├── map.vue
│ │ │ ├── serviceRequests.vue
│ │ │ ├── styles
│ │ │ │ ├── infor-card.less
│ │ │ │ └── to-do-list-item.less
│ │ │ ├── toDoListItem.vue
│ │ │ ├── userFlow.vue
│ │ │ └── visiteVolume.vue
│ │ ├── home.less
│ │ ├── home.vue
│ │ └── map-data
│ │ ├── china.json
│ │ ├── get-city-value.js
│ │ ├── get-geography-value.js
│ │ └── get-style-json.js
│ ├── international
│ │ ├── international.less
│ │ └── international.vue
│ ├── login.less
│ ├── login.vue
│ ├── main-components
│ │ ├── breadcrumb-nav.vue
│ │ ├── fullscreen.vue
│ │ ├── lockscreen
│ │ │ ├── components
│ │ │ │ ├── locking-page.vue
│ │ │ │ └── unlock.vue
│ │ │ ├── lockscreen.vue
│ │ │ └── styles
│ │ │ └── unlock.less
│ │ ├── message-tip.vue
│ │ ├── shrinkable-menu
│ │ │ ├── components
│ │ │ │ ├── sidebarMenuShrink.vue
│ │ │ │ └── sidebarMenu.vue
│ │ │ ├── shrinkable-menu.vue
│ │ │ └── styles
│ │ │ └── menu.less
│ │ ├── tags-page-opened.vue
│ │ └── theme-switch
│ │ ├── theme
│ │ │ ├── g.css
│ │ │ ├── r.css
│ │ │ └── y.css
│ │ └── theme-switch.vue
│ ├── main.less
│ ├── Main.vue
│ ├── message
│ │ ├── message.less
│ │ └── message.vue
│ ├── my-components
│ │ ├── area-linkage
│ │ │ ├── area-linkage.less
│ │ │ ├── area-linkage.vue
│ │ │ ├── components
│ │ │ │ ├── al-cascader.vue
│ │ │ │ └── al-selector.vue
│ │ │ └── util
│ │ │ └── index.js
│ │ ├── count-to
│ │ │ ├── count-to.less
│ │ │ ├── count-to.vue
│ │ │ └── CountTo.vue
│ │ ├── draggable-list
│ │ │ ├── draggable-list.less
│ │ │ └── draggable-list.vue
│ │ ├── file-upload
│ │ │ ├── file-upload.vue
│ │ │ └── upload.less
│ │ ├── image-editor
│ │ │ ├── cropper.min.css
│ │ │ ├── image-editor.less
│ │ │ └── image-editor.vue
│ │ ├── markdown-editor
│ │ │ ├── markdown-editor.less
│ │ │ ├── markdown-editor.vue
│ │ │ └── simplemde.min.css
│ │ ├── scroll-bar
│ │ │ ├── scroll-bar-page.vue
│ │ │ └── vue-scroller-bars
│ │ │ ├── index.js
│ │ │ ├── scroll-bar.less
│ │ │ └── scroll-bar.vue
│ │ ├── split-pane
│ │ │ ├── split-pane
│ │ │ │ ├── index.js
│ │ │ │ ├── split-pane.less
│ │ │ │ └── split-pane.vue
│ │ │ └── split-pane-page.vue
│ │ └── text-editor
│ │ ├── text-editor.vue
│ │ └── tinymce
│ │ ├── langs
│ │ │ ├── en_GB.js
│ │ │ └── zh_CN.GB2312.js
│ │ ├── plugins
│ │ │ ├── advlist
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── anchor
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── autolink
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── autoresize
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── autosave
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── bbcode
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── charmap
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── code
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── codesample
│ │ │ │ ├── css
│ │ │ │ │ └── prism.css
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── colorpicker
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── contextmenu
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── directionality
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── emoticons
│ │ │ │ ├── img
│ │ │ │ │ ├── smiley-cool.gif
│ │ │ │ │ ├── smiley-cry.gif
│ │ │ │ │ ├── smiley-embarassed.gif
│ │ │ │ │ ├── smiley-foot-in-mouth.gif
│ │ │ │ │ ├── smiley-frown.gif
│ │ │ │ │ ├── smiley-innocent.gif
│ │ │ │ │ ├── smiley-kiss.gif
│ │ │ │ │ ├── smiley-laughing.gif
│ │ │ │ │ ├── smiley-money-mouth.gif
│ │ │ │ │ ├── smiley-sealed.gif
│ │ │ │ │ ├── smiley-smile.gif
│ │ │ │ │ ├── smiley-surprised.gif
│ │ │ │ │ ├── smiley-tongue-out.gif
│ │ │ │ │ ├── smiley-undecided.gif
│ │ │ │ │ ├── smiley-wink.gif
│ │ │ │ │ └── smiley-yell.gif
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── fullpage
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── fullscreen
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── help
│ │ │ │ ├── img
│ │ │ │ │ └── logo.png
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── hr
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── image
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── imagetools
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── importcss
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── insertdatetime
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── legacyoutput
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── link
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── lists
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── media
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── nonbreaking
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── noneditable
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── pagebreak
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── paste
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── preview
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── save
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── searchreplace
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── spellchecker
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── tabfocus
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── table
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── template
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── textcolor
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── textpattern
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── toc
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── visualblocks
│ │ │ │ ├── css
│ │ │ │ │ └── visualblocks.css
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ ├── visualchars
│ │ │ │ ├── index.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── plugin.min.js
│ │ │ └── wordcount
│ │ │ ├── index.js
│ │ │ ├── plugin.js
│ │ │ └── plugin.min.js
│ │ ├── skins
│ │ │ └── lightgray
│ │ │ ├── content.inline.min.css
│ │ │ ├── content.min.css
│ │ │ ├── content.mobile.min.css
│ │ │ ├── fonts
│ │ │ │ ├── tinymce.eot
│ │ │ │ ├── tinymce-mobile.woff
│ │ │ │ ├── tinymce-small.eot
│ │ │ │ ├── tinymce-small.svg
│ │ │ │ ├── tinymce-small.ttf
│ │ │ │ ├── tinymce-small.woff
│ │ │ │ ├── tinymce.svg
│ │ │ │ ├── tinymce.ttf
│ │ │ │ └── tinymce.woff
│ │ │ ├── img
│ │ │ │ ├── anchor.gif
│ │ │ │ ├── loader.gif
│ │ │ │ ├── object.gif
│ │ │ │ └── trans.gif
│ │ │ ├── skin.min.css
│ │ │ └── skin.mobile.min.css
│ │ └── themes
│ │ ├── inlite
│ │ │ ├── index.js
│ │ │ ├── theme.js
│ │ │ └── theme.min.js
│ │ └── modern
│ │ ├── index.js
│ │ ├── theme.js
│ │ └── theme.min.js
│ ├── own-space
│ │ ├── own-space.less
│ │ └── own-space.vue
│ └── tables
│ ├── components
│ │ ├── canEditTable.vue
│ │ ├── dragableTable.vue
│ │ ├── editable-table.less
│ │ ├── ExportExcel.vue
│ │ ├── multiPageTable.vue
│ │ ├── table_data.js
│ │ └── table.less
│ ├── data
│ │ ├── search.js
│ │ ├── table2csv.js
│ │ └── table2excel.js
│ ├── dragable-table.vue
│ ├── editable-table.vue
│ ├── exportable-table.vue
│ ├── searchable-table.vue
│ └── table-to-image.vue
└── td_icon.ico
112 directories, 337 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论