├── vue
├── .eslintignore
├── config
│ ├── env.js
│ └── url.js
├── .babelrc
├── cypress.json
├── src
│ ├── view
│ │ ├── main
│ │ │ ├── index.js
│ │ │ ├── components
│ │ │ │ ├── user
│ │ │ │ │ ├── index.js
│ │ │ │ │ ├── user.less
│ │ │ │ │ └── user.vue
│ │ │ │ ├── header-bar
│ │ │ │ │ ├── index.js
│ │ │ │ │ ├── sider-trigger
│ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ ├── sider-trigger.less
│ │ │ │ │ │ └── sider-trigger.vue
│ │ │ │ │ ├── custom-bread-crumb
│ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ └── custom-bread-crumb.less
│ │ │ │ │ ├── header-bar.less
│ │ │ │ │ └── header-bar.vue
│ │ │ │ ├── language
│ │ │ │ │ └── index.js
│ │ │ │ ├── side-menu
│ │ │ │ │ ├── index.js
│ │ │ │ │ ├── item-mixin.js
│ │ │ │ │ └── mixin.js
│ │ │ │ ├── tags-nav
│ │ │ │ │ └── index.js
│ │ │ │ └── fullscreen
│ │ │ │ │ └── index.js
│ │ │ └── main.less
│ │ ├── components
│ │ │ ├── icon
│ │ │ │ └── index.js
│ │ │ ├── input
│ │ │ │ └── index.js
│ │ │ ├── transfer
│ │ │ │ └── index.js
│ │ │ ├── button
│ │ │ │ └── index.js
│ │ │ ├── checkbox
│ │ │ │ └── index.js
│ │ │ ├── role
│ │ │ │ └── menu-role.json
│ │ │ ├── mixins
│ │ │ │ └── locale.js
│ │ │ ├── markdown
│ │ │ │ └── markdown.vue
│ │ │ ├── locale
│ │ │ │ └── lang.js
│ │ │ └── editor
│ │ │ │ └── editor.vue
│ │ ├── single-page
│ │ │ └── home
│ │ │ │ └── index.js
│ │ ├── multilevel
│ │ │ ├── level-2-2
│ │ │ │ └── level-3-1.vue
│ │ │ └── level-2-3.vue
│ │ ├── error-page
│ │ │ ├── 404.vue
│ │ │ ├── 401.vue
│ │ │ ├── 500.vue
│ │ │ ├── error-content.vue
│ │ │ └── back-btn-group.vue
│ │ ├── login
│ │ │ └── login.less
│ │ └── join-page.vue
│ ├── components
│ │ ├── editor
│ │ │ └── index.js
│ │ ├── icons
│ │ │ ├── index.js
│ │ │ └── icons.vue
│ │ ├── tables
│ │ │ ├── index.js
│ │ │ ├── index.less
│ │ │ └── handle-btns.js
│ │ ├── split-pane
│ │ │ ├── index.js
│ │ │ └── trigger.vue
│ │ ├── count-to
│ │ │ ├── index.js
│ │ │ └── index.less
│ │ ├── info-card
│ │ │ └── index.js
│ │ ├── login-form
│ │ │ └── index.js
│ │ ├── common-icon
│ │ │ ├── index.js
│ │ │ └── common-icon.vue
│ │ ├── markdown
│ │ │ └── index.js
│ │ ├── parent-view
│ │ │ ├── index.js
│ │ │ └── parent-view.vue
│ │ ├── paste-editor
│ │ │ ├── index.js
│ │ │ └── paste-editor.less
│ │ ├── charts
│ │ │ └── index.js
│ │ └── common
│ │ │ ├── util.js
│ │ │ └── common.less
│ ├── assets
│ │ ├── images
│ │ │ ├── logo.jpg
│ │ │ ├── login-bg.jpg
│ │ │ ├── logo-min.jpg
│ │ │ ├── qq-fance.jpg
│ │ │ └── talkingdata.png
│ │ └── icons
│ │ │ ├── iconfont.eot
│ │ │ ├── iconfont.ttf
│ │ │ └── iconfont.woff
│ ├── libs
│ │ └── api.request.js
│ ├── index.less
│ ├── api
│ │ ├── data.js
│ │ ├── routers.js
│ │ ├── user.js
│ │ ├── dept.js
│ │ ├── test.js
│ │ └── menu.js
│ ├── config
│ │ ├── index.js
│ │ └── axios.js
│ ├── mock
│ │ ├── index.js
│ │ └── data.js
│ ├── App.vue
│ ├── directive
│ │ └── index.js
│ ├── store
│ │ └── index.js
│ └── locale
│ │ └── lang
│ │ ├── zh-CN.js
│ │ ├── zh-TW.js
│ │ └── en-US.js
├── .postcssrc.js
├── public
│ ├── favicon.ico
│ └── index.html
├── .travis.yml
├── tests
│ ├── unit
│ │ ├── .eslintrc.js
│ │ └── HelloWorld.spec.js
│ └── e2e
│ │ ├── .eslintrc
│ │ ├── specs
│ │ └── test.js
│ │ ├── plugins
│ │ └── index.js
│ │ └── support
│ │ ├── index.js
│ │ └── commands.js
├── .editorconfig
├── .gitignore
└── .eslintrc.js
├── springboot
├── src
│ ├── main
│ │ ├── resources
│ │ │ ├── config
│ │ │ │ └── quartz.properties
│ │ │ ├── static
│ │ │ │ ├── editor-app
│ │ │ │ │ ├── libs
│ │ │ │ │ │ ├── es5-shim-15.3.4.5
│ │ │ │ │ │ │ ├── .gitignore
│ │ │ │ │ │ │ ├── tests
│ │ │ │ │ │ │ │ ├── helpers
│ │ │ │ │ │ │ │ │ └── h.js
│ │ │ │ │ │ │ │ ├── lib
│ │ │ │ │ │ │ │ │ └── jasmine_favicon.png
│ │ │ │ │ │ │ │ └── spec
│ │ │ │ │ │ │ │ │ └── s-number.js
│ │ │ │ │ │ │ └── .bower.json
│ │ │ │ │ │ ├── bootstrap_3.1.1
│ │ │ │ │ │ │ └── fonts
│ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ │ │ │ │ └── glyphicons-halflings-regular.woff
│ │ │ │ │ │ ├── angular-translate-storage-cookie
│ │ │ │ │ │ │ ├── angular-translate-storage-cookie.min.js
│ │ │ │ │ │ │ ├── angular-translate-storage-cookie.js
│ │ │ │ │ │ │ └── .bower.json
│ │ │ │ │ │ ├── angular-translate-loader-static-files
│ │ │ │ │ │ │ ├── angular-translate-loader-static-files.min.js
│ │ │ │ │ │ │ └── .bower.json
│ │ │ │ │ │ └── angular-cookies_1.2.13
│ │ │ │ │ │ │ └── angular-cookies.min.js
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── logo.png
│ │ │ │ │ │ ├── delete.png
│ │ │ │ │ │ ├── wrench.png
│ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ ├── logo-2x.png
│ │ │ │ │ │ ├── bpmn-error.png
│ │ │ │ │ │ ├── bpmn-warning.png
│ │ │ │ │ │ ├── datadefinition.png
│ │ │ │ │ │ ├── nw-handle-dark.gif
│ │ │ │ │ │ ├── se-handle-dark.gif
│ │ │ │ │ │ └── shapemenu_highlight.png
│ │ │ │ │ ├── popups
│ │ │ │ │ │ ├── icon-template.html
│ │ │ │ │ │ └── select-shape.html
│ │ │ │ │ ├── fonts
│ │ │ │ │ │ ├── activiti-admin-webfont.eot
│ │ │ │ │ │ ├── activiti-admin-webfont.ttf
│ │ │ │ │ │ ├── activiti-admin-webfont.woff
│ │ │ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ │ │ └── glyphicons-halflings-regular.woff
│ │ │ │ │ ├── stencilsets
│ │ │ │ │ │ └── bpmn2.0
│ │ │ │ │ │ │ └── icons
│ │ │ │ │ │ │ ├── diagram.png
│ │ │ │ │ │ │ ├── activity
│ │ │ │ │ │ │ ├── task.png
│ │ │ │ │ │ │ ├── subprocess.png
│ │ │ │ │ │ │ ├── event.subprocess.png
│ │ │ │ │ │ │ ├── list
│ │ │ │ │ │ │ │ ├── type.camel.png
│ │ │ │ │ │ │ │ ├── type.manual.png
│ │ │ │ │ │ │ │ ├── type.mule.png
│ │ │ │ │ │ │ │ ├── type.script.png
│ │ │ │ │ │ │ │ ├── type.send.png
│ │ │ │ │ │ │ │ ├── type.shell.png
│ │ │ │ │ │ │ │ ├── type.user.png
│ │ │ │ │ │ │ │ ├── type.receive.png
│ │ │ │ │ │ │ │ ├── type.service.png
│ │ │ │ │ │ │ │ └── type.business.rule.png
│ │ │ │ │ │ │ ├── expanded.subprocess.png
│ │ │ │ │ │ │ └── event.subprocess.collapsed.png
│ │ │ │ │ │ │ ├── catching
│ │ │ │ │ │ │ ├── cancel.png
│ │ │ │ │ │ │ ├── error.png
│ │ │ │ │ │ │ ├── signal.png
│ │ │ │ │ │ │ ├── timer.png
│ │ │ │ │ │ │ ├── message.png
│ │ │ │ │ │ │ └── compensation.png
│ │ │ │ │ │ │ ├── endevent
│ │ │ │ │ │ │ ├── cancel.png
│ │ │ │ │ │ │ ├── error.png
│ │ │ │ │ │ │ ├── none.png
│ │ │ │ │ │ │ └── terminate.png
│ │ │ │ │ │ │ ├── startevent
│ │ │ │ │ │ │ ├── none.png
│ │ │ │ │ │ │ ├── error.png
│ │ │ │ │ │ │ ├── signal.png
│ │ │ │ │ │ │ ├── timer.png
│ │ │ │ │ │ │ └── message.png
│ │ │ │ │ │ │ ├── swimlane
│ │ │ │ │ │ │ ├── lane.png
│ │ │ │ │ │ │ └── pool.png
│ │ │ │ │ │ │ ├── throwing
│ │ │ │ │ │ │ ├── none.png
│ │ │ │ │ │ │ └── signal.png
│ │ │ │ │ │ │ ├── gateway
│ │ │ │ │ │ │ ├── inclusive.png
│ │ │ │ │ │ │ ├── parallel.png
│ │ │ │ │ │ │ ├── eventbased.png
│ │ │ │ │ │ │ └── exclusive.databased.png
│ │ │ │ │ │ │ ├── connector
│ │ │ │ │ │ │ ├── messageflow.png
│ │ │ │ │ │ │ ├── sequenceflow.png
│ │ │ │ │ │ │ ├── association.undirected.png
│ │ │ │ │ │ │ └── association.unidirectional.png
│ │ │ │ │ │ │ ├── dataobject
│ │ │ │ │ │ │ └── data.store.png
│ │ │ │ │ │ │ └── artifact
│ │ │ │ │ │ │ └── text.annotation.png
│ │ │ │ │ ├── configuration
│ │ │ │ │ │ ├── properties
│ │ │ │ │ │ │ ├── boolean-property-template.html
│ │ │ │ │ │ │ ├── fields-write-template.html
│ │ │ │ │ │ │ ├── assignment-write-template.html
│ │ │ │ │ │ │ ├── in-parameters-write-template.html
│ │ │ │ │ │ │ ├── text-property-write-template.html
│ │ │ │ │ │ │ ├── event-listeners-write-template.html
│ │ │ │ │ │ │ ├── form-properties-write-template.html
│ │ │ │ │ │ │ ├── out-parameters-write-template.html
│ │ │ │ │ │ │ ├── task-listeners-write-template.html
│ │ │ │ │ │ │ ├── fields-display-template.html
│ │ │ │ │ │ │ ├── message-definitions-write-template.html
│ │ │ │ │ │ │ ├── sequenceflow-order-write-template.html
│ │ │ │ │ │ │ ├── condition-expression-write-template.html
│ │ │ │ │ │ │ ├── execution-listeners-write-template.html
│ │ │ │ │ │ │ ├── signal-definitions-write-template.html
│ │ │ │ │ │ │ ├── condition-expression-display-template.html
│ │ │ │ │ │ │ ├── sequenceflow-order-display-template.html
│ │ │ │ │ │ │ ├── subprocess-reference-write-template.html
│ │ │ │ │ │ │ ├── subprocess-reference-display-template.html
│ │ │ │ │ │ │ ├── in-parameters-display-template.html
│ │ │ │ │ │ │ ├── message-definitions-display-template.html
│ │ │ │ │ │ │ ├── form-properties-display-template.html
│ │ │ │ │ │ │ ├── out-parameters-display-template.html
│ │ │ │ │ │ │ ├── signal-definitions-display-template.html
│ │ │ │ │ │ │ ├── task-listeners-display-template.html
│ │ │ │ │ │ │ ├── event-listeners-display-template.html
│ │ │ │ │ │ │ ├── execution-listeners-display-template.html
│ │ │ │ │ │ │ ├── default-value-display-template.html
│ │ │ │ │ │ │ ├── multiinstance-property-write-template.html
│ │ │ │ │ │ │ ├── string-property-write-mode-template.html
│ │ │ │ │ │ │ ├── signal-property-write-template.html
│ │ │ │ │ │ │ ├── message-property-write-template.html
│ │ │ │ │ │ │ ├── text-popup.html
│ │ │ │ │ │ │ ├── assignment-display-template.html
│ │ │ │ │ │ │ └── feedback-popup.html
│ │ │ │ │ │ ├── toolbar-custom-actions.js
│ │ │ │ │ │ └── properties-custom-controllers.js
│ │ │ │ │ └── partials
│ │ │ │ │ │ └── root-stencil-item-template.html
│ │ │ │ ├── favicon.ico
│ │ │ │ ├── img
│ │ │ │ │ ├── a1.jpg
│ │ │ │ │ ├── a2.jpg
│ │ │ │ │ ├── a3.jpg
│ │ │ │ │ ├── a4.jpg
│ │ │ │ │ ├── a5.jpg
│ │ │ │ │ ├── a6.jpg
│ │ │ │ │ ├── a7.jpg
│ │ │ │ │ ├── a8.jpg
│ │ │ │ │ ├── a9.jpg
│ │ │ │ │ ├── bg.png
│ │ │ │ │ ├── p1.jpg
│ │ │ │ │ ├── p2.jpg
│ │ │ │ │ ├── p3.jpg
│ │ │ │ │ ├── .DS_Store
│ │ │ │ │ ├── court.jpg
│ │ │ │ │ ├── icons.png
│ │ │ │ │ ├── index.jpg
│ │ │ │ │ ├── user.png
│ │ │ │ │ ├── backg01.jpg
│ │ │ │ │ ├── backg02.jpg
│ │ │ │ │ ├── browser.png
│ │ │ │ │ ├── browser.psd
│ │ │ │ │ ├── index_4.jpg
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── locked.png
│ │ │ │ │ ├── p_big1.jpg
│ │ │ │ │ ├── p_big2.jpg
│ │ │ │ │ ├── p_big3.jpg
│ │ │ │ │ ├── photo_s.jpg
│ │ │ │ │ ├── post-bg.jpg
│ │ │ │ │ ├── profile.jpg
│ │ │ │ │ ├── progress.png
│ │ │ │ │ ├── qr_code.png
│ │ │ │ │ ├── success.png
│ │ │ │ │ ├── wenku_logo.png
│ │ │ │ │ ├── blog
│ │ │ │ │ │ ├── about-bg.jpg
│ │ │ │ │ │ ├── home-bg.jpg
│ │ │ │ │ │ ├── post-bg.jpg
│ │ │ │ │ │ ├── qqbootdo.png
│ │ │ │ │ │ ├── contact-bg.jpg
│ │ │ │ │ │ └── post-sample-image.jpg
│ │ │ │ │ ├── iconfont-logo.png
│ │ │ │ │ ├── profile_big.jpg
│ │ │ │ │ ├── profile_small.jpg
│ │ │ │ │ ├── webuploader.png
│ │ │ │ │ ├── loading-upload.gif
│ │ │ │ │ ├── background-login.jpg
│ │ │ │ │ ├── background_login.jpg
│ │ │ │ │ ├── login-background.jpg
│ │ │ │ │ └── sprite-skin-flat.png
│ │ │ │ ├── css
│ │ │ │ │ ├── .DS_Store
│ │ │ │ │ ├── patterns
│ │ │ │ │ │ ├── shattered.png
│ │ │ │ │ │ ├── header-profile.png
│ │ │ │ │ │ ├── header-profile-skin-1.png
│ │ │ │ │ │ └── header-profile-skin-3.png
│ │ │ │ │ └── plugins
│ │ │ │ │ │ ├── iCheck
│ │ │ │ │ │ ├── green.png
│ │ │ │ │ │ └── green@2x.png
│ │ │ │ │ │ ├── jsTree
│ │ │ │ │ │ ├── 32px.png
│ │ │ │ │ │ └── throbber.gif
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ ├── sort_asc.png
│ │ │ │ │ │ ├── sort_desc.png
│ │ │ │ │ │ ├── spritemap.png
│ │ │ │ │ │ ├── spritemap@2x.png
│ │ │ │ │ │ └── sprite-skin-flat.png
│ │ │ │ │ │ ├── blueimp
│ │ │ │ │ │ └── img
│ │ │ │ │ │ │ ├── error.png
│ │ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ │ ├── play-pause.png
│ │ │ │ │ │ │ ├── video-play.png
│ │ │ │ │ │ │ ├── video-play.svg
│ │ │ │ │ │ │ ├── error.svg
│ │ │ │ │ │ │ └── play-pause.svg
│ │ │ │ │ │ ├── chosen
│ │ │ │ │ │ ├── chosen-sprite.png
│ │ │ │ │ │ └── chosen-sprite@2x.png
│ │ │ │ │ │ ├── footable
│ │ │ │ │ │ └── fonts
│ │ │ │ │ │ │ ├── footable.eot
│ │ │ │ │ │ │ ├── footable.ttf
│ │ │ │ │ │ │ └── footable.woff
│ │ │ │ │ │ ├── zTree
│ │ │ │ │ │ └── metroStyle
│ │ │ │ │ │ │ └── img
│ │ │ │ │ │ │ ├── 32px.png
│ │ │ │ │ │ │ ├── metro.gif
│ │ │ │ │ │ │ ├── metro.png
│ │ │ │ │ │ │ ├── line_conn.png
│ │ │ │ │ │ │ └── loading.gif
│ │ │ │ │ │ ├── summernote
│ │ │ │ │ │ └── font
│ │ │ │ │ │ │ └── summernote.woff
│ │ │ │ │ │ ├── jQueryUI
│ │ │ │ │ │ └── images
│ │ │ │ │ │ │ ├── ui-icons_222222_256x240.png
│ │ │ │ │ │ │ ├── ui-icons_454545_256x240.png
│ │ │ │ │ │ │ ├── ui-icons_888888_256x240.png
│ │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ │ │ │ │ └── ui-bg_flat_75_ffffff_40x100.png
│ │ │ │ │ │ ├── colorpicker
│ │ │ │ │ │ └── img
│ │ │ │ │ │ │ └── bootstrap-colorpicker
│ │ │ │ │ │ │ ├── hue.png
│ │ │ │ │ │ │ ├── alpha.png
│ │ │ │ │ │ │ ├── saturation.png
│ │ │ │ │ │ │ ├── hue-horizontal.png
│ │ │ │ │ │ │ └── alpha-horizontal.png
│ │ │ │ │ │ ├── jqTreeGrid
│ │ │ │ │ │ └── jquery.treegrid.css
│ │ │ │ │ │ ├── morris
│ │ │ │ │ │ └── morris-0.4.3.min.css
│ │ │ │ │ │ ├── webuploader
│ │ │ │ │ │ └── webuploader.css
│ │ │ │ │ │ ├── switchery
│ │ │ │ │ │ └── switchery.css
│ │ │ │ │ │ └── fullcalendar
│ │ │ │ │ │ └── fullcalendar.print.css
│ │ │ │ ├── js
│ │ │ │ │ ├── .DS_Store
│ │ │ │ │ ├── plugins
│ │ │ │ │ │ ├── .DS_Store
│ │ │ │ │ │ ├── layer
│ │ │ │ │ │ │ ├── .DS_Store
│ │ │ │ │ │ │ ├── layim
│ │ │ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ │ │ └── data
│ │ │ │ │ │ │ │ │ └── chatlog.json
│ │ │ │ │ │ │ ├── skin
│ │ │ │ │ │ │ │ ├── default
│ │ │ │ │ │ │ │ │ ├── icon.png
│ │ │ │ │ │ │ │ │ ├── textbg.png
│ │ │ │ │ │ │ │ │ ├── icon-ext.png
│ │ │ │ │ │ │ │ │ ├── icon_ext.png
│ │ │ │ │ │ │ │ │ ├── loading-0.gif
│ │ │ │ │ │ │ │ │ ├── loading-1.gif
│ │ │ │ │ │ │ │ │ ├── loading-2.gif
│ │ │ │ │ │ │ │ │ ├── xubox_ico0.png
│ │ │ │ │ │ │ │ │ ├── xubox_title0.png
│ │ │ │ │ │ │ │ │ ├── xubox_loading0.gif
│ │ │ │ │ │ │ │ │ ├── xubox_loading1.gif
│ │ │ │ │ │ │ │ │ ├── xubox_loading2.gif
│ │ │ │ │ │ │ │ │ └── xubox_loading3.gif
│ │ │ │ │ │ │ │ └── moon
│ │ │ │ │ │ │ │ │ └── default.png
│ │ │ │ │ │ │ ├── theme
│ │ │ │ │ │ │ │ └── default
│ │ │ │ │ │ │ │ │ ├── icon.png
│ │ │ │ │ │ │ │ │ ├── icon-ext.png
│ │ │ │ │ │ │ │ │ ├── loading-0.gif
│ │ │ │ │ │ │ │ │ ├── loading-1.gif
│ │ │ │ │ │ │ │ │ └── loading-2.gif
│ │ │ │ │ │ │ └── laydate
│ │ │ │ │ │ │ │ └── skins
│ │ │ │ │ │ │ │ └── default
│ │ │ │ │ │ │ │ └── icon.png
│ │ │ │ │ │ ├── echarts
│ │ │ │ │ │ │ └── .DS_Store
│ │ │ │ │ │ ├── suggest
│ │ │ │ │ │ │ └── .DS_Store
│ │ │ │ │ │ ├── fancybox
│ │ │ │ │ │ │ ├── blank.gif
│ │ │ │ │ │ │ ├── fancybox_loading.gif
│ │ │ │ │ │ │ ├── fancybox_overlay.png
│ │ │ │ │ │ │ ├── fancybox_sprite.png
│ │ │ │ │ │ │ ├── fancybox_loading@2x.gif
│ │ │ │ │ │ │ └── fancybox_sprite@2x.png
│ │ │ │ │ │ ├── webuploader
│ │ │ │ │ │ │ ├── .DS_Store
│ │ │ │ │ │ │ ├── Uploader.swf
│ │ │ │ │ │ │ ├── webuploader.css
│ │ │ │ │ │ │ └── README.md
│ │ │ │ │ │ ├── bootstrap-table
│ │ │ │ │ │ │ ├── .DS_Store
│ │ │ │ │ │ │ └── locale
│ │ │ │ │ │ │ │ └── bootstrap-table-zh-CN.min.js
│ │ │ │ │ │ ├── gritter
│ │ │ │ │ │ │ └── images
│ │ │ │ │ │ │ │ ├── gritter.png
│ │ │ │ │ │ │ │ ├── ie-spacer.gif
│ │ │ │ │ │ │ │ └── gritter-light.png
│ │ │ │ │ │ ├── jqTreeGrid
│ │ │ │ │ │ │ └── jquery.treegrid.bootstrap3.js
│ │ │ │ │ │ ├── codemirror
│ │ │ │ │ │ │ └── mode
│ │ │ │ │ │ │ │ ├── tiddlywiki
│ │ │ │ │ │ │ │ └── tiddlywiki.css
│ │ │ │ │ │ │ │ ├── ruby
│ │ │ │ │ │ │ │ └── test.js
│ │ │ │ │ │ │ │ └── tiki
│ │ │ │ │ │ │ │ └── tiki.css
│ │ │ │ │ │ └── markdown
│ │ │ │ │ │ │ └── bootstrap-markdown.zh.js
│ │ │ │ │ ├── lay
│ │ │ │ │ │ ├── all-mobile.js
│ │ │ │ │ │ ├── modules
│ │ │ │ │ │ │ ├── mobile
│ │ │ │ │ │ │ │ └── layim-mobile-open.js
│ │ │ │ │ │ │ └── mobile.js
│ │ │ │ │ │ └── all.js
│ │ │ │ │ └── demo
│ │ │ │ │ │ ├── table_base.json
│ │ │ │ │ │ └── peity-demo.js
│ │ │ │ ├── docs
│ │ │ │ │ └── .DS_Store
│ │ │ │ └── fonts
│ │ │ │ │ ├── FontAwesome.otf
│ │ │ │ │ ├── icomoon
│ │ │ │ │ ├── icomoon.eot
│ │ │ │ │ ├── icomoon.ttf
│ │ │ │ │ └── icomoon.woff
│ │ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ │ ├── fontawesome-webfont.woff
│ │ │ │ │ ├── fontawesome-webfont.woff2
│ │ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ ├── public
│ │ │ │ └── diagram-viewer
│ │ │ │ │ ├── images
│ │ │ │ │ ├── bg.png
│ │ │ │ │ ├── checker-bg.png
│ │ │ │ │ ├── breadcrumbs.png
│ │ │ │ │ └── deployer
│ │ │ │ │ │ ├── manual.png
│ │ │ │ │ │ ├── script.png
│ │ │ │ │ │ ├── send.png
│ │ │ │ │ │ ├── timer.png
│ │ │ │ │ │ ├── user.png
│ │ │ │ │ │ ├── receive.png
│ │ │ │ │ │ ├── service.png
│ │ │ │ │ │ ├── error_catch.png
│ │ │ │ │ │ ├── error_throw.png
│ │ │ │ │ │ ├── business_rule.png
│ │ │ │ │ │ ├── message_catch.png
│ │ │ │ │ │ ├── message_throw.png
│ │ │ │ │ │ ├── signal_catch.png
│ │ │ │ │ │ ├── signal_throw.png
│ │ │ │ │ │ └── blue
│ │ │ │ │ │ └── message_catch.png
│ │ │ │ │ └── js
│ │ │ │ │ ├── Polyline.js
│ │ │ │ │ ├── ProcessDiagramGenerator.js
│ │ │ │ │ └── jstools.js
│ │ │ ├── templates
│ │ │ │ ├── blog
│ │ │ │ │ └── index
│ │ │ │ │ │ └── page.html
│ │ │ │ └── common
│ │ │ │ │ └── generator
│ │ │ │ │ ├── Service.java.vm
│ │ │ │ │ ├── Dao.java.vm
│ │ │ │ │ ├── domain.java.vm
│ │ │ │ │ └── list.html
│ │ │ ├── mybatis
│ │ │ │ └── system
│ │ │ │ │ └── ClientMapper.xml
│ │ │ ├── generator.properties
│ │ │ └── application.yml
│ │ └── java
│ │ │ └── com
│ │ │ └── bootdo
│ │ │ ├── common
│ │ │ ├── utils
│ │ │ │ ├── UploadUtils.java
│ │ │ │ ├── StringUtils.java
│ │ │ │ ├── ExceptionUtils.java
│ │ │ │ ├── HttpContextUtils.java
│ │ │ │ ├── HttpServletUtils.java
│ │ │ │ ├── WebUtilsPro.java
│ │ │ │ ├── Base64Utils.java
│ │ │ │ ├── PageUtils.java
│ │ │ │ ├── MD5Utils.java
│ │ │ │ └── Query.java
│ │ │ ├── annotation
│ │ │ │ └── Log.java
│ │ │ ├── config
│ │ │ │ ├── BootdoConfig.java
│ │ │ │ ├── WebConfigurer.java
│ │ │ │ └── Constant.java
│ │ │ ├── dao
│ │ │ │ ├── FileDao.java
│ │ │ │ └── LogDao.java
│ │ │ └── service
│ │ │ │ ├── LogService.java
│ │ │ │ └── FileService.java
│ │ │ └── system
│ │ │ ├── service
│ │ │ ├── PersonUploadService.java
│ │ │ ├── RoleMenuService.java
│ │ │ ├── GetUserService.java
│ │ │ ├── UploadService.java
│ │ │ ├── UserMenuService.java
│ │ │ ├── ClientService.java
│ │ │ ├── PersonUserRoleService.java
│ │ │ ├── RoleService.java
│ │ │ ├── oauth2service
│ │ │ │ └── OAuthService.java
│ │ │ └── impl
│ │ │ │ └── GetUserServiceImpl.java
│ │ │ ├── dao
│ │ │ ├── PersonDeptDao.java
│ │ │ ├── ClientDao.java
│ │ │ ├── StaffMapper.java
│ │ │ ├── OrgMapper.java
│ │ │ ├── RoleDao.java
│ │ │ ├── UserSubsystemSsuserDAO.java
│ │ │ ├── SubsystemDAO.java
│ │ │ ├── SubsystemMenuDAO.java
│ │ │ └── RoleMenuDao.java
│ │ │ ├── domain
│ │ │ ├── RoleMenuDO.java
│ │ │ ├── UserRoleDO.java
│ │ │ └── Staff.java
│ │ │ ├── config
│ │ │ └── BDSessionListener.java
│ │ │ ├── util
│ │ │ └── ExcelImportUtils.java
│ │ │ └── vo
│ │ │ └── UserVO.java
│ └── test
│ │ └── java
│ │ └── com
│ │ └── bootdo
│ │ └── testDemo
│ │ └── RedisTest.java
├── .settings
│ ├── org.eclipse.m2e.core.prefs
│ ├── org.eclipse.wst.common.project.facet.core.xml
│ └── org.eclipse.core.resources.prefs
├── applog
│ └── 2018-09-17
│ │ └── 2018-09-17.log
└── .springBeans
├── README_files
├── 1.jpg
├── 2.jpg
├── 5.jpg
├── 6.jpg
├── 8.jpg
├── 9.jpg
├── 10.jpg
├── 11.jpg
└── 12.jpg
└── README.md
/vue/.eslintignore:
--------------------------------------------------------------------------------
1 | routers.js
2 | *.js
3 | *.vue
--------------------------------------------------------------------------------
/vue/config/env.js:
--------------------------------------------------------------------------------
1 | export default 'development'
2 |
--------------------------------------------------------------------------------
/springboot/src/main/resources/config/quartz.properties:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vue/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": [
3 | "@vue/app"
4 | ]
5 | }
--------------------------------------------------------------------------------
/vue/cypress.json:
--------------------------------------------------------------------------------
1 | {
2 | "pluginsFile": "tests/e2e/plugins/index.js"
3 | }
4 |
--------------------------------------------------------------------------------
/vue/src/view/main/index.js:
--------------------------------------------------------------------------------
1 | import Main from './main.vue'
2 | export default Main
3 |
--------------------------------------------------------------------------------
/vue/.postcssrc.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | plugins: {
3 | autoprefixer: {}
4 | }
5 | }
--------------------------------------------------------------------------------
/vue/src/view/components/icon/index.js:
--------------------------------------------------------------------------------
1 | import Icon from './icon.vue';
2 | export default Icon;
--------------------------------------------------------------------------------
/README_files/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/README_files/1.jpg
--------------------------------------------------------------------------------
/README_files/2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/README_files/2.jpg
--------------------------------------------------------------------------------
/README_files/5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/README_files/5.jpg
--------------------------------------------------------------------------------
/README_files/6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/README_files/6.jpg
--------------------------------------------------------------------------------
/README_files/8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/README_files/8.jpg
--------------------------------------------------------------------------------
/README_files/9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/README_files/9.jpg
--------------------------------------------------------------------------------
/vue/src/components/editor/index.js:
--------------------------------------------------------------------------------
1 | import Editor from './editor.vue'
2 | export default Editor
3 |
--------------------------------------------------------------------------------
/vue/src/components/icons/index.js:
--------------------------------------------------------------------------------
1 | import Icons from './icons.vue'
2 | export default Icons
3 |
--------------------------------------------------------------------------------
/vue/src/components/tables/index.js:
--------------------------------------------------------------------------------
1 | import Tables from './tables.vue'
2 | export default Tables
3 |
--------------------------------------------------------------------------------
/vue/src/view/components/input/index.js:
--------------------------------------------------------------------------------
1 | import Input from './input.vue';
2 | export default Input;
--------------------------------------------------------------------------------
/vue/src/view/single-page/home/index.js:
--------------------------------------------------------------------------------
1 | import home from './home.vue'
2 | export default home
3 |
--------------------------------------------------------------------------------
/README_files/10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/README_files/10.jpg
--------------------------------------------------------------------------------
/README_files/11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/README_files/11.jpg
--------------------------------------------------------------------------------
/README_files/12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/README_files/12.jpg
--------------------------------------------------------------------------------
/vue/src/components/split-pane/index.js:
--------------------------------------------------------------------------------
1 | import Split from './split.vue'
2 | export default Split
3 |
--------------------------------------------------------------------------------
/vue/src/view/main/components/user/index.js:
--------------------------------------------------------------------------------
1 | import User from './user.vue'
2 | export default User
3 |
--------------------------------------------------------------------------------
/vue/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/vue/public/favicon.ico
--------------------------------------------------------------------------------
/vue/src/components/count-to/index.js:
--------------------------------------------------------------------------------
1 | import countTo from './count-to.vue'
2 | export default countTo
3 |
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/editor-app/libs/es5-shim-15.3.4.5/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | .DS_Store
3 |
--------------------------------------------------------------------------------
/vue/src/components/info-card/index.js:
--------------------------------------------------------------------------------
1 | import InforCard from './infor-card.vue'
2 | export default InforCard
3 |
--------------------------------------------------------------------------------
/vue/src/components/login-form/index.js:
--------------------------------------------------------------------------------
1 | import LoginForm from './login-form.vue'
2 | export default LoginForm
3 |
--------------------------------------------------------------------------------
/vue/src/view/components/transfer/index.js:
--------------------------------------------------------------------------------
1 | import Transferme from './transfer.vue';
2 | export default Transferme;
--------------------------------------------------------------------------------
/vue/src/components/common-icon/index.js:
--------------------------------------------------------------------------------
1 | import CommonIcon from './common-icon.vue'
2 | export default CommonIcon
3 |
--------------------------------------------------------------------------------
/vue/src/components/markdown/index.js:
--------------------------------------------------------------------------------
1 | import MarkdownEditor from './markdown.vue'
2 | export default MarkdownEditor
3 |
--------------------------------------------------------------------------------
/vue/src/components/parent-view/index.js:
--------------------------------------------------------------------------------
1 | import ParentView from './parent-view.vue'
2 | export default ParentView
3 |
--------------------------------------------------------------------------------
/vue/src/view/main/components/header-bar/index.js:
--------------------------------------------------------------------------------
1 | import HeaderBar from './header-bar'
2 | export default HeaderBar
3 |
--------------------------------------------------------------------------------
/vue/src/view/main/components/language/index.js:
--------------------------------------------------------------------------------
1 | import Language from './language.vue'
2 | export default Language
3 |
--------------------------------------------------------------------------------
/vue/src/view/main/components/side-menu/index.js:
--------------------------------------------------------------------------------
1 | import SideMenu from './side-menu.vue'
2 | export default SideMenu
3 |
--------------------------------------------------------------------------------
/vue/src/view/main/components/tags-nav/index.js:
--------------------------------------------------------------------------------
1 | import TagsNav from './tags-nav.vue'
2 | export default TagsNav
3 |
--------------------------------------------------------------------------------
/vue/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js: stable
3 | script: npm run lint
4 | notifications:
5 | email: false
6 |
--------------------------------------------------------------------------------
/vue/src/assets/images/logo.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/vue/src/assets/images/logo.jpg
--------------------------------------------------------------------------------
/vue/src/components/paste-editor/index.js:
--------------------------------------------------------------------------------
1 | import PasteEditor from './paste-editor.vue'
2 | export default PasteEditor
3 |
--------------------------------------------------------------------------------
/vue/src/assets/icons/iconfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/vue/src/assets/icons/iconfont.eot
--------------------------------------------------------------------------------
/vue/src/assets/icons/iconfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/vue/src/assets/icons/iconfont.ttf
--------------------------------------------------------------------------------
/vue/src/view/main/components/fullscreen/index.js:
--------------------------------------------------------------------------------
1 | import Fullscreen from './fullscreen.vue'
2 | export default Fullscreen
3 |
--------------------------------------------------------------------------------
/vue/src/assets/icons/iconfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/vue/src/assets/icons/iconfont.woff
--------------------------------------------------------------------------------
/vue/src/assets/images/login-bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/vue/src/assets/images/login-bg.jpg
--------------------------------------------------------------------------------
/vue/src/assets/images/logo-min.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/vue/src/assets/images/logo-min.jpg
--------------------------------------------------------------------------------
/vue/src/assets/images/qq-fance.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/vue/src/assets/images/qq-fance.jpg
--------------------------------------------------------------------------------
/vue/src/libs/api.request.js:
--------------------------------------------------------------------------------
1 | import HttpRequest from '@/libs/axios'
2 | const axios = new HttpRequest()
3 | export default axios
4 |
--------------------------------------------------------------------------------
/vue/src/assets/images/talkingdata.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/vue/src/assets/images/talkingdata.png
--------------------------------------------------------------------------------
/vue/src/components/charts/index.js:
--------------------------------------------------------------------------------
1 | import ChartPie from './pie.vue'
2 | import ChartBar from './bar.vue'
3 | export { ChartPie, ChartBar }
4 |
--------------------------------------------------------------------------------
/vue/src/view/main/components/header-bar/sider-trigger/index.js:
--------------------------------------------------------------------------------
1 | import siderTrigger from './sider-trigger.vue'
2 | export default siderTrigger
3 |
--------------------------------------------------------------------------------
/springboot/.settings/org.eclipse.m2e.core.prefs:
--------------------------------------------------------------------------------
1 | activeProfiles=
2 | eclipse.preferences.version=1
3 | resolveWorkspaceProjects=true
4 | version=1
5 |
--------------------------------------------------------------------------------
/springboot/src/main/java/com/bootdo/common/utils/UploadUtils.java:
--------------------------------------------------------------------------------
1 | package com.bootdo.common.utils;
2 |
3 | public class UploadUtils {
4 |
5 | }
6 |
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/editor-app/libs/es5-shim-15.3.4.5/tests/helpers/h.js:
--------------------------------------------------------------------------------
1 | function implement() {
2 | throw 'Not implemented';
3 | }
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/favicon.ico
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/a1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/a1.jpg
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/a2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/a2.jpg
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/a3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/a3.jpg
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/a4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/a4.jpg
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/a5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/a5.jpg
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/a6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/a6.jpg
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/a7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/a7.jpg
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/a8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/a8.jpg
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/a9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/a9.jpg
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/bg.png
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/p1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/p1.jpg
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/p2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/p2.jpg
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/p3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/p3.jpg
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/css/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/css/.DS_Store
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/.DS_Store
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/court.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/court.jpg
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/icons.png
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/index.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/index.jpg
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/user.png
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/js/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/js/.DS_Store
--------------------------------------------------------------------------------
/vue/src/view/main/components/header-bar/custom-bread-crumb/index.js:
--------------------------------------------------------------------------------
1 | import customBreadCrumb from './custom-bread-crumb.vue'
2 | export default customBreadCrumb
3 |
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/docs/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/docs/.DS_Store
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/backg01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/backg01.jpg
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/backg02.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/backg02.jpg
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/browser.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/browser.png
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/browser.psd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/browser.psd
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/index_4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/index_4.jpg
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/loading.gif
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/locked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/locked.png
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/p_big1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/p_big1.jpg
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/p_big2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/p_big2.jpg
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/p_big3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/p_big3.jpg
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/photo_s.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/photo_s.jpg
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/post-bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/post-bg.jpg
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/profile.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/profile.jpg
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/progress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/progress.png
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/qr_code.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/qr_code.png
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/success.png
--------------------------------------------------------------------------------
/vue/tests/unit/.eslintrc.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | env: {
3 | mocha: true
4 | },
5 | rules: {
6 | 'import/no-extraneous-dependencies': 'off'
7 | }
8 | }
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/wenku_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/wenku_logo.png
--------------------------------------------------------------------------------
/vue/src/index.less:
--------------------------------------------------------------------------------
1 | @import '~iview/src/styles/index.less';
2 |
3 | @menu-dark-title: #001529;
4 | @menu-dark-active-bg: #000c17;
5 | @layout-sider-background: #001529;
6 |
--------------------------------------------------------------------------------
/vue/src/view/main/components/header-bar/custom-bread-crumb/custom-bread-crumb.less:
--------------------------------------------------------------------------------
1 | .custom-bread-crumb{
2 | display: inline-block;
3 | vertical-align: top;
4 | }
5 |
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/blog/about-bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/blog/about-bg.jpg
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/blog/home-bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/blog/home-bg.jpg
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/blog/post-bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/blog/post-bg.jpg
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/blog/qqbootdo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/blog/qqbootdo.png
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/iconfont-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/iconfont-logo.png
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/profile_big.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/profile_big.jpg
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/profile_small.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/profile_small.jpg
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/img/webuploader.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/img/webuploader.png
--------------------------------------------------------------------------------
/springboot/src/main/resources/static/js/plugins/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lufeesang/iview-springboot/HEAD/springboot/src/main/resources/static/js/plugins/.DS_Store
--------------------------------------------------------------------------------
/vue/src/components/parent-view/parent-view.vue:
--------------------------------------------------------------------------------
1 |
2 |
本群为使用iview-admin或者对iview-admin感兴趣的开发者提供交流平台,在这里,解决你开发中的疑惑,共同进步。
8 |