├── .gitignore
├── LICENSE.txt
├── README.md
├── application
├── .htaccess
├── admin
│ ├── common.php
│ ├── controller
│ │ ├── AdminUser.php
│ │ ├── AuthGroup.php
│ │ ├── AuthRule.php
│ │ ├── AuthRuleGroup.php
│ │ ├── Error.php
│ │ ├── Forum.php
│ │ ├── Index.php
│ │ ├── Level.php
│ │ ├── Login.php
│ │ ├── Nav.php
│ │ ├── Score.php
│ │ ├── Site.php
│ │ ├── SystemConfig.php
│ │ ├── Tool.php
│ │ └── Upload.php
│ ├── validate
│ │ ├── AdminUser.php
│ │ ├── AdminValidate.php
│ │ ├── AuthGroup.php
│ │ ├── AuthRule.php
│ │ ├── Grade.php
│ │ └── SystemConfig.php
│ └── view
│ │ ├── admin_user
│ │ ├── _list.html
│ │ ├── add.html
│ │ ├── edit.html
│ │ ├── edit_password.html
│ │ └── edit_roles.html
│ │ ├── auth_group
│ │ ├── _list.html
│ │ ├── add.html
│ │ ├── edit.html
│ │ └── edit_rule.html
│ │ ├── auth_rule
│ │ ├── _list.html
│ │ ├── add.html
│ │ └── edit.html
│ │ ├── base.html
│ │ ├── forum
│ │ ├── category_add.html
│ │ ├── category_edit.html
│ │ ├── category_list.html
│ │ ├── config.html
│ │ ├── post_add.html
│ │ └── post_list.html
│ │ ├── index
│ │ ├── index.html
│ │ └── welcome.html
│ │ ├── login
│ │ └── index.html
│ │ ├── nav
│ │ ├── _list.html
│ │ ├── add.html
│ │ └── edit.html
│ │ ├── public
│ │ ├── Add.html
│ │ └── _list.html
│ │ ├── score
│ │ └── config.html
│ │ └── system_config
│ │ ├── _list.html
│ │ ├── add.html
│ │ ├── edit.html
│ │ ├── email.html
│ │ └── sms.html
├── command.php
├── common.php
├── common
│ ├── controller
│ │ ├── AdminController.php
│ │ ├── AppController.php
│ │ └── UserController.php
│ ├── helper
│ │ ├── Form.php
│ │ ├── Html.php
│ │ └── Lists.php
│ ├── model
│ │ ├── AdminUser.php
│ │ ├── Attachment.php
│ │ ├── AuthGroup.php
│ │ ├── AuthGroupAccess.php
│ │ ├── AuthRule.php
│ │ ├── AuthRuleGroup.php
│ │ ├── ModelBase.php
│ │ ├── Nav.php
│ │ ├── NavGroup.php
│ │ ├── SystemConfig.php
│ │ ├── Upload.php
│ │ ├── User.php
│ │ ├── UserCount.php
│ │ ├── UserGrade.php
│ │ ├── UserLevel.php
│ │ ├── UserMessage.php
│ │ ├── UserMessageRead.php
│ │ └── UserSign.php
│ └── validate
│ │ ├── IsOnlyPhone.php
│ │ └── ValidateBase.php
├── index
│ └── controller
│ │ └── Index.php
├── install
│ ├── common.php
│ ├── controller
│ │ ├── Index.php
│ │ └── Install.php
│ └── view
│ │ ├── Install
│ │ ├── step1.html
│ │ ├── step2.html
│ │ └── step3.html
│ │ ├── index
│ │ ├── complete.html
│ │ └── index.html
│ │ └── public
│ │ └── base.html
├── tags.php
└── user
│ ├── admin
│ ├── controller
│ │ └── User.php
│ └── view
│ │ ├── _list.html
│ │ ├── add.html
│ │ ├── config_register.html
│ │ ├── edit.html
│ │ └── edit_roles.html
│ ├── controller
│ ├── Comment.php
│ ├── Email.php
│ ├── Home.php
│ ├── Index.php
│ ├── Join.php
│ ├── Login.php
│ ├── Logout.php
│ ├── Message.php
│ ├── Post.php
│ ├── Set.php
│ ├── Sign.php
│ ├── Sms.php
│ └── Upload.php
│ ├── validate
│ ├── JoinValidate.php
│ ├── LoginValidate.php
│ ├── SetValidate.php
│ └── User.php
│ └── view
│ ├── base.html
│ ├── comment
│ └── index.html
│ ├── home
│ └── index.html
│ ├── index
│ ├── index.html
│ ├── menu.html
│ └── sign.html
│ ├── join
│ └── index.html
│ ├── login
│ └── index.html
│ ├── message
│ └── index.html
│ ├── post
│ └── index.html
│ ├── public
│ ├── footer.html
│ └── header.html
│ └── set
│ └── index.html
├── build.php
├── composer.json
├── config
├── admin
│ ├── auth.php
│ └── template.php
├── app.php
├── cache.php
├── console.php
├── cookie.php
├── database.php
├── database1.php
├── install
│ └── template.php
├── log.php
├── session.php
├── template.php
├── trace.php
└── user
│ ├── auth.php
│ └── template.php
├── database
└── and_andphp.sql
├── extend
└── org
│ ├── Auth.php
│ └── Upload.php
├── public
├── .htaccess
├── favicon.ico
├── index.php
├── install
│ ├── index.php
│ ├── install.sql
│ └── license.txt
├── robots.txt
├── router.php
├── static
│ ├── admin
│ │ ├── css
│ │ │ ├── animate.css
│ │ │ ├── global.css
│ │ │ ├── index.css
│ │ │ └── login.css
│ │ ├── images
│ │ │ ├── admin_logo.png
│ │ │ ├── admin_menu_bg.jpg
│ │ │ ├── album.png
│ │ │ ├── article.png
│ │ │ ├── bluesky.jpg
│ │ │ ├── default_headimg.png
│ │ │ ├── lockscreenbg.jpg
│ │ │ ├── product.png
│ │ │ └── user.png
│ │ └── js
│ │ │ ├── app.js
│ │ │ ├── global.js
│ │ │ ├── jparticle.jquery.js
│ │ │ ├── jquery.nicescroll.min.js
│ │ │ └── login
│ │ │ ├── animitter.min.js
│ │ │ ├── dat.gui.min.js
│ │ │ ├── login.js
│ │ │ └── toxiclibs.min.js
│ ├── common
│ │ ├── bootstrap
│ │ │ ├── css
│ │ │ │ └── bootstrap.min.css
│ │ │ ├── fonts
│ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ ├── js
│ │ │ │ └── bootstrap.min.js
│ │ │ └── less
│ │ │ │ └── glyphicons.less
│ │ ├── echarts
│ │ │ └── echarts.min.js
│ │ ├── font-awesome-4.7.0
│ │ │ ├── HELP-US-OUT.txt
│ │ │ ├── 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
│ │ │ ├── less
│ │ │ │ ├── animated.less
│ │ │ │ ├── bordered-pulled.less
│ │ │ │ ├── core.less
│ │ │ │ ├── fixed-width.less
│ │ │ │ ├── font-awesome.less
│ │ │ │ ├── icons.less
│ │ │ │ ├── larger.less
│ │ │ │ ├── list.less
│ │ │ │ ├── mixins.less
│ │ │ │ ├── path.less
│ │ │ │ ├── rotated-flipped.less
│ │ │ │ ├── screen-reader.less
│ │ │ │ ├── stacked.less
│ │ │ │ └── variables.less
│ │ │ └── scss
│ │ │ │ ├── _animated.scss
│ │ │ │ ├── _bordered-pulled.scss
│ │ │ │ ├── _core.scss
│ │ │ │ ├── _fixed-width.scss
│ │ │ │ ├── _icons.scss
│ │ │ │ ├── _larger.scss
│ │ │ │ ├── _list.scss
│ │ │ │ ├── _mixins.scss
│ │ │ │ ├── _path.scss
│ │ │ │ ├── _rotated-flipped.scss
│ │ │ │ ├── _screen-reader.scss
│ │ │ │ ├── _stacked.scss
│ │ │ │ ├── _variables.scss
│ │ │ │ └── font-awesome.scss
│ │ ├── 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
│ │ ├── images
│ │ │ ├── andphp_bg_jujue.png
│ │ │ ├── andphp_bg_null.png
│ │ │ ├── andphp_bg_shenhe.png
│ │ │ ├── andphp_logo.png
│ │ │ └── default_head_img.png
│ │ ├── jquery
│ │ │ └── jquery.min.js
│ │ ├── js
│ │ │ ├── jquery-1.8.3.min.js
│ │ │ ├── jquery-3.1.1.min.js
│ │ │ ├── jquery-3.2.1.min.js
│ │ │ └── jquery.md5.js
│ │ ├── layui
│ │ │ ├── css
│ │ │ │ ├── layui.css
│ │ │ │ ├── layui.mobile.css
│ │ │ │ └── modules
│ │ │ │ │ ├── code.css
│ │ │ │ │ ├── laydate
│ │ │ │ │ └── default
│ │ │ │ │ │ └── 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
│ │ │ ├── images
│ │ │ │ └── face
│ │ │ │ │ ├── 0.gif
│ │ │ │ │ ├── 1.gif
│ │ │ │ │ ├── 10.gif
│ │ │ │ │ ├── 11.gif
│ │ │ │ │ ├── 12.gif
│ │ │ │ │ ├── 13.gif
│ │ │ │ │ ├── 14.gif
│ │ │ │ │ ├── 15.gif
│ │ │ │ │ ├── 16.gif
│ │ │ │ │ ├── 17.gif
│ │ │ │ │ ├── 18.gif
│ │ │ │ │ ├── 19.gif
│ │ │ │ │ ├── 2.gif
│ │ │ │ │ ├── 20.gif
│ │ │ │ │ ├── 21.gif
│ │ │ │ │ ├── 22.gif
│ │ │ │ │ ├── 23.gif
│ │ │ │ │ ├── 24.gif
│ │ │ │ │ ├── 25.gif
│ │ │ │ │ ├── 26.gif
│ │ │ │ │ ├── 27.gif
│ │ │ │ │ ├── 28.gif
│ │ │ │ │ ├── 29.gif
│ │ │ │ │ ├── 3.gif
│ │ │ │ │ ├── 30.gif
│ │ │ │ │ ├── 31.gif
│ │ │ │ │ ├── 32.gif
│ │ │ │ │ ├── 33.gif
│ │ │ │ │ ├── 34.gif
│ │ │ │ │ ├── 35.gif
│ │ │ │ │ ├── 36.gif
│ │ │ │ │ ├── 37.gif
│ │ │ │ │ ├── 38.gif
│ │ │ │ │ ├── 39.gif
│ │ │ │ │ ├── 4.gif
│ │ │ │ │ ├── 40.gif
│ │ │ │ │ ├── 41.gif
│ │ │ │ │ ├── 42.gif
│ │ │ │ │ ├── 43.gif
│ │ │ │ │ ├── 44.gif
│ │ │ │ │ ├── 45.gif
│ │ │ │ │ ├── 46.gif
│ │ │ │ │ ├── 47.gif
│ │ │ │ │ ├── 48.gif
│ │ │ │ │ ├── 49.gif
│ │ │ │ │ ├── 5.gif
│ │ │ │ │ ├── 50.gif
│ │ │ │ │ ├── 51.gif
│ │ │ │ │ ├── 52.gif
│ │ │ │ │ ├── 53.gif
│ │ │ │ │ ├── 54.gif
│ │ │ │ │ ├── 55.gif
│ │ │ │ │ ├── 56.gif
│ │ │ │ │ ├── 57.gif
│ │ │ │ │ ├── 58.gif
│ │ │ │ │ ├── 59.gif
│ │ │ │ │ ├── 6.gif
│ │ │ │ │ ├── 60.gif
│ │ │ │ │ ├── 61.gif
│ │ │ │ │ ├── 62.gif
│ │ │ │ │ ├── 63.gif
│ │ │ │ │ ├── 64.gif
│ │ │ │ │ ├── 65.gif
│ │ │ │ │ ├── 66.gif
│ │ │ │ │ ├── 67.gif
│ │ │ │ │ ├── 68.gif
│ │ │ │ │ ├── 69.gif
│ │ │ │ │ ├── 7.gif
│ │ │ │ │ ├── 70.gif
│ │ │ │ │ ├── 71.gif
│ │ │ │ │ ├── 8.gif
│ │ │ │ │ └── 9.gif
│ │ │ ├── lay
│ │ │ │ └── modules
│ │ │ │ │ ├── app.js
│ │ │ │ │ ├── carousel.js
│ │ │ │ │ ├── code.js
│ │ │ │ │ ├── common.js
│ │ │ │ │ ├── element.js
│ │ │ │ │ ├── flow.js
│ │ │ │ │ ├── form.js
│ │ │ │ │ ├── jquery.js
│ │ │ │ │ ├── laydate.js
│ │ │ │ │ ├── layedit.js
│ │ │ │ │ ├── layer.js
│ │ │ │ │ ├── laypage.js
│ │ │ │ │ ├── laytpl.js
│ │ │ │ │ ├── md5.js
│ │ │ │ │ ├── mobile.js
│ │ │ │ │ ├── tab.js
│ │ │ │ │ ├── table.js
│ │ │ │ │ ├── tree.js
│ │ │ │ │ ├── upload.js
│ │ │ │ │ └── util.js
│ │ │ ├── layui.all.js
│ │ │ └── layui.js
│ │ ├── loaders
│ │ │ ├── loaders.css
│ │ │ ├── loaders.css.js
│ │ │ └── loaders.min.css
│ │ ├── sideshow
│ │ │ ├── css
│ │ │ │ ├── component.css
│ │ │ │ ├── demo.css
│ │ │ │ └── normalize.css
│ │ │ ├── fonts
│ │ │ │ └── codropsicons
│ │ │ │ │ ├── codropsicons.eot
│ │ │ │ │ ├── codropsicons.svg
│ │ │ │ │ ├── codropsicons.ttf
│ │ │ │ │ ├── codropsicons.woff
│ │ │ │ │ └── license.txt
│ │ │ ├── img
│ │ │ │ └── bluesky.jpg
│ │ │ └── js
│ │ │ │ ├── EasePack.min.js
│ │ │ │ ├── TweenLite.min.js
│ │ │ │ ├── demo-1.js
│ │ │ │ ├── demo-2.js
│ │ │ │ ├── demo-3.js
│ │ │ │ ├── demo-4.js
│ │ │ │ ├── html5.js
│ │ │ │ └── rAF.js
│ │ ├── swiper
│ │ │ └── dist
│ │ │ │ ├── css
│ │ │ │ ├── swiper.css
│ │ │ │ └── swiper.min.css
│ │ │ │ └── js
│ │ │ │ ├── swiper.esm.bundle.js
│ │ │ │ ├── swiper.esm.js
│ │ │ │ ├── swiper.js
│ │ │ │ ├── swiper.min.js
│ │ │ │ └── swiper.min.js.map
│ │ ├── ueditor
│ │ │ ├── dialogs
│ │ │ │ ├── anchor
│ │ │ │ │ └── anchor.html
│ │ │ │ ├── attachment
│ │ │ │ │ ├── attachment.css
│ │ │ │ │ ├── attachment.html
│ │ │ │ │ ├── attachment.js
│ │ │ │ │ ├── fileTypeImages
│ │ │ │ │ │ ├── icon_chm.gif
│ │ │ │ │ │ ├── icon_default.png
│ │ │ │ │ │ ├── icon_doc.gif
│ │ │ │ │ │ ├── icon_exe.gif
│ │ │ │ │ │ ├── icon_jpg.gif
│ │ │ │ │ │ ├── icon_mp3.gif
│ │ │ │ │ │ ├── icon_mv.gif
│ │ │ │ │ │ ├── icon_pdf.gif
│ │ │ │ │ │ ├── icon_ppt.gif
│ │ │ │ │ │ ├── icon_psd.gif
│ │ │ │ │ │ ├── icon_rar.gif
│ │ │ │ │ │ ├── icon_txt.gif
│ │ │ │ │ │ └── icon_xls.gif
│ │ │ │ │ └── images
│ │ │ │ │ │ ├── alignicon.gif
│ │ │ │ │ │ ├── alignicon.png
│ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ ├── file-icons.gif
│ │ │ │ │ │ ├── file-icons.png
│ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ ├── image.png
│ │ │ │ │ │ ├── progress.png
│ │ │ │ │ │ ├── success.gif
│ │ │ │ │ │ └── success.png
│ │ │ │ ├── background
│ │ │ │ │ ├── background.css
│ │ │ │ │ ├── background.html
│ │ │ │ │ ├── background.js
│ │ │ │ │ └── images
│ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ └── success.png
│ │ │ │ ├── charts
│ │ │ │ │ ├── chart.config.js
│ │ │ │ │ ├── charts.css
│ │ │ │ │ ├── charts.html
│ │ │ │ │ ├── charts.js
│ │ │ │ │ └── images
│ │ │ │ │ │ ├── charts0.png
│ │ │ │ │ │ ├── charts1.png
│ │ │ │ │ │ ├── charts2.png
│ │ │ │ │ │ ├── charts3.png
│ │ │ │ │ │ ├── charts4.png
│ │ │ │ │ │ └── charts5.png
│ │ │ │ ├── emotion
│ │ │ │ │ ├── emotion.css
│ │ │ │ │ ├── emotion.html
│ │ │ │ │ ├── emotion.js
│ │ │ │ │ └── images
│ │ │ │ │ │ ├── 0.gif
│ │ │ │ │ │ ├── bface.gif
│ │ │ │ │ │ ├── cface.gif
│ │ │ │ │ │ ├── fface.gif
│ │ │ │ │ │ ├── jxface2.gif
│ │ │ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ │ │ ├── tface.gif
│ │ │ │ │ │ ├── wface.gif
│ │ │ │ │ │ └── yface.gif
│ │ │ │ ├── gmap
│ │ │ │ │ └── gmap.html
│ │ │ │ ├── help
│ │ │ │ │ ├── help.css
│ │ │ │ │ ├── help.html
│ │ │ │ │ └── help.js
│ │ │ │ ├── image
│ │ │ │ │ ├── image.css
│ │ │ │ │ ├── image.html
│ │ │ │ │ ├── image.js
│ │ │ │ │ └── images
│ │ │ │ │ │ ├── alignicon.jpg
│ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ ├── image.png
│ │ │ │ │ │ ├── progress.png
│ │ │ │ │ │ ├── success.gif
│ │ │ │ │ │ └── success.png
│ │ │ │ ├── insertframe
│ │ │ │ │ └── insertframe.html
│ │ │ │ ├── internal.js
│ │ │ │ ├── link
│ │ │ │ │ └── link.html
│ │ │ │ ├── map
│ │ │ │ │ ├── map.html
│ │ │ │ │ └── show.html
│ │ │ │ ├── music
│ │ │ │ │ ├── music.css
│ │ │ │ │ ├── music.html
│ │ │ │ │ └── music.js
│ │ │ │ ├── preview
│ │ │ │ │ └── preview.html
│ │ │ │ ├── scrawl
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── addimg.png
│ │ │ │ │ │ ├── brush.png
│ │ │ │ │ │ ├── delimg.png
│ │ │ │ │ │ ├── delimgH.png
│ │ │ │ │ │ ├── empty.png
│ │ │ │ │ │ ├── emptyH.png
│ │ │ │ │ │ ├── eraser.png
│ │ │ │ │ │ ├── redo.png
│ │ │ │ │ │ ├── redoH.png
│ │ │ │ │ │ ├── scale.png
│ │ │ │ │ │ ├── scaleH.png
│ │ │ │ │ │ ├── size.png
│ │ │ │ │ │ ├── undo.png
│ │ │ │ │ │ └── undoH.png
│ │ │ │ │ ├── scrawl.css
│ │ │ │ │ ├── scrawl.html
│ │ │ │ │ └── scrawl.js
│ │ │ │ ├── searchreplace
│ │ │ │ │ ├── searchreplace.html
│ │ │ │ │ └── searchreplace.js
│ │ │ │ ├── snapscreen
│ │ │ │ │ └── snapscreen.html
│ │ │ │ ├── spechars
│ │ │ │ │ ├── spechars.html
│ │ │ │ │ └── spechars.js
│ │ │ │ ├── table
│ │ │ │ │ ├── dragicon.png
│ │ │ │ │ ├── edittable.css
│ │ │ │ │ ├── edittable.html
│ │ │ │ │ ├── edittable.js
│ │ │ │ │ ├── edittd.html
│ │ │ │ │ └── edittip.html
│ │ │ │ ├── template
│ │ │ │ │ ├── config.js
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── bg.gif
│ │ │ │ │ │ ├── pre0.png
│ │ │ │ │ │ ├── pre1.png
│ │ │ │ │ │ ├── pre2.png
│ │ │ │ │ │ ├── pre3.png
│ │ │ │ │ │ └── pre4.png
│ │ │ │ │ ├── template.css
│ │ │ │ │ ├── template.html
│ │ │ │ │ └── template.js
│ │ │ │ ├── video
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ ├── center_focus.jpg
│ │ │ │ │ │ ├── file-icons.gif
│ │ │ │ │ │ ├── file-icons.png
│ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ ├── image.png
│ │ │ │ │ │ ├── left_focus.jpg
│ │ │ │ │ │ ├── none_focus.jpg
│ │ │ │ │ │ ├── progress.png
│ │ │ │ │ │ ├── right_focus.jpg
│ │ │ │ │ │ ├── success.gif
│ │ │ │ │ │ └── success.png
│ │ │ │ │ ├── video.css
│ │ │ │ │ ├── video.html
│ │ │ │ │ └── video.js
│ │ │ │ ├── webapp
│ │ │ │ │ └── webapp.html
│ │ │ │ └── wordimage
│ │ │ │ │ ├── fClipboard_ueditor.swf
│ │ │ │ │ ├── imageUploader.swf
│ │ │ │ │ ├── tangram.js
│ │ │ │ │ ├── wordimage.html
│ │ │ │ │ └── wordimage.js
│ │ │ ├── index.html
│ │ │ ├── lang
│ │ │ │ ├── en
│ │ │ │ │ ├── en.js
│ │ │ │ │ └── images
│ │ │ │ │ │ ├── addimage.png
│ │ │ │ │ │ ├── alldeletebtnhoverskin.png
│ │ │ │ │ │ ├── alldeletebtnupskin.png
│ │ │ │ │ │ ├── background.png
│ │ │ │ │ │ ├── button.png
│ │ │ │ │ │ ├── copy.png
│ │ │ │ │ │ ├── deletedisable.png
│ │ │ │ │ │ ├── deleteenable.png
│ │ │ │ │ │ ├── listbackground.png
│ │ │ │ │ │ ├── localimage.png
│ │ │ │ │ │ ├── music.png
│ │ │ │ │ │ ├── rotateleftdisable.png
│ │ │ │ │ │ ├── rotateleftenable.png
│ │ │ │ │ │ ├── rotaterightdisable.png
│ │ │ │ │ │ ├── rotaterightenable.png
│ │ │ │ │ │ └── upload.png
│ │ │ │ └── zh-cn
│ │ │ │ │ ├── images
│ │ │ │ │ ├── copy.png
│ │ │ │ │ ├── localimage.png
│ │ │ │ │ ├── music.png
│ │ │ │ │ └── upload.png
│ │ │ │ │ └── zh-cn.js
│ │ │ ├── php
│ │ │ │ ├── Uploader.class.php
│ │ │ │ ├── action_crawler.php
│ │ │ │ ├── action_list.php
│ │ │ │ ├── action_upload.php
│ │ │ │ ├── config.json
│ │ │ │ └── controller.php
│ │ │ ├── themes
│ │ │ │ ├── default
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── ueditor.css
│ │ │ │ │ │ └── ueditor.min.css
│ │ │ │ │ ├── dialogbase.css
│ │ │ │ │ └── images
│ │ │ │ │ │ ├── anchor.gif
│ │ │ │ │ │ ├── arrow.png
│ │ │ │ │ │ ├── arrow_down.png
│ │ │ │ │ │ ├── arrow_up.png
│ │ │ │ │ │ ├── button-bg.gif
│ │ │ │ │ │ ├── cancelbutton.gif
│ │ │ │ │ │ ├── charts.png
│ │ │ │ │ │ ├── cursor_h.gif
│ │ │ │ │ │ ├── cursor_h.png
│ │ │ │ │ │ ├── cursor_v.gif
│ │ │ │ │ │ ├── cursor_v.png
│ │ │ │ │ │ ├── dialog-title-bg.png
│ │ │ │ │ │ ├── filescan.png
│ │ │ │ │ │ ├── highlighted.gif
│ │ │ │ │ │ ├── icons-all.gif
│ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ ├── loaderror.png
│ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ ├── lock.gif
│ │ │ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ │ │ ├── pagebreak.gif
│ │ │ │ │ │ ├── scale.png
│ │ │ │ │ │ ├── sortable.png
│ │ │ │ │ │ ├── spacer.gif
│ │ │ │ │ │ ├── sparator_v.png
│ │ │ │ │ │ ├── table-cell-align.png
│ │ │ │ │ │ ├── tangram-colorpicker.png
│ │ │ │ │ │ ├── toolbar_bg.png
│ │ │ │ │ │ ├── unhighlighted.gif
│ │ │ │ │ │ ├── upload.png
│ │ │ │ │ │ ├── videologo.gif
│ │ │ │ │ │ ├── word.gif
│ │ │ │ │ │ └── wordpaste.png
│ │ │ │ └── iframe.css
│ │ │ ├── third-party
│ │ │ │ ├── SyntaxHighlighter
│ │ │ │ │ ├── shCore.js
│ │ │ │ │ └── shCoreDefault.css
│ │ │ │ ├── codemirror
│ │ │ │ │ ├── codemirror.css
│ │ │ │ │ └── codemirror.js
│ │ │ │ ├── highcharts
│ │ │ │ │ ├── adapters
│ │ │ │ │ │ ├── mootools-adapter.js
│ │ │ │ │ │ ├── mootools-adapter.src.js
│ │ │ │ │ │ ├── prototype-adapter.js
│ │ │ │ │ │ ├── prototype-adapter.src.js
│ │ │ │ │ │ ├── standalone-framework.js
│ │ │ │ │ │ └── standalone-framework.src.js
│ │ │ │ │ ├── highcharts-more.js
│ │ │ │ │ ├── highcharts-more.src.js
│ │ │ │ │ ├── highcharts.js
│ │ │ │ │ ├── highcharts.src.js
│ │ │ │ │ ├── modules
│ │ │ │ │ │ ├── annotations.js
│ │ │ │ │ │ ├── annotations.src.js
│ │ │ │ │ │ ├── canvas-tools.js
│ │ │ │ │ │ ├── canvas-tools.src.js
│ │ │ │ │ │ ├── data.js
│ │ │ │ │ │ ├── data.src.js
│ │ │ │ │ │ ├── drilldown.js
│ │ │ │ │ │ ├── drilldown.src.js
│ │ │ │ │ │ ├── exporting.js
│ │ │ │ │ │ ├── exporting.src.js
│ │ │ │ │ │ ├── funnel.js
│ │ │ │ │ │ ├── funnel.src.js
│ │ │ │ │ │ ├── heatmap.js
│ │ │ │ │ │ ├── heatmap.src.js
│ │ │ │ │ │ ├── map.js
│ │ │ │ │ │ ├── map.src.js
│ │ │ │ │ │ ├── no-data-to-display.js
│ │ │ │ │ │ └── no-data-to-display.src.js
│ │ │ │ │ └── themes
│ │ │ │ │ │ ├── dark-blue.js
│ │ │ │ │ │ ├── dark-green.js
│ │ │ │ │ │ ├── gray.js
│ │ │ │ │ │ ├── grid.js
│ │ │ │ │ │ └── skies.js
│ │ │ │ ├── jquery-1.10.2.js
│ │ │ │ ├── jquery-1.10.2.min.js
│ │ │ │ ├── jquery-1.10.2.min.map
│ │ │ │ ├── snapscreen
│ │ │ │ │ └── UEditorSnapscreen.exe
│ │ │ │ ├── video-js
│ │ │ │ │ ├── font
│ │ │ │ │ │ ├── vjs.eot
│ │ │ │ │ │ ├── vjs.svg
│ │ │ │ │ │ ├── vjs.ttf
│ │ │ │ │ │ └── vjs.woff
│ │ │ │ │ ├── video-js.css
│ │ │ │ │ ├── video-js.min.css
│ │ │ │ │ ├── video-js.swf
│ │ │ │ │ ├── video.dev.js
│ │ │ │ │ └── video.js
│ │ │ │ ├── webuploader
│ │ │ │ │ ├── Uploader.swf
│ │ │ │ │ ├── webuploader.css
│ │ │ │ │ ├── webuploader.custom.js
│ │ │ │ │ ├── webuploader.custom.min.js
│ │ │ │ │ ├── webuploader.flashonly.js
│ │ │ │ │ ├── webuploader.flashonly.min.js
│ │ │ │ │ ├── webuploader.html5only.js
│ │ │ │ │ ├── webuploader.html5only.min.js
│ │ │ │ │ ├── webuploader.js
│ │ │ │ │ ├── webuploader.min.js
│ │ │ │ │ ├── webuploader.withoutimage.js
│ │ │ │ │ └── webuploader.withoutimage.min.js
│ │ │ │ ├── xss.min.js
│ │ │ │ └── zeroclipboard
│ │ │ │ │ ├── ZeroClipboard.js
│ │ │ │ │ ├── ZeroClipboard.min.js
│ │ │ │ │ └── ZeroClipboard.swf
│ │ │ ├── ueditor.all.js
│ │ │ ├── ueditor.all.min.js
│ │ │ ├── ueditor.config.js
│ │ │ ├── ueditor.parse.js
│ │ │ └── ueditor.parse.min.js
│ │ ├── walking
│ │ │ ├── common.css
│ │ │ ├── images
│ │ │ │ ├── 1.png
│ │ │ │ ├── 2.png
│ │ │ │ ├── 3.png
│ │ │ │ ├── 4.png
│ │ │ │ ├── and-php.png
│ │ │ │ ├── andphp.png
│ │ │ │ ├── foot.png
│ │ │ │ ├── good.png
│ │ │ │ ├── gradient-left.png
│ │ │ │ ├── gradient-right.png
│ │ │ │ ├── horizon.png
│ │ │ │ ├── left-bicep.png
│ │ │ │ ├── left-forearm.png
│ │ │ │ ├── left-thigh.png
│ │ │ │ ├── not-only-the-back-end-system.png
│ │ │ │ ├── right-bicep.png
│ │ │ │ ├── right-forearm.png
│ │ │ │ ├── right-thigh.png
│ │ │ │ ├── shadow.png
│ │ │ │ ├── shin.png
│ │ │ │ ├── toes.png
│ │ │ │ ├── torso.png
│ │ │ │ └── torso1.png
│ │ │ ├── moz_keyframes.css
│ │ │ └── webkit_keyframes.css
│ │ └── zui
│ │ │ ├── css
│ │ │ ├── zui-theme.css
│ │ │ ├── zui-theme.min.css
│ │ │ ├── zui.css
│ │ │ ├── zui.lite.css
│ │ │ ├── zui.lite.min.css
│ │ │ └── zui.min.css
│ │ │ ├── fonts
│ │ │ ├── zenicon.eot
│ │ │ ├── zenicon.svg
│ │ │ ├── zenicon.ttf
│ │ │ └── zenicon.woff
│ │ │ ├── js
│ │ │ ├── zui.js
│ │ │ ├── zui.lite.js
│ │ │ ├── zui.lite.min.js
│ │ │ └── zui.min.js
│ │ │ └── lib
│ │ │ ├── array
│ │ │ ├── zui.array.js
│ │ │ └── zui.array.min.js
│ │ │ ├── board
│ │ │ ├── zui.board.css
│ │ │ ├── zui.board.js
│ │ │ ├── zui.board.min.css
│ │ │ └── zui.board.min.js
│ │ │ ├── bootbox
│ │ │ ├── bootbox.css
│ │ │ ├── bootbox.js
│ │ │ ├── bootbox.min.css
│ │ │ └── bootbox.min.js
│ │ │ ├── calendar
│ │ │ ├── zui.calendar.css
│ │ │ ├── zui.calendar.js
│ │ │ ├── zui.calendar.min.css
│ │ │ └── zui.calendar.min.js
│ │ │ ├── chart
│ │ │ ├── zui.chart.js
│ │ │ └── zui.chart.min.js
│ │ │ ├── chosen
│ │ │ ├── chosen.css
│ │ │ ├── chosen.js
│ │ │ ├── chosen.min.css
│ │ │ └── chosen.min.js
│ │ │ ├── chosenicons
│ │ │ ├── zui.chosenicons.css
│ │ │ ├── zui.chosenicons.js
│ │ │ ├── zui.chosenicons.min.css
│ │ │ └── zui.chosenicons.min.js
│ │ │ ├── clipboard
│ │ │ ├── clipboard.js
│ │ │ └── clipboard.min.js
│ │ │ ├── colorpicker
│ │ │ ├── zui.colorpicker.css
│ │ │ ├── zui.colorpicker.js
│ │ │ ├── zui.colorpicker.min.css
│ │ │ └── zui.colorpicker.min.js
│ │ │ ├── colorset.js
│ │ │ ├── zui.colorset.js
│ │ │ └── zui.colorset.min.js
│ │ │ ├── dashboard
│ │ │ ├── zui.dashboard.css
│ │ │ ├── zui.dashboard.js
│ │ │ ├── zui.dashboard.min.css
│ │ │ └── zui.dashboard.min.js
│ │ │ ├── datagrid
│ │ │ ├── zui.datagrid.css
│ │ │ ├── zui.datagrid.js
│ │ │ ├── zui.datagrid.min.css
│ │ │ └── zui.datagrid.min.js
│ │ │ ├── datatable
│ │ │ ├── zui.datatable.css
│ │ │ ├── zui.datatable.js
│ │ │ ├── zui.datatable.min.css
│ │ │ └── zui.datatable.min.js
│ │ │ ├── datetimepicker
│ │ │ ├── datetimepicker.css
│ │ │ ├── datetimepicker.js
│ │ │ ├── datetimepicker.min.css
│ │ │ └── datetimepicker.min.js
│ │ │ ├── hotkey
│ │ │ ├── hotkey.js
│ │ │ └── hotkey.min.js
│ │ │ ├── ieonly
│ │ │ ├── excanvas.js
│ │ │ ├── html5shiv.js
│ │ │ └── respond.js
│ │ │ ├── imgcutter
│ │ │ ├── zui.imgcutter.css
│ │ │ ├── zui.imgcutter.js
│ │ │ ├── zui.imgcutter.min.css
│ │ │ └── zui.imgcutter.min.js
│ │ │ ├── imgready
│ │ │ ├── imgready.js
│ │ │ └── imgready.min.js
│ │ │ ├── jquery
│ │ │ └── jquery.js
│ │ │ ├── kindeditor
│ │ │ ├── README.md
│ │ │ ├── kindeditor.css
│ │ │ ├── kindeditor.js
│ │ │ ├── kindeditor.min.css
│ │ │ ├── kindeditor.min.js
│ │ │ ├── lang
│ │ │ │ ├── en.js
│ │ │ │ ├── zh_CN.js
│ │ │ │ └── zh_TW.js
│ │ │ ├── plugins.zip
│ │ │ └── themes
│ │ │ │ └── default
│ │ │ │ └── default.png
│ │ │ ├── migrate1.2
│ │ │ ├── zui.migrate1.2.js
│ │ │ └── zui.migrate1.2.min.js
│ │ │ ├── prettify
│ │ │ ├── lang-apollo.js
│ │ │ ├── lang-basic.js
│ │ │ ├── lang-clj.js
│ │ │ ├── lang-css.js
│ │ │ ├── lang-dart.js
│ │ │ ├── lang-erlang.js
│ │ │ ├── lang-go.js
│ │ │ ├── lang-hs.js
│ │ │ ├── lang-lisp.js
│ │ │ ├── lang-llvm.js
│ │ │ ├── lang-lua.js
│ │ │ ├── lang-matlab.js
│ │ │ ├── lang-ml.js
│ │ │ ├── lang-mumps.js
│ │ │ ├── lang-n.js
│ │ │ ├── lang-pascal.js
│ │ │ ├── lang-proto.js
│ │ │ ├── lang-r.js
│ │ │ ├── lang-rd.js
│ │ │ ├── lang-scala.js
│ │ │ ├── lang-sql.js
│ │ │ ├── lang-tcl.js
│ │ │ ├── lang-tex.js
│ │ │ ├── lang-vb.js
│ │ │ ├── lang-vhdl.js
│ │ │ ├── lang-wiki.js
│ │ │ ├── lang-xq.js
│ │ │ ├── lang-yaml.js
│ │ │ ├── prettify.css
│ │ │ ├── prettify.js
│ │ │ └── run_prettify.js
│ │ │ ├── selectable
│ │ │ ├── zui.selectable.js
│ │ │ └── zui.selectable.min.js
│ │ │ ├── sortable
│ │ │ ├── zui.sortable.js
│ │ │ └── zui.sortable.min.js
│ │ │ ├── tabs
│ │ │ ├── zui.tabs.css
│ │ │ ├── zui.tabs.js
│ │ │ ├── zui.tabs.min.css
│ │ │ └── zui.tabs.min.js
│ │ │ ├── treemap
│ │ │ ├── zui.treemap.css
│ │ │ ├── zui.treemap.js
│ │ │ ├── zui.treemap.min.css
│ │ │ └── zui.treemap.min.js
│ │ │ ├── ueditor
│ │ │ ├── ueditor.css
│ │ │ └── ueditor.min.css
│ │ │ └── uploader
│ │ │ ├── Moxie.swf
│ │ │ ├── Moxie.xap
│ │ │ ├── zui.uploader.css
│ │ │ ├── zui.uploader.js
│ │ │ ├── zui.uploader.min.css
│ │ │ └── zui.uploader.min.js
│ └── user
│ │ ├── css
│ │ ├── full.css
│ │ ├── global.css
│ │ ├── iconfont.eot
│ │ ├── iconfont.svg
│ │ ├── iconfont.ttf
│ │ ├── iconfont.woff
│ │ ├── index.css
│ │ ├── shop.css
│ │ ├── shopbasic.css
│ │ └── tp5page.css
│ │ ├── images
│ │ ├── acc.png
│ │ ├── ai.png
│ │ ├── aif.png
│ │ ├── app.png
│ │ ├── atom.png
│ │ ├── avatar
│ │ │ ├── 0.jpg
│ │ │ ├── 00.jpg
│ │ │ ├── 1.jpg
│ │ │ ├── 10.jpg
│ │ │ ├── 11.jpg
│ │ │ ├── 2.jpg
│ │ │ ├── 3.jpg
│ │ │ ├── 4.jpg
│ │ │ ├── 5.jpg
│ │ │ ├── 6.jpg
│ │ │ ├── 7.jpg
│ │ │ ├── 8.jpg
│ │ │ ├── 9.jpg
│ │ │ └── default.png
│ │ ├── avi.png
│ │ ├── bmp.png
│ │ ├── cdr.png
│ │ ├── css.png
│ │ ├── doc.png
│ │ ├── docx.png
│ │ ├── eps.png
│ │ ├── evex.png
│ │ ├── exe.png
│ │ ├── favicon.png
│ │ ├── fla.png
│ │ ├── flv.png
│ │ ├── gzip.png
│ │ ├── html.png
│ │ ├── icons.7fc7e2bab2.png
│ │ ├── icons_2x.b54790f3c7.png
│ │ ├── indd.png
│ │ ├── js.png
│ │ ├── keynote.png
│ │ ├── loading.gif
│ │ ├── logo.png
│ │ ├── logo1.png
│ │ ├── mov.png
│ │ ├── mp4.png
│ │ ├── numbers.png
│ │ ├── otf.png
│ │ ├── pages.png
│ │ ├── pdf.png
│ │ ├── php.png
│ │ ├── png.png
│ │ ├── ppt.png
│ │ ├── pptx.png
│ │ ├── psd.png
│ │ ├── raw.png
│ │ ├── rss.png
│ │ ├── rtf.png
│ │ ├── sql.png
│ │ ├── svg.png
│ │ ├── swf.png
│ │ ├── tar.png
│ │ ├── tiff.png
│ │ ├── timg.jpg
│ │ ├── ttf.png
│ │ ├── vs-icon.png
│ │ ├── wav.png
│ │ ├── wmv.png
│ │ ├── xls.png
│ │ ├── xlsx.png
│ │ └── xml.png
│ │ └── js
│ │ └── user.js
├── tpl
│ └── dispatch_jump.tpl
└── uploads
│ └── admin
│ └── admin_thumb
│ ├── 20180306
│ ├── 2663da766cf2163b9f4254542ccc142e.jpg
│ ├── ecbd2f8dd06090b2336645d3b9f7720c.png
│ └── fea3fbba5f988961b3f2dbe6f99db1ba.png
│ └── 20180424
│ └── 9cb903fd1485dcf57661bbc10dcd5ca9.jpg
├── route
└── route.php
├── runtime
└── .gitignore
├── think
├── thinkphp
├── .gitignore
├── .htaccess
├── CONTRIBUTING.md
├── LICENSE.txt
├── README.md
├── base.php
├── composer.json
├── convention.php
├── helper.php
├── lang
│ └── zh-cn.php
├── library
│ ├── think
│ │ ├── App.php
│ │ ├── Build.php
│ │ ├── Cache.php
│ │ ├── Collection.php
│ │ ├── Config.php
│ │ ├── Console.php
│ │ ├── Container.php
│ │ ├── Controller.php
│ │ ├── Cookie.php
│ │ ├── Db.php
│ │ ├── Debug.php
│ │ ├── Env.php
│ │ ├── Error.php
│ │ ├── Exception.php
│ │ ├── Facade.php
│ │ ├── File.php
│ │ ├── Hook.php
│ │ ├── Lang.php
│ │ ├── Loader.php
│ │ ├── Log.php
│ │ ├── Middleware.php
│ │ ├── Model.php
│ │ ├── Paginator.php
│ │ ├── Process.php
│ │ ├── Request.php
│ │ ├── Response.php
│ │ ├── Route.php
│ │ ├── Session.php
│ │ ├── Template.php
│ │ ├── Url.php
│ │ ├── Validate.php
│ │ ├── View.php
│ │ ├── cache
│ │ │ ├── Driver.php
│ │ │ └── driver
│ │ │ │ ├── File.php
│ │ │ │ ├── Lite.php
│ │ │ │ ├── Memcache.php
│ │ │ │ ├── Memcached.php
│ │ │ │ ├── Redis.php
│ │ │ │ ├── Sqlite.php
│ │ │ │ ├── Wincache.php
│ │ │ │ └── Xcache.php
│ │ ├── config
│ │ │ └── driver
│ │ │ │ ├── Ini.php
│ │ │ │ ├── Json.php
│ │ │ │ └── Xml.php
│ │ ├── console
│ │ │ ├── Command.php
│ │ │ ├── Input.php
│ │ │ ├── LICENSE
│ │ │ ├── Output.php
│ │ │ ├── bin
│ │ │ │ ├── README.md
│ │ │ │ └── hiddeninput.exe
│ │ │ ├── command
│ │ │ │ ├── Build.php
│ │ │ │ ├── Clear.php
│ │ │ │ ├── Help.php
│ │ │ │ ├── Lists.php
│ │ │ │ ├── Make.php
│ │ │ │ ├── RunServer.php
│ │ │ │ ├── make
│ │ │ │ │ ├── Controller.php
│ │ │ │ │ ├── Middleware.php
│ │ │ │ │ ├── Model.php
│ │ │ │ │ └── stubs
│ │ │ │ │ │ ├── controller.api.stub
│ │ │ │ │ │ ├── controller.plain.stub
│ │ │ │ │ │ ├── controller.stub
│ │ │ │ │ │ ├── middleware.stub
│ │ │ │ │ │ └── model.stub
│ │ │ │ └── optimize
│ │ │ │ │ ├── Autoload.php
│ │ │ │ │ ├── Config.php
│ │ │ │ │ ├── Route.php
│ │ │ │ │ └── Schema.php
│ │ │ ├── input
│ │ │ │ ├── Argument.php
│ │ │ │ ├── Definition.php
│ │ │ │ └── Option.php
│ │ │ └── output
│ │ │ │ ├── Ask.php
│ │ │ │ ├── Descriptor.php
│ │ │ │ ├── Formatter.php
│ │ │ │ ├── Question.php
│ │ │ │ ├── descriptor
│ │ │ │ └── Console.php
│ │ │ │ ├── driver
│ │ │ │ ├── Buffer.php
│ │ │ │ ├── Console.php
│ │ │ │ └── Nothing.php
│ │ │ │ ├── formatter
│ │ │ │ ├── Stack.php
│ │ │ │ └── Style.php
│ │ │ │ └── question
│ │ │ │ ├── Choice.php
│ │ │ │ └── Confirmation.php
│ │ ├── db
│ │ │ ├── Builder.php
│ │ │ ├── Connection.php
│ │ │ ├── Expression.php
│ │ │ ├── Query.php
│ │ │ ├── builder
│ │ │ │ ├── Mysql.php
│ │ │ │ ├── Pgsql.php
│ │ │ │ ├── Sqlite.php
│ │ │ │ └── Sqlsrv.php
│ │ │ ├── connector
│ │ │ │ ├── Mysql.php
│ │ │ │ ├── Pgsql.php
│ │ │ │ ├── Sqlite.php
│ │ │ │ ├── Sqlsrv.php
│ │ │ │ └── pgsql.sql
│ │ │ └── exception
│ │ │ │ ├── BindParamException.php
│ │ │ │ ├── DataNotFoundException.php
│ │ │ │ └── ModelNotFoundException.php
│ │ ├── debug
│ │ │ ├── Console.php
│ │ │ └── Html.php
│ │ ├── exception
│ │ │ ├── ClassNotFoundException.php
│ │ │ ├── DbException.php
│ │ │ ├── ErrorException.php
│ │ │ ├── Handle.php
│ │ │ ├── HttpException.php
│ │ │ ├── HttpResponseException.php
│ │ │ ├── PDOException.php
│ │ │ ├── RouteNotFoundException.php
│ │ │ ├── TemplateNotFoundException.php
│ │ │ ├── ThrowableError.php
│ │ │ └── ValidateException.php
│ │ ├── facade
│ │ │ ├── App.php
│ │ │ ├── Build.php
│ │ │ ├── Cache.php
│ │ │ ├── Config.php
│ │ │ ├── Cookie.php
│ │ │ ├── Debug.php
│ │ │ ├── Env.php
│ │ │ ├── Hook.php
│ │ │ ├── Lang.php
│ │ │ ├── Log.php
│ │ │ ├── Middleware.php
│ │ │ ├── Request.php
│ │ │ ├── Response.php
│ │ │ ├── Route.php
│ │ │ ├── Session.php
│ │ │ ├── Url.php
│ │ │ ├── Validate.php
│ │ │ └── View.php
│ │ ├── log
│ │ │ └── driver
│ │ │ │ ├── File.php
│ │ │ │ ├── Socket.php
│ │ │ │ └── Test.php
│ │ ├── model
│ │ │ ├── Collection.php
│ │ │ ├── Pivot.php
│ │ │ ├── Relation.php
│ │ │ ├── concern
│ │ │ │ ├── Attribute.php
│ │ │ │ ├── Conversion.php
│ │ │ │ ├── ModelEvent.php
│ │ │ │ ├── RelationShip.php
│ │ │ │ ├── SoftDelete.php
│ │ │ │ └── TimeStamp.php
│ │ │ └── relation
│ │ │ │ ├── BelongsTo.php
│ │ │ │ ├── BelongsToMany.php
│ │ │ │ ├── HasMany.php
│ │ │ │ ├── HasManyThrough.php
│ │ │ │ ├── HasOne.php
│ │ │ │ ├── MorphMany.php
│ │ │ │ ├── MorphOne.php
│ │ │ │ ├── MorphTo.php
│ │ │ │ └── OneToOne.php
│ │ ├── paginator
│ │ │ └── driver
│ │ │ │ ├── Bootstrap.php
│ │ │ │ └── Layui.php
│ │ ├── process
│ │ │ ├── Builder.php
│ │ │ ├── Utils.php
│ │ │ ├── exception
│ │ │ │ ├── Faild.php
│ │ │ │ ├── Failed.php
│ │ │ │ └── Timeout.php
│ │ │ └── pipes
│ │ │ │ ├── Pipes.php
│ │ │ │ ├── Unix.php
│ │ │ │ └── Windows.php
│ │ ├── response
│ │ │ ├── Json.php
│ │ │ ├── Jsonp.php
│ │ │ ├── Jump.php
│ │ │ ├── Redirect.php
│ │ │ ├── View.php
│ │ │ └── Xml.php
│ │ ├── route
│ │ │ ├── AliasRule.php
│ │ │ ├── Dispatch.php
│ │ │ ├── Domain.php
│ │ │ ├── Resource.php
│ │ │ ├── Rule.php
│ │ │ ├── RuleGroup.php
│ │ │ ├── RuleItem.php
│ │ │ ├── RuleName.php
│ │ │ └── dispatch
│ │ │ │ ├── Callback.php
│ │ │ │ ├── Controller.php
│ │ │ │ ├── Module.php
│ │ │ │ ├── Redirect.php
│ │ │ │ ├── Response.php
│ │ │ │ ├── Url.php
│ │ │ │ └── View.php
│ │ ├── session
│ │ │ └── driver
│ │ │ │ ├── Memcache.php
│ │ │ │ ├── Memcached.php
│ │ │ │ └── Redis.php
│ │ ├── template
│ │ │ ├── TagLib.php
│ │ │ ├── driver
│ │ │ │ └── File.php
│ │ │ └── taglib
│ │ │ │ └── Cx.php
│ │ ├── validate
│ │ │ └── ValidateRule.php
│ │ └── view
│ │ │ └── driver
│ │ │ ├── Php.php
│ │ │ └── Think.php
│ └── traits
│ │ └── controller
│ │ └── Jump.php
├── logo.png
├── phpunit.xml.dist
└── tpl
│ ├── default_index.tpl
│ ├── dispatch_jump.tpl
│ ├── page_trace.tpl
│ └── think_exception.tpl
└── vendor
├── autoload.php
├── composer
├── ClassLoader.php
├── LICENSE
├── autoload_classmap.php
├── autoload_files.php
├── autoload_namespaces.php
├── autoload_psr4.php
├── autoload_real.php
├── autoload_static.php
└── installed.json
└── topthink
├── think-captcha
├── .gitignore
├── LICENSE
├── README.md
├── assets
│ ├── bgs
│ │ ├── 1.jpg
│ │ ├── 2.jpg
│ │ ├── 3.jpg
│ │ ├── 4.jpg
│ │ ├── 5.jpg
│ │ ├── 6.jpg
│ │ ├── 7.jpg
│ │ └── 8.jpg
│ ├── ttfs
│ │ ├── 1.ttf
│ │ ├── 2.ttf
│ │ ├── 3.ttf
│ │ ├── 4.ttf
│ │ ├── 5.ttf
│ │ └── 6.ttf
│ └── zhttfs
│ │ └── 1.ttf
├── composer.json
└── src
│ ├── Captcha.php
│ ├── CaptchaController.php
│ └── helper.php
└── think-installer
├── .gitignore
├── composer.json
└── src
├── Plugin.php
├── ThinkExtend.php
├── ThinkFramework.php
└── ThinkTesting.php
/.gitignore:
--------------------------------------------------------------------------------
1 | /.vscode
2 | /vendor
3 | *.log
4 | .env
5 | /.idea
--------------------------------------------------------------------------------
/application/.htaccess:
--------------------------------------------------------------------------------
1 | deny from all
--------------------------------------------------------------------------------
/application/admin/view/system_config/sms.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Title
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/application/command.php:
--------------------------------------------------------------------------------
1 |
10 | // +----------------------------------------------------------------------
11 |
12 | return [];
13 |
--------------------------------------------------------------------------------
/application/common/model/Attachment.php:
--------------------------------------------------------------------------------
1 |
10 | * +----------------------------------------------------------------------
11 | * | createTime :2018/3/5 00059:38
12 | * +----------------------------------------------------------------------
13 | */
14 |
15 | namespace app\common\model;
16 |
17 |
18 | class Attachment extends ModelBase
19 | {
20 |
21 | }
--------------------------------------------------------------------------------
/application/common/model/AuthGroupAccess.php:
--------------------------------------------------------------------------------
1 |
10 | * +----------------------------------------------------------------------
11 | * | createTime :2018/3/5 000510:12
12 | * +----------------------------------------------------------------------
13 | */
14 |
15 | namespace app\common\model;
16 |
17 |
18 | use think\model\Pivot;
19 |
20 | class AuthGroupAccess extends Pivot
21 | {
22 |
23 | }
--------------------------------------------------------------------------------
/application/common/model/AuthRuleGroup.php:
--------------------------------------------------------------------------------
1 |
10 | * +----------------------------------------------------------------------
11 | * | createTime :2018/4/19 001916:35
12 | * +----------------------------------------------------------------------
13 | */
14 |
15 | namespace app\common\model;
16 |
17 |
18 | class AuthRuleGroup extends ModelBase
19 | {
20 |
21 | }
--------------------------------------------------------------------------------
/application/common/model/ModelBase.php:
--------------------------------------------------------------------------------
1 |
10 | * +----------------------------------------------------------------------
11 | * | createTime :2018/3/2 000219:19
12 | * +----------------------------------------------------------------------
13 | */
14 |
15 | namespace app\common\model;
16 |
17 |
18 | use think\Model;
19 |
20 | class ModelBase extends Model
21 | {
22 | /**
23 | * 开启自动记录时间戳
24 | * @var bool
25 | */
26 | protected $autoWriteTimestamp = true;
27 | }
--------------------------------------------------------------------------------
/application/common/model/Nav.php:
--------------------------------------------------------------------------------
1 |
10 | * +----------------------------------------------------------------------
11 | * | CreateTime : 2018/4/27 002715:54
12 | * +----------------------------------------------------------------------
13 | */
14 |
15 | namespace app\common\model;
16 |
17 |
18 | class Nav extends ModelBase
19 | {
20 |
21 | public function parent()
22 | {
23 | return $this->hasOne('NavGroup');
24 | }
25 | }
--------------------------------------------------------------------------------
/application/common/model/NavGroup.php:
--------------------------------------------------------------------------------
1 |
10 | * +----------------------------------------------------------------------
11 | * | CreateTime : 2018/4/27 002715:54
12 | * +----------------------------------------------------------------------
13 | */
14 |
15 | namespace app\common\model;
16 |
17 |
18 | class NavGroup extends ModelBase
19 | {
20 | public function nav()
21 | {
22 | return $this->hasMany('Nav','group_id','id');
23 | }
24 | }
--------------------------------------------------------------------------------
/application/common/model/UserCount.php:
--------------------------------------------------------------------------------
1 |
10 | * +----------------------------------------------------------------------
11 | * | createTime :2018/3/14 001418:02
12 | * +----------------------------------------------------------------------
13 | */
14 |
15 | namespace app\common\model;
16 |
17 |
18 | class UserCount extends ModelBase
19 | {
20 |
21 | }
--------------------------------------------------------------------------------
/application/common/model/UserGrade.php:
--------------------------------------------------------------------------------
1 |
10 | * +----------------------------------------------------------------------
11 | * | createTime :2018/3/16 001620:24
12 | * +----------------------------------------------------------------------
13 | */
14 |
15 | namespace app\common\model;
16 |
17 |
18 | class UserGrade extends ModelBase
19 | {
20 |
21 | }
--------------------------------------------------------------------------------
/application/common/model/UserLevel.php:
--------------------------------------------------------------------------------
1 |
10 | * +----------------------------------------------------------------------
11 | * | createTime :2018/3/14 001418:02
12 | * +----------------------------------------------------------------------
13 | */
14 |
15 | namespace app\common\model;
16 |
17 |
18 | class UserLevel extends ModelBase
19 | {
20 |
21 | }
--------------------------------------------------------------------------------
/application/common/model/UserMessage.php:
--------------------------------------------------------------------------------
1 |
10 | * +----------------------------------------------------------------------
11 | * | createTime :2018/3/22 002221:44
12 | * +----------------------------------------------------------------------
13 | */
14 |
15 | namespace app\common\model;
16 |
17 |
18 | class UserMessage extends ModelBase
19 | {
20 |
21 | }
--------------------------------------------------------------------------------
/application/common/model/UserMessageRead.php:
--------------------------------------------------------------------------------
1 |
10 | * +----------------------------------------------------------------------
11 | * | createTime :2018/3/22 002221:49
12 | * +----------------------------------------------------------------------
13 | */
14 |
15 | namespace app\common\model;
16 |
17 |
18 | class UserMessageRead extends ModelBase
19 | {
20 |
21 | }
--------------------------------------------------------------------------------
/application/common/model/UserSign.php:
--------------------------------------------------------------------------------
1 |
10 | * +----------------------------------------------------------------------
11 | * | createTime :2018/4/23 002315:10
12 | * +----------------------------------------------------------------------
13 | */
14 |
15 | namespace app\common\model;
16 |
17 |
18 | class UserSign extends ModelBase
19 | {
20 |
21 | }
--------------------------------------------------------------------------------
/application/common/validate/IsOnlyPhone.php:
--------------------------------------------------------------------------------
1 |
10 | * +----------------------------------------------------------------------
11 | * | createTime :2018/3/20 002019:20
12 | * +----------------------------------------------------------------------
13 | */
14 |
15 | namespace app\common\validate;
16 |
17 |
18 | class IsOnlyPhone extends ValidateBase
19 | {
20 | protected $rule = [
21 | 'phone' => 'require|isMobile|unique:user',
22 | ];
23 |
24 |
25 | protected $message=[
26 | 'phone.require' => '手机号不能为空',
27 | 'phone.isMobile' => '手机号格式不正确',
28 | 'phone.unique' => '手机号已注册',
29 | ];
30 | }
--------------------------------------------------------------------------------
/application/index/controller/Index.php:
--------------------------------------------------------------------------------
1 | *{ padding: 0; margin: 0; } div{ padding: 4px 48px;} a{color:#2E5CD5;cursor: pointer;text-decoration: none} a:hover{text-decoration:underline; } body{ background: #fff; font-family: "Century Gothic","Microsoft yahei"; color: #333;font-size:18px;} h1{ font-size: 100px; font-weight: normal; margin-bottom: 12px; } p{ line-height: 1.6em; font-size: 42px } :)
ThinkPHP V5.1
12载初心不改(2006-2018) - 你值得信赖的PHP框架
';
13 | }
14 |
15 | public function hello($name = 'ThinkPHP5')
16 | {
17 | return 'hello,' . $name;
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/application/install/view/Install/step3.html:
--------------------------------------------------------------------------------
1 | {extend name="public/base"/}
2 |
3 | {block name="header">
4 | 安装协议
5 | 环境检测
6 | 创建数据库
7 | 安装
8 | 完成
9 | {/block}
10 |
11 | {block name="body"}
12 | 安装
13 |
14 |
15 |
25 | {/block}
26 |
27 | {block name="footer"}
28 |
29 | {/block}
--------------------------------------------------------------------------------
/application/install/view/index/complete.html:
--------------------------------------------------------------------------------
1 | {extend name="public/base"/}
2 |
3 | {block name="header"}
4 | 安装协议
5 | 环境检测
6 | 创建数据库
7 | 安装
8 | 完成
9 | {/block}
10 |
11 | {block name="main"}
12 | 完成
13 | 安装完成!
14 | {present name="info"}
15 | {$info}
16 | {/present}
17 | {/block}
18 |
19 | {block name="footer"}
20 | 登录后台
21 | 访问首页
22 | {/block}
--------------------------------------------------------------------------------
/application/tags.php:
--------------------------------------------------------------------------------
1 |
10 | // +----------------------------------------------------------------------
11 |
12 | // 应用行为扩展定义文件
13 | return [
14 | // 应用初始化
15 | 'app_init' => [],
16 | // 应用开始
17 | 'app_begin' => [],
18 | // 模块初始化
19 | 'module_init' => [],
20 | // 操作开始执行
21 | 'action_begin' => [],
22 | // 视图内容过滤
23 | 'view_filter' => [],
24 | // 日志写入
25 | 'log_write' => [],
26 | // 应用结束
27 | 'app_end' => [],
28 | ];
29 |
--------------------------------------------------------------------------------
/application/user/admin/view/config_register.html:
--------------------------------------------------------------------------------
1 | {extend name="base" /}
2 | {block name="main"}
3 | {$ceshi}
4 | {/block}
5 |
--------------------------------------------------------------------------------
/application/user/controller/Upload.php:
--------------------------------------------------------------------------------
1 | upFile('images');
12 | $return['code']=200;
13 | $return['msg']=$info['msg'];
14 | $return['id']=$info['id'];
15 | $return['headpath']=$info['headpath'];
16 | if($this->config['location']==0){
17 | $return['path']=str_replace(request()->domain(),'',$info['path']);
18 | }
19 | return json($return);
20 | }
21 | public function up_file()
22 | {
23 | return json((new UploadModel())->upFile('files'));
24 | }
25 | public function up_attach()
26 | {
27 | return json((new UploadModel())->upFile('files','file','attach'));
28 | }
29 |
30 | }
--------------------------------------------------------------------------------
/application/user/view/public/footer.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "topthink/think",
3 | "description": "the new thinkphp framework",
4 | "type": "project",
5 | "keywords": [
6 | "framework",
7 | "thinkphp",
8 | "ORM"
9 | ],
10 | "homepage": "http://thinkphp.cn/",
11 | "license": "Apache-2.0",
12 | "authors": [
13 | {
14 | "name": "liu21st",
15 | "email": "liu21st@gmail.com"
16 | }
17 | ],
18 | "require": {
19 | "php": ">=5.6.0",
20 | "topthink/framework": "5.1.15",
21 | "qiniu/php-sdk": "^7.2",
22 | "topthink/think-captcha": "^2.0"
23 | },
24 | "autoload": {
25 | "psr-4": {
26 | "app\\": "application"
27 | }
28 | },
29 | "extra": {
30 | "think-path": "thinkphp"
31 | },
32 | "config": {
33 | "preferred-install": "dist"
34 | }
35 | }
36 |
--------------------------------------------------------------------------------
/config/cache.php:
--------------------------------------------------------------------------------
1 |
10 | // +----------------------------------------------------------------------
11 |
12 | // +----------------------------------------------------------------------
13 | // | 缓存设置
14 | // +----------------------------------------------------------------------
15 |
16 | return [
17 | // 驱动方式
18 | 'type' => 'File',
19 | // 缓存保存目录
20 | 'path' => '',
21 | // 缓存前缀
22 | 'prefix' => '',
23 | // 缓存有效期 0表示永久缓存
24 | 'expire' => 0,
25 | ];
26 |
--------------------------------------------------------------------------------
/config/console.php:
--------------------------------------------------------------------------------
1 |
10 | // +----------------------------------------------------------------------
11 |
12 | // +----------------------------------------------------------------------
13 | // | 控制台配置
14 | // +----------------------------------------------------------------------
15 | return [
16 | 'name' => 'Think Console',
17 | 'version' => '0.1',
18 | 'user' => null,
19 | ];
20 |
--------------------------------------------------------------------------------
/config/database.php:
--------------------------------------------------------------------------------
1 | 'mysql',
3 | 'hostname' => '127.0.0.1',
4 | 'username' => 'root',
5 | 'password' => '',
6 | 'database' => 'and_andphp',
7 | 'prefix' => 'and_',
8 | 'dsn' => '',
9 | 'charset' => 'utf8',
10 | 'fields_strict' => false,
11 | );?>
--------------------------------------------------------------------------------
/config/trace.php:
--------------------------------------------------------------------------------
1 |
10 | // +----------------------------------------------------------------------
11 |
12 | // +----------------------------------------------------------------------
13 | // | Trace设置 开启 app_trace 后 有效
14 | // +----------------------------------------------------------------------
15 | return [
16 | // 内置Html Console 支持扩展
17 | 'type' => 'Html',
18 | ];
19 |
--------------------------------------------------------------------------------
/public/.htaccess:
--------------------------------------------------------------------------------
1 |
2 | Options +FollowSymlinks -Multiviews
3 | RewriteEngine On
4 |
5 | RewriteCond %{REQUEST_FILENAME} !-d
6 | RewriteCond %{REQUEST_FILENAME} !-f
7 | RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
8 |
9 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/favicon.ico
--------------------------------------------------------------------------------
/public/install/index.php:
--------------------------------------------------------------------------------
1 |
10 | * +----------------------------------------------------------------------
11 | * | CreateTime : 2018/4/26 002619:16
12 | * +----------------------------------------------------------------------
13 | */
14 | // [ 应用入口文件 ]
15 | header("location:/install/index.html")
16 |
17 | ?>
--------------------------------------------------------------------------------
/public/install/license.txt:
--------------------------------------------------------------------------------
1 | 版权所有 (c) 2017-2022,重庆吾与众科技有限公司保留所有权利。
2 |
3 | 感谢您选择 AndPHP 网站内容管理系统。
4 |
5 | 希望我们的产品能为让您更加快速、简洁的搭建自己的网站。
6 |
7 | andphp 完全遵循MIT协议。
8 |
9 | 一、您可以自由的使用该软件,不限商用。
10 |
11 | 二、有限担保和免责声明
12 |
13 | 1、本软件及所附带的文件是作为不提供任何明确的或隐含的赔偿或担保的形式提供的。
14 |
15 | 2、用户出于自愿而使用本软件,您必须了解使用本软件的风险,我们不承诺对用户提供任何形式的技术支持、使用担保,也不承担任何因使用本软件而产生问题的相关责任。
16 |
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
3 |
--------------------------------------------------------------------------------
/public/router.php:
--------------------------------------------------------------------------------
1 |
10 | // +----------------------------------------------------------------------
11 | // $Id$
12 |
13 | if (is_file($_SERVER["DOCUMENT_ROOT"] . $_SERVER["SCRIPT_NAME"])) {
14 | return false;
15 | } else {
16 | require __DIR__ . "/index.php";
17 | }
18 |
--------------------------------------------------------------------------------
/public/static/admin/images/admin_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/admin/images/admin_logo.png
--------------------------------------------------------------------------------
/public/static/admin/images/admin_menu_bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/admin/images/admin_menu_bg.jpg
--------------------------------------------------------------------------------
/public/static/admin/images/album.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/admin/images/album.png
--------------------------------------------------------------------------------
/public/static/admin/images/article.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/admin/images/article.png
--------------------------------------------------------------------------------
/public/static/admin/images/bluesky.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/admin/images/bluesky.jpg
--------------------------------------------------------------------------------
/public/static/admin/images/default_headimg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/admin/images/default_headimg.png
--------------------------------------------------------------------------------
/public/static/admin/images/lockscreenbg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/admin/images/lockscreenbg.jpg
--------------------------------------------------------------------------------
/public/static/admin/images/product.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/admin/images/product.png
--------------------------------------------------------------------------------
/public/static/admin/images/user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/admin/images/user.png
--------------------------------------------------------------------------------
/public/static/common/bootstrap/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/bootstrap/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/public/static/common/bootstrap/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/bootstrap/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/public/static/common/bootstrap/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/bootstrap/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/public/static/common/bootstrap/fonts/glyphicons-halflings-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/bootstrap/fonts/glyphicons-halflings-regular.woff2
--------------------------------------------------------------------------------
/public/static/common/font-awesome-4.7.0/HELP-US-OUT.txt:
--------------------------------------------------------------------------------
1 | I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project,
2 | Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome,
3 | comprehensive icon sets or copy and paste your own.
4 |
5 | Please. Check it out.
6 |
7 | -Dave Gandy
8 |
--------------------------------------------------------------------------------
/public/static/common/font-awesome-4.7.0/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/font-awesome-4.7.0/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/public/static/common/font-awesome-4.7.0/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/font-awesome-4.7.0/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/public/static/common/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/public/static/common/font-awesome-4.7.0/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/font-awesome-4.7.0/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/public/static/common/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/public/static/common/font-awesome-4.7.0/less/animated.less:
--------------------------------------------------------------------------------
1 | // Animated Icons
2 | // --------------------------
3 |
4 | .@{fa-css-prefix}-spin {
5 | -webkit-animation: fa-spin 2s infinite linear;
6 | animation: fa-spin 2s infinite linear;
7 | }
8 |
9 | .@{fa-css-prefix}-pulse {
10 | -webkit-animation: fa-spin 1s infinite steps(8);
11 | animation: fa-spin 1s infinite steps(8);
12 | }
13 |
14 | @-webkit-keyframes fa-spin {
15 | 0% {
16 | -webkit-transform: rotate(0deg);
17 | transform: rotate(0deg);
18 | }
19 | 100% {
20 | -webkit-transform: rotate(359deg);
21 | transform: rotate(359deg);
22 | }
23 | }
24 |
25 | @keyframes fa-spin {
26 | 0% {
27 | -webkit-transform: rotate(0deg);
28 | transform: rotate(0deg);
29 | }
30 | 100% {
31 | -webkit-transform: rotate(359deg);
32 | transform: rotate(359deg);
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/public/static/common/font-awesome-4.7.0/less/bordered-pulled.less:
--------------------------------------------------------------------------------
1 | // Bordered & Pulled
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}-border {
5 | padding: .2em .25em .15em;
6 | border: solid .08em @fa-border-color;
7 | border-radius: .1em;
8 | }
9 |
10 | .@{fa-css-prefix}-pull-left { float: left; }
11 | .@{fa-css-prefix}-pull-right { float: right; }
12 |
13 | .@{fa-css-prefix} {
14 | &.@{fa-css-prefix}-pull-left { margin-right: .3em; }
15 | &.@{fa-css-prefix}-pull-right { margin-left: .3em; }
16 | }
17 |
18 | /* Deprecated as of 4.4.0 */
19 | .pull-right { float: right; }
20 | .pull-left { float: left; }
21 |
22 | .@{fa-css-prefix} {
23 | &.pull-left { margin-right: .3em; }
24 | &.pull-right { margin-left: .3em; }
25 | }
26 |
--------------------------------------------------------------------------------
/public/static/common/font-awesome-4.7.0/less/core.less:
--------------------------------------------------------------------------------
1 | // Base Class Definition
2 | // -------------------------
3 |
4 | .@{fa-css-prefix} {
5 | display: inline-block;
6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration
7 | font-size: inherit; // can't have font-size inherit on line above, so need to override
8 | text-rendering: auto; // optimizelegibility throws things off #1094
9 | -webkit-font-smoothing: antialiased;
10 | -moz-osx-font-smoothing: grayscale;
11 |
12 | }
13 |
--------------------------------------------------------------------------------
/public/static/common/font-awesome-4.7.0/less/fixed-width.less:
--------------------------------------------------------------------------------
1 | // Fixed Width Icons
2 | // -------------------------
3 | .@{fa-css-prefix}-fw {
4 | width: (18em / 14);
5 | text-align: center;
6 | }
7 |
--------------------------------------------------------------------------------
/public/static/common/font-awesome-4.7.0/less/font-awesome.less:
--------------------------------------------------------------------------------
1 | /*!
2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4 | */
5 |
6 | @import "variables.less";
7 | @import "mixins.less";
8 | @import "path.less";
9 | @import "core.less";
10 | @import "larger.less";
11 | @import "fixed-width.less";
12 | @import "list.less";
13 | @import "bordered-pulled.less";
14 | @import "animated.less";
15 | @import "rotated-flipped.less";
16 | @import "stacked.less";
17 | @import "icons.less";
18 | @import "screen-reader.less";
19 |
--------------------------------------------------------------------------------
/public/static/common/font-awesome-4.7.0/less/larger.less:
--------------------------------------------------------------------------------
1 | // Icon Sizes
2 | // -------------------------
3 |
4 | /* makes the font 33% larger relative to the icon container */
5 | .@{fa-css-prefix}-lg {
6 | font-size: (4em / 3);
7 | line-height: (3em / 4);
8 | vertical-align: -15%;
9 | }
10 | .@{fa-css-prefix}-2x { font-size: 2em; }
11 | .@{fa-css-prefix}-3x { font-size: 3em; }
12 | .@{fa-css-prefix}-4x { font-size: 4em; }
13 | .@{fa-css-prefix}-5x { font-size: 5em; }
14 |
--------------------------------------------------------------------------------
/public/static/common/font-awesome-4.7.0/less/list.less:
--------------------------------------------------------------------------------
1 | // List Icons
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}-ul {
5 | padding-left: 0;
6 | margin-left: @fa-li-width;
7 | list-style-type: none;
8 | > li { position: relative; }
9 | }
10 | .@{fa-css-prefix}-li {
11 | position: absolute;
12 | left: -@fa-li-width;
13 | width: @fa-li-width;
14 | top: (2em / 14);
15 | text-align: center;
16 | &.@{fa-css-prefix}-lg {
17 | left: (-@fa-li-width + (4em / 14));
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/public/static/common/font-awesome-4.7.0/less/path.less:
--------------------------------------------------------------------------------
1 | /* FONT PATH
2 | * -------------------------- */
3 |
4 | @font-face {
5 | font-family: 'FontAwesome';
6 | src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}');
7 | src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'),
8 | url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'),
9 | url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'),
10 | url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'),
11 | url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg');
12 | // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
13 | font-weight: normal;
14 | font-style: normal;
15 | }
16 |
--------------------------------------------------------------------------------
/public/static/common/font-awesome-4.7.0/less/rotated-flipped.less:
--------------------------------------------------------------------------------
1 | // Rotated & Flipped Icons
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); }
5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); }
6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); }
7 |
8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); }
9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); }
10 |
11 | // Hook for IE8-9
12 | // -------------------------
13 |
14 | :root .@{fa-css-prefix}-rotate-90,
15 | :root .@{fa-css-prefix}-rotate-180,
16 | :root .@{fa-css-prefix}-rotate-270,
17 | :root .@{fa-css-prefix}-flip-horizontal,
18 | :root .@{fa-css-prefix}-flip-vertical {
19 | filter: none;
20 | }
21 |
--------------------------------------------------------------------------------
/public/static/common/font-awesome-4.7.0/less/screen-reader.less:
--------------------------------------------------------------------------------
1 | // Screen Readers
2 | // -------------------------
3 |
4 | .sr-only { .sr-only(); }
5 | .sr-only-focusable { .sr-only-focusable(); }
6 |
--------------------------------------------------------------------------------
/public/static/common/font-awesome-4.7.0/less/stacked.less:
--------------------------------------------------------------------------------
1 | // Stacked Icons
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}-stack {
5 | position: relative;
6 | display: inline-block;
7 | width: 2em;
8 | height: 2em;
9 | line-height: 2em;
10 | vertical-align: middle;
11 | }
12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x {
13 | position: absolute;
14 | left: 0;
15 | width: 100%;
16 | text-align: center;
17 | }
18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; }
19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; }
20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; }
21 |
--------------------------------------------------------------------------------
/public/static/common/font-awesome-4.7.0/scss/_animated.scss:
--------------------------------------------------------------------------------
1 | // Spinning Icons
2 | // --------------------------
3 |
4 | .#{$fa-css-prefix}-spin {
5 | -webkit-animation: fa-spin 2s infinite linear;
6 | animation: fa-spin 2s infinite linear;
7 | }
8 |
9 | .#{$fa-css-prefix}-pulse {
10 | -webkit-animation: fa-spin 1s infinite steps(8);
11 | animation: fa-spin 1s infinite steps(8);
12 | }
13 |
14 | @-webkit-keyframes fa-spin {
15 | 0% {
16 | -webkit-transform: rotate(0deg);
17 | transform: rotate(0deg);
18 | }
19 | 100% {
20 | -webkit-transform: rotate(359deg);
21 | transform: rotate(359deg);
22 | }
23 | }
24 |
25 | @keyframes fa-spin {
26 | 0% {
27 | -webkit-transform: rotate(0deg);
28 | transform: rotate(0deg);
29 | }
30 | 100% {
31 | -webkit-transform: rotate(359deg);
32 | transform: rotate(359deg);
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/public/static/common/font-awesome-4.7.0/scss/_bordered-pulled.scss:
--------------------------------------------------------------------------------
1 | // Bordered & Pulled
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-border {
5 | padding: .2em .25em .15em;
6 | border: solid .08em $fa-border-color;
7 | border-radius: .1em;
8 | }
9 |
10 | .#{$fa-css-prefix}-pull-left { float: left; }
11 | .#{$fa-css-prefix}-pull-right { float: right; }
12 |
13 | .#{$fa-css-prefix} {
14 | &.#{$fa-css-prefix}-pull-left { margin-right: .3em; }
15 | &.#{$fa-css-prefix}-pull-right { margin-left: .3em; }
16 | }
17 |
18 | /* Deprecated as of 4.4.0 */
19 | .pull-right { float: right; }
20 | .pull-left { float: left; }
21 |
22 | .#{$fa-css-prefix} {
23 | &.pull-left { margin-right: .3em; }
24 | &.pull-right { margin-left: .3em; }
25 | }
26 |
--------------------------------------------------------------------------------
/public/static/common/font-awesome-4.7.0/scss/_core.scss:
--------------------------------------------------------------------------------
1 | // Base Class Definition
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix} {
5 | display: inline-block;
6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration
7 | font-size: inherit; // can't have font-size inherit on line above, so need to override
8 | text-rendering: auto; // optimizelegibility throws things off #1094
9 | -webkit-font-smoothing: antialiased;
10 | -moz-osx-font-smoothing: grayscale;
11 |
12 | }
13 |
--------------------------------------------------------------------------------
/public/static/common/font-awesome-4.7.0/scss/_fixed-width.scss:
--------------------------------------------------------------------------------
1 | // Fixed Width Icons
2 | // -------------------------
3 | .#{$fa-css-prefix}-fw {
4 | width: (18em / 14);
5 | text-align: center;
6 | }
7 |
--------------------------------------------------------------------------------
/public/static/common/font-awesome-4.7.0/scss/_larger.scss:
--------------------------------------------------------------------------------
1 | // Icon Sizes
2 | // -------------------------
3 |
4 | /* makes the font 33% larger relative to the icon container */
5 | .#{$fa-css-prefix}-lg {
6 | font-size: (4em / 3);
7 | line-height: (3em / 4);
8 | vertical-align: -15%;
9 | }
10 | .#{$fa-css-prefix}-2x { font-size: 2em; }
11 | .#{$fa-css-prefix}-3x { font-size: 3em; }
12 | .#{$fa-css-prefix}-4x { font-size: 4em; }
13 | .#{$fa-css-prefix}-5x { font-size: 5em; }
14 |
--------------------------------------------------------------------------------
/public/static/common/font-awesome-4.7.0/scss/_list.scss:
--------------------------------------------------------------------------------
1 | // List Icons
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-ul {
5 | padding-left: 0;
6 | margin-left: $fa-li-width;
7 | list-style-type: none;
8 | > li { position: relative; }
9 | }
10 | .#{$fa-css-prefix}-li {
11 | position: absolute;
12 | left: -$fa-li-width;
13 | width: $fa-li-width;
14 | top: (2em / 14);
15 | text-align: center;
16 | &.#{$fa-css-prefix}-lg {
17 | left: -$fa-li-width + (4em / 14);
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/public/static/common/font-awesome-4.7.0/scss/_path.scss:
--------------------------------------------------------------------------------
1 | /* FONT PATH
2 | * -------------------------- */
3 |
4 | @font-face {
5 | font-family: 'FontAwesome';
6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}');
7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'),
8 | url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'),
9 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'),
10 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'),
11 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg');
12 | // src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
13 | font-weight: normal;
14 | font-style: normal;
15 | }
16 |
--------------------------------------------------------------------------------
/public/static/common/font-awesome-4.7.0/scss/_rotated-flipped.scss:
--------------------------------------------------------------------------------
1 | // Rotated & Flipped Icons
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); }
5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); }
6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); }
7 |
8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); }
9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); }
10 |
11 | // Hook for IE8-9
12 | // -------------------------
13 |
14 | :root .#{$fa-css-prefix}-rotate-90,
15 | :root .#{$fa-css-prefix}-rotate-180,
16 | :root .#{$fa-css-prefix}-rotate-270,
17 | :root .#{$fa-css-prefix}-flip-horizontal,
18 | :root .#{$fa-css-prefix}-flip-vertical {
19 | filter: none;
20 | }
21 |
--------------------------------------------------------------------------------
/public/static/common/font-awesome-4.7.0/scss/_screen-reader.scss:
--------------------------------------------------------------------------------
1 | // Screen Readers
2 | // -------------------------
3 |
4 | .sr-only { @include sr-only(); }
5 | .sr-only-focusable { @include sr-only-focusable(); }
6 |
--------------------------------------------------------------------------------
/public/static/common/font-awesome-4.7.0/scss/_stacked.scss:
--------------------------------------------------------------------------------
1 | // Stacked Icons
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-stack {
5 | position: relative;
6 | display: inline-block;
7 | width: 2em;
8 | height: 2em;
9 | line-height: 2em;
10 | vertical-align: middle;
11 | }
12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x {
13 | position: absolute;
14 | left: 0;
15 | width: 100%;
16 | text-align: center;
17 | }
18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; }
19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; }
20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; }
21 |
--------------------------------------------------------------------------------
/public/static/common/font-awesome-4.7.0/scss/font-awesome.scss:
--------------------------------------------------------------------------------
1 | /*!
2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4 | */
5 |
6 | @import "variables";
7 | @import "mixins";
8 | @import "path";
9 | @import "core";
10 | @import "larger";
11 | @import "fixed-width";
12 | @import "list";
13 | @import "bordered-pulled";
14 | @import "animated";
15 | @import "rotated-flipped";
16 | @import "stacked";
17 | @import "icons";
18 | @import "screen-reader";
19 |
--------------------------------------------------------------------------------
/public/static/common/font-awesome/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/font-awesome/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/public/static/common/font-awesome/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/font-awesome/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/public/static/common/font-awesome/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/font-awesome/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/public/static/common/font-awesome/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/font-awesome/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/public/static/common/font-awesome/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/font-awesome/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/public/static/common/images/andphp_bg_jujue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/images/andphp_bg_jujue.png
--------------------------------------------------------------------------------
/public/static/common/images/andphp_bg_null.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/images/andphp_bg_null.png
--------------------------------------------------------------------------------
/public/static/common/images/andphp_bg_shenhe.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/images/andphp_bg_shenhe.png
--------------------------------------------------------------------------------
/public/static/common/images/andphp_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/images/andphp_logo.png
--------------------------------------------------------------------------------
/public/static/common/images/default_head_img.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/images/default_head_img.png
--------------------------------------------------------------------------------
/public/static/common/layui/css/modules/code.css:
--------------------------------------------------------------------------------
1 | /** layui-v2.2.5 MIT License By https://www.layui.com */
2 | html #layuicss-skincodecss{display:none;position:absolute;width:1989px}.layui-code-h3,.layui-code-view{position:relative;font-size:12px}.layui-code-view{display:block;margin:10px 0;padding:0;border:1px solid #e2e2e2;border-left-width:6px;background-color:#F2F2F2;color:#333;font-family:Courier New}.layui-code-h3{padding:0 10px;height:32px;line-height:32px;border-bottom:1px solid #e2e2e2}.layui-code-h3 a{position:absolute;right:10px;top:0;color:#999}.layui-code-view .layui-code-ol{position:relative;overflow:auto}.layui-code-view .layui-code-ol li{position:relative;margin-left:45px;line-height:20px;padding:0 5px;border-left:1px solid #e2e2e2;list-style-type:decimal-leading-zero;*list-style-type:decimal;background-color:#fff}.layui-code-view pre{margin:0}.layui-code-notepad{border:1px solid #0C0C0C;border-left-color:#3F3F3F;background-color:#0C0C0C;color:#C2BE9E}.layui-code-notepad .layui-code-h3{border-bottom:none}.layui-code-notepad .layui-code-ol li{background-color:#3F3F3F;border-left:none}
--------------------------------------------------------------------------------
/public/static/common/layui/css/modules/layer/default/icon-ext.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/css/modules/layer/default/icon-ext.png
--------------------------------------------------------------------------------
/public/static/common/layui/css/modules/layer/default/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/css/modules/layer/default/icon.png
--------------------------------------------------------------------------------
/public/static/common/layui/css/modules/layer/default/loading-0.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/css/modules/layer/default/loading-0.gif
--------------------------------------------------------------------------------
/public/static/common/layui/css/modules/layer/default/loading-1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/css/modules/layer/default/loading-1.gif
--------------------------------------------------------------------------------
/public/static/common/layui/css/modules/layer/default/loading-2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/css/modules/layer/default/loading-2.gif
--------------------------------------------------------------------------------
/public/static/common/layui/font/iconfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/font/iconfont.eot
--------------------------------------------------------------------------------
/public/static/common/layui/font/iconfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/font/iconfont.ttf
--------------------------------------------------------------------------------
/public/static/common/layui/font/iconfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/font/iconfont.woff
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/0.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/0.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/1.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/10.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/10.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/11.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/11.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/12.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/12.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/13.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/13.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/14.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/14.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/15.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/15.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/16.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/16.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/17.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/17.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/18.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/18.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/19.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/19.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/2.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/20.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/20.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/21.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/21.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/22.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/22.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/23.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/23.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/24.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/24.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/25.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/25.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/26.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/26.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/27.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/27.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/28.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/28.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/29.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/29.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/3.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/3.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/30.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/30.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/31.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/31.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/32.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/32.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/33.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/33.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/34.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/34.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/35.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/35.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/36.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/36.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/37.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/37.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/38.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/38.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/39.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/39.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/4.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/4.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/40.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/40.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/41.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/41.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/42.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/42.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/43.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/43.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/44.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/44.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/45.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/45.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/46.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/46.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/47.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/47.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/48.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/48.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/49.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/49.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/5.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/5.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/50.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/50.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/51.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/51.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/52.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/52.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/53.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/53.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/54.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/54.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/55.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/55.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/56.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/56.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/57.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/57.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/58.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/58.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/59.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/59.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/6.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/6.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/60.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/60.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/61.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/61.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/62.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/62.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/63.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/63.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/64.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/64.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/65.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/65.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/66.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/66.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/67.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/67.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/68.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/68.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/69.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/69.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/7.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/7.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/70.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/70.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/71.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/71.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/8.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/8.gif
--------------------------------------------------------------------------------
/public/static/common/layui/images/face/9.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/layui/images/face/9.gif
--------------------------------------------------------------------------------
/public/static/common/layui/lay/modules/common.js:
--------------------------------------------------------------------------------
1 | /** common.js By Beginner Emain:zheng_jinfan@126.com HomePage:http://www.zhengjinfan.cn */
2 | layui.define(['layer'], function(exports) {
3 | "use strict";
4 |
5 | var $ = layui.jquery,
6 | layer = layui.layer;
7 |
8 | var common = {
9 | /**
10 | * 抛出一个异常错误信息
11 | * @param {String} msg
12 | */
13 | throwError: function(msg) {
14 | throw new Error(msg);
15 | return;
16 | },
17 | /**
18 | * 弹出一个错误提示
19 | * @param {String} msg
20 | */
21 | msgError: function(msg) {
22 | layer.msg(msg, {
23 | icon: 5
24 | });
25 | return;
26 | }
27 | };
28 |
29 | exports('common', common);
30 | });
--------------------------------------------------------------------------------
/public/static/common/sideshow/fonts/codropsicons/codropsicons.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/sideshow/fonts/codropsicons/codropsicons.eot
--------------------------------------------------------------------------------
/public/static/common/sideshow/fonts/codropsicons/codropsicons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/sideshow/fonts/codropsicons/codropsicons.ttf
--------------------------------------------------------------------------------
/public/static/common/sideshow/fonts/codropsicons/codropsicons.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/sideshow/fonts/codropsicons/codropsicons.woff
--------------------------------------------------------------------------------
/public/static/common/sideshow/fonts/codropsicons/license.txt:
--------------------------------------------------------------------------------
1 | Icon Set: Font Awesome -- http://fortawesome.github.com/Font-Awesome/
2 | License: SIL -- http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL
3 |
4 |
5 | Icon Set: Eco Ico -- http://dribbble.com/shots/665585-Eco-Ico
6 | License: CC0 -- http://creativecommons.org/publicdomain/zero/1.0/
--------------------------------------------------------------------------------
/public/static/common/sideshow/img/bluesky.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/sideshow/img/bluesky.jpg
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/attachment/fileTypeImages/icon_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/attachment/fileTypeImages/icon_default.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/attachment/images/alignicon.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/attachment/images/alignicon.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/attachment/images/alignicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/attachment/images/alignicon.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/attachment/images/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/attachment/images/bg.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/attachment/images/file-icons.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/attachment/images/file-icons.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/attachment/images/file-icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/attachment/images/file-icons.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/attachment/images/icons.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/attachment/images/icons.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/attachment/images/icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/attachment/images/icons.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/attachment/images/image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/attachment/images/image.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/attachment/images/progress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/attachment/images/progress.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/attachment/images/success.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/attachment/images/success.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/attachment/images/success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/attachment/images/success.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/background/images/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/background/images/bg.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/background/images/success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/background/images/success.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/charts/images/charts0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/charts/images/charts0.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/charts/images/charts1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/charts/images/charts1.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/charts/images/charts2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/charts/images/charts2.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/charts/images/charts3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/charts/images/charts3.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/charts/images/charts4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/charts/images/charts4.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/charts/images/charts5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/charts/images/charts5.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/emotion/images/0.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/emotion/images/0.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/emotion/images/bface.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/emotion/images/bface.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/emotion/images/cface.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/emotion/images/cface.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/emotion/images/fface.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/emotion/images/fface.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/emotion/images/jxface2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/emotion/images/jxface2.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/emotion/images/neweditor-tab-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/emotion/images/neweditor-tab-bg.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/emotion/images/tface.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/emotion/images/tface.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/emotion/images/wface.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/emotion/images/wface.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/emotion/images/yface.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/emotion/images/yface.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/help/help.css:
--------------------------------------------------------------------------------
1 | .wrapper{width: 370px;margin: 10px auto;zoom: 1;}
2 | .tabbody{height: 360px;}
3 | .tabbody .panel{width:100%;height: 360px;position: absolute;background: #fff;}
4 | .tabbody .panel h1{font-size:26px;margin: 5px 0 0 5px;}
5 | .tabbody .panel p{font-size:12px;margin: 5px 0 0 5px;}
6 | .tabbody table{width:90%;line-height: 20px;margin: 5px 0 0 5px;;}
7 | .tabbody table thead{font-weight: bold;line-height: 25px;}
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/image/images/alignicon.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/image/images/alignicon.jpg
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/image/images/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/image/images/bg.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/image/images/icons.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/image/images/icons.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/image/images/icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/image/images/icons.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/image/images/image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/image/images/image.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/image/images/progress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/image/images/progress.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/image/images/success.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/image/images/success.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/image/images/success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/image/images/success.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/scrawl/images/addimg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/scrawl/images/addimg.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/scrawl/images/brush.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/scrawl/images/brush.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/scrawl/images/delimg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/scrawl/images/delimg.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/scrawl/images/delimgH.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/scrawl/images/delimgH.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/scrawl/images/empty.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/scrawl/images/empty.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/scrawl/images/emptyH.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/scrawl/images/emptyH.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/scrawl/images/eraser.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/scrawl/images/eraser.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/scrawl/images/redo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/scrawl/images/redo.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/scrawl/images/redoH.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/scrawl/images/redoH.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/scrawl/images/scale.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/scrawl/images/scale.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/scrawl/images/scaleH.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/scrawl/images/scaleH.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/scrawl/images/size.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/scrawl/images/size.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/scrawl/images/undo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/scrawl/images/undo.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/scrawl/images/undoH.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/scrawl/images/undoH.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/spechars/spechars.html:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
8 |
14 |
15 |
16 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/table/dragicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/table/dragicon.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/table/edittip.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 表格删除提示
5 |
6 |
17 |
18 |
19 |
27 |
32 |
33 |
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/template/images/bg.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/template/images/bg.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/template/images/pre0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/template/images/pre0.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/template/images/pre1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/template/images/pre1.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/template/images/pre2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/template/images/pre2.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/template/images/pre3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/template/images/pre3.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/template/images/pre4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/template/images/pre4.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/template/template.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/video/images/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/video/images/bg.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/video/images/center_focus.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/video/images/center_focus.jpg
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/video/images/file-icons.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/video/images/file-icons.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/video/images/file-icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/video/images/file-icons.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/video/images/icons.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/video/images/icons.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/video/images/icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/video/images/icons.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/video/images/image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/video/images/image.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/video/images/left_focus.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/video/images/left_focus.jpg
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/video/images/none_focus.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/video/images/none_focus.jpg
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/video/images/progress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/video/images/progress.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/video/images/right_focus.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/video/images/right_focus.jpg
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/video/images/success.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/video/images/success.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/video/images/success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/video/images/success.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/wordimage/fClipboard_ueditor.swf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/wordimage/fClipboard_ueditor.swf
--------------------------------------------------------------------------------
/public/static/common/ueditor/dialogs/wordimage/imageUploader.swf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/dialogs/wordimage/imageUploader.swf
--------------------------------------------------------------------------------
/public/static/common/ueditor/lang/en/images/addimage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/lang/en/images/addimage.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/lang/en/images/alldeletebtnhoverskin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/lang/en/images/alldeletebtnhoverskin.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/lang/en/images/alldeletebtnupskin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/lang/en/images/alldeletebtnupskin.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/lang/en/images/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/lang/en/images/background.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/lang/en/images/button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/lang/en/images/button.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/lang/en/images/copy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/lang/en/images/copy.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/lang/en/images/deletedisable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/lang/en/images/deletedisable.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/lang/en/images/deleteenable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/lang/en/images/deleteenable.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/lang/en/images/listbackground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/lang/en/images/listbackground.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/lang/en/images/localimage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/lang/en/images/localimage.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/lang/en/images/music.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/lang/en/images/music.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/lang/en/images/rotateleftdisable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/lang/en/images/rotateleftdisable.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/lang/en/images/rotateleftenable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/lang/en/images/rotateleftenable.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/lang/en/images/rotaterightdisable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/lang/en/images/rotaterightdisable.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/lang/en/images/rotaterightenable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/lang/en/images/rotaterightenable.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/lang/en/images/upload.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/lang/en/images/upload.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/lang/zh-cn/images/copy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/lang/zh-cn/images/copy.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/lang/zh-cn/images/localimage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/lang/zh-cn/images/localimage.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/lang/zh-cn/images/music.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/lang/zh-cn/images/music.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/lang/zh-cn/images/upload.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/lang/zh-cn/images/upload.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/default/images/anchor.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/themes/default/images/anchor.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/default/images/arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/themes/default/images/arrow.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/default/images/arrow_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/themes/default/images/arrow_down.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/default/images/arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/themes/default/images/arrow_up.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/default/images/button-bg.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/themes/default/images/button-bg.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/default/images/cancelbutton.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/themes/default/images/cancelbutton.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/default/images/charts.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/themes/default/images/charts.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/default/images/cursor_h.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/themes/default/images/cursor_h.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/default/images/cursor_h.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/themes/default/images/cursor_h.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/default/images/cursor_v.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/themes/default/images/cursor_v.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/default/images/cursor_v.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/themes/default/images/cursor_v.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/default/images/dialog-title-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/themes/default/images/dialog-title-bg.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/default/images/filescan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/themes/default/images/filescan.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/default/images/highlighted.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/themes/default/images/highlighted.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/default/images/icons-all.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/themes/default/images/icons-all.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/default/images/icons.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/themes/default/images/icons.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/default/images/icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/themes/default/images/icons.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/default/images/loaderror.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/themes/default/images/loaderror.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/default/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/themes/default/images/loading.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/default/images/lock.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/themes/default/images/lock.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/default/images/neweditor-tab-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/themes/default/images/neweditor-tab-bg.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/default/images/pagebreak.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/themes/default/images/pagebreak.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/default/images/scale.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/themes/default/images/scale.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/default/images/sortable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/themes/default/images/sortable.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/default/images/spacer.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/themes/default/images/spacer.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/default/images/sparator_v.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/themes/default/images/sparator_v.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/default/images/table-cell-align.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/themes/default/images/table-cell-align.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/default/images/tangram-colorpicker.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/themes/default/images/tangram-colorpicker.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/default/images/toolbar_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/themes/default/images/toolbar_bg.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/default/images/unhighlighted.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/themes/default/images/unhighlighted.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/default/images/upload.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/themes/default/images/upload.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/default/images/videologo.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/themes/default/images/videologo.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/default/images/word.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/themes/default/images/word.gif
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/default/images/wordpaste.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/ueditor/themes/default/images/wordpaste.png
--------------------------------------------------------------------------------
/public/static/common/ueditor/themes/iframe.css:
--------------------------------------------------------------------------------
1 | /*可以在这里添加你自己的css*/
2 |
--------------------------------------------------------------------------------
/public/static/common/ueditor/third-party/highcharts/modules/heatmap.js:
--------------------------------------------------------------------------------
1 | (function(b){var k=b.seriesTypes,l=b.each;k.heatmap=b.extendClass(k.map,{colorKey:"z",useMapGeometry:!1,pointArrayMap:["y","z"],translate:function(){var c=this,b=c.options,i=Number.MAX_VALUE,j=Number.MIN_VALUE;c.generatePoints();l(c.data,function(a){var e=a.x,f=a.y,d=a.z,g=(b.colsize||1)/2,h=(b.rowsize||1)/2;a.path=["M",e-g,f-h,"L",e+g,f-h,"L",e+g,f+h,"L",e-g,f+h,"Z"];a.shapeType="path";a.shapeArgs={d:c.translatePath(a.path)};typeof d==="number"&&(d>j?j=d:d1024)&&(r.call(h),c.end=!0)},c(),h.onload=function(){!c.end&&c(),t&&t.call(h),h=h.onload=h.onerror=null},void(c.end||(n.push(c),null===l&&(l=setInterval(e,40)))))}}()}(jQuery);
--------------------------------------------------------------------------------
/public/static/common/zui/lib/kindeditor/README.md:
--------------------------------------------------------------------------------
1 | # Kindeitor 使用须知
2 |
3 | 请将当前目录中的 `plugins.zip` 文件解压缩到当前目录,否则部分高级功能无法正常使用。
4 |
--------------------------------------------------------------------------------
/public/static/common/zui/lib/kindeditor/plugins.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/zui/lib/kindeditor/plugins.zip
--------------------------------------------------------------------------------
/public/static/common/zui/lib/kindeditor/themes/default/default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/zui/lib/kindeditor/themes/default/default.png
--------------------------------------------------------------------------------
/public/static/common/zui/lib/migrate1.2/zui.migrate1.2.min.js:
--------------------------------------------------------------------------------
1 | /*!
2 | * ZUI: 1.2升级到1.3兼容插件 - v1.8.1 - 2018-01-18
3 | * http://zui.sexy
4 | * GitHub: https://github.com/easysoft/zui.git
5 | * Copyright (c) 2018 cnezsoft.com; Licensed MIT
6 | */
7 | !function(e,o){function r(o,a){if(e.isArray(o))return void e.each(o,function(e,o){r(o,a)});var i={};i[o]=s[o],a?e.extend(a,i):e.extend(i)}var s=e.zui;s&&(r(["uuid","callEvent","clientLang","browser","messager","Messager","showMessager","closeModal","ajustModalPosition","ModalTrigger","modalTrigger","store"]),r(["Color","imgReady","messager","Messager","showMessager","closeModal","ajustModalPosition","ModalTrigger","modalTrigger","store"],o))}(jQuery,window);
--------------------------------------------------------------------------------
/public/static/common/zui/lib/prettify/lang-apollo.js:
--------------------------------------------------------------------------------
1 | PR.registerLangHandler(PR.createSimpleLexer([["com",/^#[^\n\r]*/,null,"#"],["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,null,'"']],[["kwd",/^(?:ADS|AD|AUG|BZF|BZMF|CAE|CAF|CA|CCS|COM|CS|DAS|DCA|DCOM|DCS|DDOUBL|DIM|DOUBLE|DTCB|DTCF|DV|DXCH|EDRUPT|EXTEND|INCR|INDEX|NDX|INHINT|LXCH|MASK|MSK|MP|MSU|NOOP|OVSK|QXCH|RAND|READ|RELINT|RESUME|RETURN|ROR|RXOR|SQUARE|SU|TCR|TCAA|OVSK|TCF|TC|TS|WAND|WOR|WRITE|XCH|XLQ|XXALQ|ZL|ZQ|ADD|ADZ|SUB|SUZ|MPY|MPR|MPZ|DVP|COM|ABS|CLA|CLZ|LDQ|STO|STQ|ALS|LLS|LRS|TRA|TSQ|TMI|TOV|AXT|TIX|DLY|INP|OUT)\s/,
2 | null],["typ",/^(?:-?GENADR|=MINUS|2BCADR|VN|BOF|MM|-?2CADR|-?[1-6]DNADR|ADRES|BBCON|[ES]?BANK=?|BLOCK|BNKSUM|E?CADR|COUNT\*?|2?DEC\*?|-?DNCHAN|-?DNPTR|EQUALS|ERASE|MEMORY|2?OCT|REMADR|SETLOC|SUBRO|ORG|BSS|BES|SYN|EQU|DEFINE|END)\s/,null],["lit",/^'(?:-*(?:\w|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?)?/],["pln",/^-*(?:[!-z]|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?/],["pun",/^[^\w\t\n\r "'-);\\\xa0]+/]]),["apollo","agc","aea"]);
3 |
--------------------------------------------------------------------------------
/public/static/common/zui/lib/prettify/lang-basic.js:
--------------------------------------------------------------------------------
1 | var a=null;
2 | PR.registerLangHandler(PR.createSimpleLexer([["str",/^"(?:[^\n\r"\\]|\\.)*(?:"|$)/,a,'"'],["pln",/^\s+/,a," \r\n\t\u00a0"]],[["com",/^REM[^\n\r]*/,a],["kwd",/^\b(?:AND|CLOSE|CLR|CMD|CONT|DATA|DEF ?FN|DIM|END|FOR|GET|GOSUB|GOTO|IF|INPUT|LET|LIST|LOAD|NEW|NEXT|NOT|ON|OPEN|OR|POKE|PRINT|READ|RESTORE|RETURN|RUN|SAVE|STEP|STOP|SYS|THEN|TO|VERIFY|WAIT)\b/,a],["pln",/^[a-z][^\W_]?(?:\$|%)?/i,a],["lit",/^(?:\d+(?:\.\d*)?|\.\d+)(?:e[+-]?\d+)?/i,a,"0123456789"],["pun",
3 | /^.[^\s\w"$%.]*/,a]]),["basic","cbm"]);
4 |
--------------------------------------------------------------------------------
/public/static/common/zui/lib/prettify/lang-css.js:
--------------------------------------------------------------------------------
1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\f\r ]+/,null," \t\r\n\u000c"]],[["str",/^"(?:[^\n\f\r"\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*"/,null],["str",/^'(?:[^\n\f\r'\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*'/,null],["lang-css-str",/^url\(([^"')]+)\)/i],["kwd",/^(?:url|rgb|!important|@import|@page|@media|@charset|inherit)(?=[^\w-]|$)/i,null],["lang-css-kw",/^(-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*)\s*:/i],["com",/^\/\*[^*]*\*+(?:[^*/][^*]*\*+)*\//],
2 | ["com",/^(?:<\!--|--\>)/],["lit",/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],["lit",/^#[\da-f]{3,6}\b/i],["pln",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i],["pun",/^[^\s\w"']+/]]),["css"]);PR.registerLangHandler(PR.createSimpleLexer([],[["kwd",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i]]),["css-kw"]);PR.registerLangHandler(PR.createSimpleLexer([],[["str",/^[^"')]+/]]),["css-str"]);
3 |
--------------------------------------------------------------------------------
/public/static/common/zui/lib/prettify/lang-dart.js:
--------------------------------------------------------------------------------
1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"]],[["com",/^#!.*/],["kwd",/^\b(?:import|library|part of|part|as|show|hide)\b/i],["com",/^\/\/.*/],["com",/^\/\*[^*]*\*+(?:[^*/][^*]*\*+)*\//],["kwd",/^\b(?:class|interface)\b/i],["kwd",/^\b(?:assert|break|case|catch|continue|default|do|else|finally|for|if|in|is|new|return|super|switch|this|throw|try|while)\b/i],["kwd",/^\b(?:abstract|const|extends|factory|final|get|implements|native|operator|set|static|typedef|var)\b/i],
2 | ["typ",/^\b(?:bool|double|dynamic|int|num|object|string|void)\b/i],["kwd",/^\b(?:false|null|true)\b/i],["str",/^r?'''[\S\s]*?[^\\]'''/],["str",/^r?"""[\S\s]*?[^\\]"""/],["str",/^r?'('|[^\n\f\r]*?[^\\]')/],["str",/^r?"("|[^\n\f\r]*?[^\\]")/],["pln",/^[$_a-z]\w*/i],["pun",/^[!%&*+/:<-?^|~-]/],["lit",/^\b0x[\da-f]+/i],["lit",/^\b\d+(?:\.\d*)?(?:e[+-]?\d+)?/i],["lit",/^\b\.\d+(?:e[+-]?\d+)?/i],["pun",/^[(),.;[\]{}]/]]),
3 | ["dart"]);
4 |
--------------------------------------------------------------------------------
/public/static/common/zui/lib/prettify/lang-erlang.js:
--------------------------------------------------------------------------------
1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t-\r ]+/,null,"\t\n\u000b\u000c\r "],["str",/^"(?:[^\n\f\r"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["lit",/^[a-z]\w*/],["lit",/^'(?:[^\n\f\r'\\]|\\[^&])+'?/,null,"'"],["lit",/^\?[^\t\n ({]+/,null,"?"],["lit",/^(?:0o[0-7]+|0x[\da-f]+|\d+(?:\.\d+)?(?:e[+-]?\d+)?)/i,null,"0123456789"]],[["com",/^%[^\n]*/],["kwd",/^(?:module|attributes|do|let|in|letrec|apply|call|primop|case|of|end|when|fun|try|catch|receive|after|char|integer|float,atom,string,var)\b/],
2 | ["kwd",/^-[_a-z]+/],["typ",/^[A-Z_]\w*/],["pun",/^[,.;]/]]),["erlang","erl"]);
3 |
--------------------------------------------------------------------------------
/public/static/common/zui/lib/prettify/lang-go.js:
--------------------------------------------------------------------------------
1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["pln",/^(?:"(?:[^"\\]|\\[\S\s])*(?:"|$)|'(?:[^'\\]|\\[\S\s])+(?:'|$)|`[^`]*(?:`|$))/,null,"\"'"]],[["com",/^(?:\/\/[^\n\r]*|\/\*[\S\s]*?\*\/)/],["pln",/^(?:[^"'/`]|\/(?![*/]))+/]]),["go"]);
2 |
--------------------------------------------------------------------------------
/public/static/common/zui/lib/prettify/lang-hs.js:
--------------------------------------------------------------------------------
1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t-\r ]+/,null,"\t\n\u000b\u000c\r "],["str",/^"(?:[^\n\f\r"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["str",/^'(?:[^\n\f\r'\\]|\\[^&])'?/,null,"'"],["lit",/^(?:0o[0-7]+|0x[\da-f]+|\d+(?:\.\d+)?(?:e[+-]?\d+)?)/i,null,"0123456789"]],[["com",/^(?:--+[^\n\f\r]*|{-(?:[^-]|-+[^}-])*-})/],["kwd",/^(?:case|class|data|default|deriving|do|else|if|import|in|infix|infixl|infixr|instance|let|module|newtype|of|then|type|where|_)(?=[^\d'A-Za-z]|$)/,
2 | null],["pln",/^(?:[A-Z][\w']*\.)*[A-Za-z][\w']*/],["pun",/^[^\d\t-\r "'A-Za-z]+/]]),["hs"]);
3 |
--------------------------------------------------------------------------------
/public/static/common/zui/lib/prettify/lang-lisp.js:
--------------------------------------------------------------------------------
1 | var a=null;
2 | PR.registerLangHandler(PR.createSimpleLexer([["opn",/^\(+/,a,"("],["clo",/^\)+/,a,")"],["com",/^;[^\n\r]*/,a,";"],["pln",/^[\t\n\r \xa0]+/,a,"\t\n\r \u00a0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,a,'"']],[["kwd",/^(?:block|c[ad]+r|catch|con[ds]|def(?:ine|un)|do|eq|eql|equal|equalp|eval-when|flet|format|go|if|labels|lambda|let|load-time-value|locally|macrolet|multiple-value-call|nil|progn|progv|quote|require|return-from|setq|symbol-macrolet|t|tagbody|the|throw|unwind)\b/,a],
3 | ["lit",/^[+-]?(?:[#0]x[\da-f]+|\d+\/\d+|(?:\.\d+|\d+(?:\.\d*)?)(?:[de][+-]?\d+)?)/i],["lit",/^'(?:-*(?:\w|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?)?/],["pln",/^-*(?:[_a-z]|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?/i],["pun",/^[^\w\t\n\r "'-);\\\xa0]+/]]),["cl","el","lisp","lsp","scm","ss","rkt"]);
4 |
--------------------------------------------------------------------------------
/public/static/common/zui/lib/prettify/lang-llvm.js:
--------------------------------------------------------------------------------
1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^!?"(?:[^"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["com",/^;[^\n\r]*/,null,";"]],[["pln",/^[!%@](?:[$\-.A-Z_a-z][\w$\-.]*|\d+)/],["kwd",/^[^\W\d]\w*/,null],["lit",/^\d+\.\d+/],["lit",/^(?:\d+|0[Xx][\dA-Fa-f]+)/],["pun",/^[(-*,:<->[\]{}]|\.\.\.$/]]),["llvm","ll"]);
2 |
--------------------------------------------------------------------------------
/public/static/common/zui/lib/prettify/lang-lua.js:
--------------------------------------------------------------------------------
1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^(?:"(?:[^"\\]|\\[\S\s])*(?:"|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$))/,null,"\"'"]],[["com",/^--(?:\[(=*)\[[\S\s]*?(?:]\1]|$)|[^\n\r]*)/],["str",/^\[(=*)\[[\S\s]*?(?:]\1]|$)/],["kwd",/^(?:and|break|do|else|elseif|end|false|for|function|if|in|local|nil|not|or|repeat|return|then|true|until|while)\b/,null],["lit",/^[+-]?(?:0x[\da-f]+|(?:\.\d+|\d+(?:\.\d*)?)(?:e[+-]?\d+)?)/i],
2 | ["pln",/^[_a-z]\w*/i],["pun",/^[^\w\t\n\r \xa0][^\w\t\n\r "'+=\xa0-]*/]]),["lua"]);
3 |
--------------------------------------------------------------------------------
/public/static/common/zui/lib/prettify/lang-mumps.js:
--------------------------------------------------------------------------------
1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^"(?:[^"]|\\.)*"/,null,'"']],[["com",/^;[^\n\r]*/,null,";"],["dec",/^\$(?:d|device|ec|ecode|es|estack|et|etrap|h|horolog|i|io|j|job|k|key|p|principal|q|quit|st|stack|s|storage|sy|system|t|test|tl|tlevel|tr|trestart|x|y|z[a-z]*|a|ascii|c|char|d|data|e|extract|f|find|fn|fnumber|g|get|j|justify|l|length|na|name|o|order|p|piece|ql|qlength|qs|qsubscript|q|query|r|random|re|reverse|s|select|st|stack|t|text|tr|translate|nan)\b/i,
2 | null],["kwd",/^(?:[^$]b|break|c|close|d|do|e|else|f|for|g|goto|h|halt|h|hang|i|if|j|job|k|kill|l|lock|m|merge|n|new|o|open|q|quit|r|read|s|set|tc|tcommit|tre|trestart|tro|trollback|ts|tstart|u|use|v|view|w|write|x|xecute)\b/i,null],["lit",/^[+-]?(?:\.\d+|\d+(?:\.\d*)?)(?:e[+-]?\d+)?/i],["pln",/^[a-z][^\W_]*/i],["pun",/^[^\w\t\n\r"$%;^\xa0]|_/]]),["mumps"]);
3 |
--------------------------------------------------------------------------------
/public/static/common/zui/lib/prettify/lang-pascal.js:
--------------------------------------------------------------------------------
1 | var a=null;
2 | PR.registerLangHandler(PR.createSimpleLexer([["str",/^'(?:[^\n\r'\\]|\\.)*(?:'|$)/,a,"'"],["pln",/^\s+/,a," \r\n\t\u00a0"]],[["com",/^\(\*[\S\s]*?(?:\*\)|$)|^{[\S\s]*?(?:}|$)/,a],["kwd",/^(?:absolute|and|array|asm|assembler|begin|case|const|constructor|destructor|div|do|downto|else|end|external|for|forward|function|goto|if|implementation|in|inline|interface|interrupt|label|mod|not|object|of|or|packed|procedure|program|record|repeat|set|shl|shr|then|to|type|unit|until|uses|var|virtual|while|with|xor)\b/i,a],
3 | ["lit",/^(?:true|false|self|nil)/i,a],["pln",/^[a-z][^\W_]*/i,a],["lit",/^(?:\$[\da-f]+|(?:\d+(?:\.\d*)?|\.\d+)(?:e[+-]?\d+)?)/i,a,"0123456789"],["pun",/^.[^\s\w$'./@]*/,a]]),["pascal"]);
4 |
--------------------------------------------------------------------------------
/public/static/common/zui/lib/prettify/lang-proto.js:
--------------------------------------------------------------------------------
1 | PR.registerLangHandler(PR.sourceDecorator({keywords:"bytes,default,double,enum,extend,extensions,false,group,import,max,message,option,optional,package,repeated,required,returns,rpc,service,syntax,to,true",types:/^(bool|(double|s?fixed|[su]?int)(32|64)|float|string)\b/,cStyleComments:!0}),["proto"]);
2 |
--------------------------------------------------------------------------------
/public/static/common/zui/lib/prettify/lang-r.js:
--------------------------------------------------------------------------------
1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["str",/^'(?:[^'\\]|\\[\S\s])*(?:'|$)/,null,"'"]],[["com",/^#.*/],["kwd",/^(?:if|else|for|while|repeat|in|next|break|return|switch|function)(?![\w.])/],["lit",/^0[Xx][\dA-Fa-f]+([Pp]\d+)?[Li]?/],["lit",/^[+-]?(\d+(\.\d+)?|\.\d+)([Ee][+-]?\d+)?[Li]?/],["lit",/^(?:NULL|NA(?:_(?:integer|real|complex|character)_)?|Inf|TRUE|FALSE|NaN|\.\.(?:\.|\d+))(?![\w.])/],
2 | ["pun",/^(?:<-|->>?|-|==|<=|>=|<|>|&&?|!=|\|\|?|[!*+/^]|%.*?%|[$=@~]|:{1,3}|[(),;?[\]{}])/],["pln",/^(?:[A-Za-z]+[\w.]*|\.[^\W\d][\w.]*)(?![\w.])/],["str",/^`.+`/]]),["r","s","R","S","Splus"]);
3 |
--------------------------------------------------------------------------------
/public/static/common/zui/lib/prettify/lang-rd.js:
--------------------------------------------------------------------------------
1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["com",/^%[^\n\r]*/,null,"%"]],[["lit",/^\\(?:cr|l?dots|R|tab)\b/],["kwd",/^\\[@-Za-z]+/],["kwd",/^#(?:ifn?def|endif)/],["pln",/^\\[{}]/],["pun",/^[()[\]{}]+/]]),["Rd","rd"]);
2 |
--------------------------------------------------------------------------------
/public/static/common/zui/lib/prettify/lang-scala.js:
--------------------------------------------------------------------------------
1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^"(?:""(?:""?(?!")|[^"\\]|\\.)*"{0,3}|(?:[^\n\r"\\]|\\.)*"?)/,null,'"'],["lit",/^`(?:[^\n\r\\`]|\\.)*`?/,null,"`"],["pun",/^[!#%&(--:-@[-^{-~]+/,null,"!#%&()*+,-:;<=>?@[\\]^{|}~"]],[["str",/^'(?:[^\n\r'\\]|\\(?:'|[^\n\r']+))'/],["lit",/^'[$A-Z_a-z][\w$]*(?![\w$'])/],["kwd",/^(?:abstract|case|catch|class|def|do|else|extends|final|finally|for|forSome|if|implicit|import|lazy|match|new|object|override|package|private|protected|requires|return|sealed|super|throw|trait|try|type|val|var|while|with|yield)\b/],
2 | ["lit",/^(?:true|false|null|this)\b/],["lit",/^(?:0(?:[0-7]+|x[\da-f]+)l?|(?:0|[1-9]\d*)(?:(?:\.\d+)?(?:e[+-]?\d+)?f?|l?)|\\.\d+(?:e[+-]?\d+)?f?)/i],["typ",/^[$_]*[A-Z][\d$A-Z_]*[a-z][\w$]*/],["pln",/^[$A-Z_a-z][\w$]*/],["com",/^\/(?:\/.*|\*(?:\/|\**[^*/])*(?:\*+\/?)?)/],["pun",/^(?:\.+|\/)/]]),["scala"]);
3 |
--------------------------------------------------------------------------------
/public/static/common/zui/lib/prettify/lang-tcl.js:
--------------------------------------------------------------------------------
1 | var a=null;
2 | PR.registerLangHandler(PR.createSimpleLexer([["opn",/^{+/,a,"{"],["clo",/^}+/,a,"}"],["com",/^#[^\n\r]*/,a,"#"],["pln",/^[\t\n\r \xa0]+/,a,"\t\n\r \u00a0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,a,'"']],[["kwd",/^(?:after|append|apply|array|break|case|catch|continue|error|eval|exec|exit|expr|for|foreach|if|incr|info|proc|return|set|switch|trace|uplevel|upvar|while)\b/,a],["lit",/^[+-]?(?:[#0]x[\da-f]+|\d+\/\d+|(?:\.\d+|\d+(?:\.\d*)?)(?:[de][+-]?\d+)?)/i],["lit",
3 | /^'(?:-*(?:\w|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?)?/],["pln",/^-*(?:[_a-z]|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?/i],["pun",/^[^\w\t\n\r "'-);\\\xa0]+/]]),["tcl"]);
4 |
--------------------------------------------------------------------------------
/public/static/common/zui/lib/prettify/lang-tex.js:
--------------------------------------------------------------------------------
1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["com",/^%[^\n\r]*/,null,"%"]],[["kwd",/^\\[@-Za-z]+/],["kwd",/^\\./],["typ",/^[$&]/],["lit",/[+-]?(?:\.\d+|\d+(?:\.\d*)?)(cm|em|ex|in|pc|pt|bp|mm)/i],["pun",/^[()=[\]{}]+/]]),["latex","tex"]);
2 |
--------------------------------------------------------------------------------
/public/static/common/zui/lib/prettify/lang-wiki.js:
--------------------------------------------------------------------------------
1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\d\t a-gi-z\xa0]+/,null,"\t \u00a0abcdefgijklmnopqrstuvwxyz0123456789"],["pun",/^[*=[\]^~]+/,null,"=*~^[]"]],[["lang-wiki.meta",/(?:^^|\r\n?|\n)(#[a-z]+)\b/],["lit",/^[A-Z][a-z][\da-z]+[A-Z][a-z][^\W_]+\b/],["lang-",/^{{{([\S\s]+?)}}}/],["lang-",/^`([^\n\r`]+)`/],["str",/^https?:\/\/[^\s#/?]*(?:\/[^\s#?]*)?(?:\?[^\s#]*)?(?:#\S*)?/i],["pln",/^(?:\r\n|[\S\s])[^\n\r#*=A-[^`h{~]*/]]),["wiki"]);
2 | PR.registerLangHandler(PR.createSimpleLexer([["kwd",/^#[a-z]+/i,null,"#"]],[]),["wiki.meta"]);
3 |
--------------------------------------------------------------------------------
/public/static/common/zui/lib/prettify/lang-yaml.js:
--------------------------------------------------------------------------------
1 | var a=null;
2 | PR.registerLangHandler(PR.createSimpleLexer([["pun",/^[:>?|]+/,a,":|>?"],["dec",/^%(?:YAML|TAG)[^\n\r#]+/,a,"%"],["typ",/^&\S+/,a,"&"],["typ",/^!\S*/,a,"!"],["str",/^"(?:[^"\\]|\\.)*(?:"|$)/,a,'"'],["str",/^'(?:[^']|'')*(?:'|$)/,a,"'"],["com",/^#[^\n\r]*/,a,"#"],["pln",/^\s+/,a," \t\r\n"]],[["dec",/^(?:---|\.\.\.)(?:[\n\r]|$)/],["pun",/^-/],["kwd",/^\w+:[\n\r ]/],["pln",/^\w+/]]),["yaml","yml"]);
3 |
--------------------------------------------------------------------------------
/public/static/common/zui/lib/prettify/prettify.css:
--------------------------------------------------------------------------------
1 | /*! Apache License 2.0 https://github.com/google/code-prettify*/
2 | .pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee}
3 |
--------------------------------------------------------------------------------
/public/static/common/zui/lib/uploader/Moxie.swf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/zui/lib/uploader/Moxie.swf
--------------------------------------------------------------------------------
/public/static/common/zui/lib/uploader/Moxie.xap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/common/zui/lib/uploader/Moxie.xap
--------------------------------------------------------------------------------
/public/static/user/css/iconfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/css/iconfont.eot
--------------------------------------------------------------------------------
/public/static/user/css/iconfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/css/iconfont.ttf
--------------------------------------------------------------------------------
/public/static/user/css/iconfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/css/iconfont.woff
--------------------------------------------------------------------------------
/public/static/user/css/tp5page.css:
--------------------------------------------------------------------------------
1 | .pagination {
2 | display: inline-block;
3 | padding: 0 auto;
4 | margin: 20px 0;
5 | border-radius: 4px;
6 | }
7 | .pagination li {
8 | display: inline;
9 | }
10 | .pagination li a,
11 | .pagination li span {
12 | position: relative;
13 | float: left;
14 | padding: 6px 12px;
15 | line-height: 1.42857143;
16 | color: #393D49;
17 | background: #fff;
18 | margin: 0 0 0 8px;
19 | border: 1px solid #eee;
20 | }
21 |
22 | .pagination li a:hover {
23 | color: #fff;
24 | background: #009688;
25 | }
26 | .pagination .active span{
27 | background: #009688;
28 | color: #fff;
29 | }
30 | .pagination .disabled{
31 | display: none;
32 | }
--------------------------------------------------------------------------------
/public/static/user/images/acc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/acc.png
--------------------------------------------------------------------------------
/public/static/user/images/ai.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/ai.png
--------------------------------------------------------------------------------
/public/static/user/images/aif.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/aif.png
--------------------------------------------------------------------------------
/public/static/user/images/app.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/app.png
--------------------------------------------------------------------------------
/public/static/user/images/atom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/atom.png
--------------------------------------------------------------------------------
/public/static/user/images/avatar/0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/avatar/0.jpg
--------------------------------------------------------------------------------
/public/static/user/images/avatar/00.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/avatar/00.jpg
--------------------------------------------------------------------------------
/public/static/user/images/avatar/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/avatar/1.jpg
--------------------------------------------------------------------------------
/public/static/user/images/avatar/10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/avatar/10.jpg
--------------------------------------------------------------------------------
/public/static/user/images/avatar/11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/avatar/11.jpg
--------------------------------------------------------------------------------
/public/static/user/images/avatar/2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/avatar/2.jpg
--------------------------------------------------------------------------------
/public/static/user/images/avatar/3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/avatar/3.jpg
--------------------------------------------------------------------------------
/public/static/user/images/avatar/4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/avatar/4.jpg
--------------------------------------------------------------------------------
/public/static/user/images/avatar/5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/avatar/5.jpg
--------------------------------------------------------------------------------
/public/static/user/images/avatar/6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/avatar/6.jpg
--------------------------------------------------------------------------------
/public/static/user/images/avatar/7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/avatar/7.jpg
--------------------------------------------------------------------------------
/public/static/user/images/avatar/8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/avatar/8.jpg
--------------------------------------------------------------------------------
/public/static/user/images/avatar/9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/avatar/9.jpg
--------------------------------------------------------------------------------
/public/static/user/images/avatar/default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/avatar/default.png
--------------------------------------------------------------------------------
/public/static/user/images/avi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/avi.png
--------------------------------------------------------------------------------
/public/static/user/images/bmp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/bmp.png
--------------------------------------------------------------------------------
/public/static/user/images/cdr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/cdr.png
--------------------------------------------------------------------------------
/public/static/user/images/css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/css.png
--------------------------------------------------------------------------------
/public/static/user/images/doc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/doc.png
--------------------------------------------------------------------------------
/public/static/user/images/docx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/docx.png
--------------------------------------------------------------------------------
/public/static/user/images/eps.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/eps.png
--------------------------------------------------------------------------------
/public/static/user/images/evex.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/evex.png
--------------------------------------------------------------------------------
/public/static/user/images/exe.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/exe.png
--------------------------------------------------------------------------------
/public/static/user/images/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/favicon.png
--------------------------------------------------------------------------------
/public/static/user/images/fla.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/fla.png
--------------------------------------------------------------------------------
/public/static/user/images/flv.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/flv.png
--------------------------------------------------------------------------------
/public/static/user/images/gzip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/gzip.png
--------------------------------------------------------------------------------
/public/static/user/images/html.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/html.png
--------------------------------------------------------------------------------
/public/static/user/images/icons.7fc7e2bab2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/icons.7fc7e2bab2.png
--------------------------------------------------------------------------------
/public/static/user/images/icons_2x.b54790f3c7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/icons_2x.b54790f3c7.png
--------------------------------------------------------------------------------
/public/static/user/images/indd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/indd.png
--------------------------------------------------------------------------------
/public/static/user/images/js.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/js.png
--------------------------------------------------------------------------------
/public/static/user/images/keynote.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/keynote.png
--------------------------------------------------------------------------------
/public/static/user/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/loading.gif
--------------------------------------------------------------------------------
/public/static/user/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/logo.png
--------------------------------------------------------------------------------
/public/static/user/images/logo1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/logo1.png
--------------------------------------------------------------------------------
/public/static/user/images/mov.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/mov.png
--------------------------------------------------------------------------------
/public/static/user/images/mp4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/mp4.png
--------------------------------------------------------------------------------
/public/static/user/images/numbers.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/numbers.png
--------------------------------------------------------------------------------
/public/static/user/images/otf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/otf.png
--------------------------------------------------------------------------------
/public/static/user/images/pages.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/pages.png
--------------------------------------------------------------------------------
/public/static/user/images/pdf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/pdf.png
--------------------------------------------------------------------------------
/public/static/user/images/php.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/php.png
--------------------------------------------------------------------------------
/public/static/user/images/png.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/png.png
--------------------------------------------------------------------------------
/public/static/user/images/ppt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/ppt.png
--------------------------------------------------------------------------------
/public/static/user/images/pptx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/pptx.png
--------------------------------------------------------------------------------
/public/static/user/images/psd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/psd.png
--------------------------------------------------------------------------------
/public/static/user/images/raw.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/raw.png
--------------------------------------------------------------------------------
/public/static/user/images/rss.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/rss.png
--------------------------------------------------------------------------------
/public/static/user/images/rtf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/rtf.png
--------------------------------------------------------------------------------
/public/static/user/images/sql.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/sql.png
--------------------------------------------------------------------------------
/public/static/user/images/svg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/svg.png
--------------------------------------------------------------------------------
/public/static/user/images/swf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/swf.png
--------------------------------------------------------------------------------
/public/static/user/images/tar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/tar.png
--------------------------------------------------------------------------------
/public/static/user/images/tiff.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/tiff.png
--------------------------------------------------------------------------------
/public/static/user/images/timg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/timg.jpg
--------------------------------------------------------------------------------
/public/static/user/images/ttf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/ttf.png
--------------------------------------------------------------------------------
/public/static/user/images/vs-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/vs-icon.png
--------------------------------------------------------------------------------
/public/static/user/images/wav.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/wav.png
--------------------------------------------------------------------------------
/public/static/user/images/wmv.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/wmv.png
--------------------------------------------------------------------------------
/public/static/user/images/xls.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/xls.png
--------------------------------------------------------------------------------
/public/static/user/images/xlsx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/xlsx.png
--------------------------------------------------------------------------------
/public/static/user/images/xml.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/static/user/images/xml.png
--------------------------------------------------------------------------------
/public/uploads/admin/admin_thumb/20180306/2663da766cf2163b9f4254542ccc142e.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/uploads/admin/admin_thumb/20180306/2663da766cf2163b9f4254542ccc142e.jpg
--------------------------------------------------------------------------------
/public/uploads/admin/admin_thumb/20180306/ecbd2f8dd06090b2336645d3b9f7720c.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/uploads/admin/admin_thumb/20180306/ecbd2f8dd06090b2336645d3b9f7720c.png
--------------------------------------------------------------------------------
/public/uploads/admin/admin_thumb/20180306/fea3fbba5f988961b3f2dbe6f99db1ba.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/uploads/admin/admin_thumb/20180306/fea3fbba5f988961b3f2dbe6f99db1ba.png
--------------------------------------------------------------------------------
/public/uploads/admin/admin_thumb/20180424/9cb903fd1485dcf57661bbc10dcd5ca9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/public/uploads/admin/admin_thumb/20180424/9cb903fd1485dcf57661bbc10dcd5ca9.jpg
--------------------------------------------------------------------------------
/route/route.php:
--------------------------------------------------------------------------------
1 |
10 | // +----------------------------------------------------------------------
11 |
12 | Route::get('think', function () {
13 | return 'hello,ThinkPHP5!';
14 | });
15 |
16 | Route::get('user/login/index', 'user/login/index');
17 |
18 | return [
19 | 'login'=>['user/login/index',['ext'=>'html']],
20 | 'join'=>['user/join/index',['ext'=>'html']],
21 | '[u]'=>[':id'=>['user/home/index',['id'=>'\d+']]],
22 | ];
23 |
--------------------------------------------------------------------------------
/runtime/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
--------------------------------------------------------------------------------
/think:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env php
2 |
11 | // +----------------------------------------------------------------------
12 |
13 | namespace think;
14 |
15 | // 加载基础文件
16 | require __DIR__ . '/thinkphp/base.php';
17 |
18 | // 应用初始化
19 | Container::get('app')->path(__DIR__ . '/application/')->initialize();
20 |
21 | // 控制台初始化
22 | Console::init();
--------------------------------------------------------------------------------
/thinkphp/.gitignore:
--------------------------------------------------------------------------------
1 | /vendor
2 | composer.phar
3 | composer.lock
4 | .DS_Store
5 | Thumbs.db
6 | /phpunit.xml
7 | /.idea
8 | /.vscode
--------------------------------------------------------------------------------
/thinkphp/.htaccess:
--------------------------------------------------------------------------------
1 | deny from all
--------------------------------------------------------------------------------
/thinkphp/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "topthink/framework",
3 | "description": "the new thinkphp framework",
4 | "type": "think-framework",
5 | "keywords": [
6 | "framework",
7 | "thinkphp",
8 | "ORM"
9 | ],
10 | "homepage": "http://thinkphp.cn/",
11 | "license": "Apache-2.0",
12 | "authors": [
13 | {
14 | "name": "liu21st",
15 | "email": "liu21st@gmail.com"
16 | },
17 | {
18 | "name": "yunwuxin",
19 | "email": "448901948@qq.com"
20 | }
21 | ],
22 | "require": {
23 | "php": ">=5.6.0",
24 | "topthink/think-installer": "~1.0"
25 | },
26 | "require-dev": {
27 | "phpunit/phpunit": "^5.0|^6.0",
28 | "johnkary/phpunit-speedtrap": "^1.0",
29 | "mikey179/vfsStream": "~1.6",
30 | "phploc/phploc": "2.*",
31 | "sebastian/phpcpd": "2.*",
32 | "squizlabs/php_codesniffer": "2.*",
33 | "phpdocumentor/reflection-docblock": "^2.0"
34 | }
35 | }
36 |
--------------------------------------------------------------------------------
/thinkphp/library/think/config/driver/Ini.php:
--------------------------------------------------------------------------------
1 |
10 | // +----------------------------------------------------------------------
11 |
12 | namespace think\config\driver;
13 |
14 | class Ini
15 | {
16 | public function parse($config)
17 | {
18 | if (is_file($config)) {
19 | return parse_ini_file($config, true);
20 | } else {
21 | return parse_ini_string($config, true);
22 | }
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/thinkphp/library/think/config/driver/Json.php:
--------------------------------------------------------------------------------
1 |
10 | // +----------------------------------------------------------------------
11 |
12 | namespace think\config\driver;
13 |
14 | class Json
15 | {
16 | public function parse($config)
17 | {
18 | if (is_file($config)) {
19 | $config = file_get_contents($config);
20 | }
21 |
22 | $result = json_decode($config, true);
23 |
24 | return $result;
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/thinkphp/library/think/console/bin/README.md:
--------------------------------------------------------------------------------
1 | console 工具使用 hiddeninput.exe 在 windows 上隐藏密码输入,该二进制文件由第三方提供,相关源码和其他细节可以在 [Hidden Input](https://github.com/Seldaek/hidden-input) 找到。
2 |
--------------------------------------------------------------------------------
/thinkphp/library/think/console/bin/hiddeninput.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/thinkphp/library/think/console/bin/hiddeninput.exe
--------------------------------------------------------------------------------
/thinkphp/library/think/console/command/make/stubs/controller.plain.stub:
--------------------------------------------------------------------------------
1 |
10 | // +----------------------------------------------------------------------
11 |
12 | namespace think\exception;
13 |
14 | class RouteNotFoundException extends HttpException
15 | {
16 |
17 | public function __construct()
18 | {
19 | parent::__construct(404, 'Route Not Found');
20 | }
21 |
22 | }
23 |
--------------------------------------------------------------------------------
/thinkphp/library/think/facade/Build.php:
--------------------------------------------------------------------------------
1 |
10 | // +----------------------------------------------------------------------
11 |
12 | namespace think\facade;
13 |
14 | use think\Facade;
15 |
16 | /**
17 | * @see \think\Build
18 | * @mixin \think\Build
19 | * @method void run(array $build = [], string $namespace = 'app', bool $suffix = false) static 根据传入的build资料创建目录和文件
20 | * @method void module(string $module = '', array $list = [], string $namespace = 'app', bool $suffix = false) static 创建模块
21 | */
22 | class Build extends Facade
23 | {
24 | }
25 |
--------------------------------------------------------------------------------
/thinkphp/library/think/facade/Env.php:
--------------------------------------------------------------------------------
1 |
10 | // +----------------------------------------------------------------------
11 |
12 | namespace think\facade;
13 |
14 | use think\Facade;
15 |
16 | /**
17 | * @see \think\Env
18 | * @mixin \think\Env
19 | * @method void load(string $file) static 读取环境变量定义文件
20 | * @method mixed get(string $name = null, mixed $default = null) static 获取环境变量值
21 | * @method void set(mixed $env, string $value = null) static 设置环境变量值
22 | */
23 | class Env extends Facade
24 | {
25 | }
26 |
--------------------------------------------------------------------------------
/thinkphp/library/think/facade/Url.php:
--------------------------------------------------------------------------------
1 |
10 | // +----------------------------------------------------------------------
11 |
12 | namespace think\facade;
13 |
14 | use think\Facade;
15 |
16 | /**
17 | * @see \think\Url
18 | * @mixin \think\Url
19 | * @method string build(string $url = '', mixed $vars = '', mixed $suffix = true, mixed $domain = false) static URL生成 支持路由反射
20 | * @method void root(string $root) static 指定当前生成URL地址的root
21 | */
22 | class Url extends Facade
23 | {
24 | }
25 |
--------------------------------------------------------------------------------
/thinkphp/library/think/log/driver/Test.php:
--------------------------------------------------------------------------------
1 |
10 | // +----------------------------------------------------------------------
11 |
12 | namespace think\log\driver;
13 |
14 | /**
15 | * 模拟测试输出
16 | */
17 | class Test
18 | {
19 | /**
20 | * 日志写入接口
21 | * @access public
22 | * @param array $log 日志信息
23 | * @return bool
24 | */
25 | public function save(array $log = [])
26 | {
27 | return true;
28 | }
29 |
30 | }
31 |
--------------------------------------------------------------------------------
/thinkphp/library/think/route/dispatch/Callback.php:
--------------------------------------------------------------------------------
1 |
10 | // +----------------------------------------------------------------------
11 |
12 | namespace think\route\dispatch;
13 |
14 | use think\Container;
15 | use think\route\Dispatch;
16 |
17 | class Callback extends Dispatch
18 | {
19 | public function run()
20 | {
21 | // 执行回调方法
22 | $vars = array_merge($this->app['request']->param(), $this->param);
23 |
24 | return Container::getInstance()->invoke($this->dispatch, $vars);
25 | }
26 |
27 | }
28 |
--------------------------------------------------------------------------------
/thinkphp/library/think/route/dispatch/Redirect.php:
--------------------------------------------------------------------------------
1 |
10 | // +----------------------------------------------------------------------
11 |
12 | namespace think\route\dispatch;
13 |
14 | use think\Response;
15 | use think\route\Dispatch;
16 |
17 | class Redirect extends Dispatch
18 | {
19 | public function run()
20 | {
21 | return Response::create($this->dispatch, 'redirect')->code($this->code);
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/thinkphp/library/think/route/dispatch/Response.php:
--------------------------------------------------------------------------------
1 |
10 | // +----------------------------------------------------------------------
11 |
12 | namespace think\route\dispatch;
13 |
14 | use think\route\Dispatch;
15 |
16 | class Response extends Dispatch
17 | {
18 | public function run()
19 | {
20 | return $this->dispatch;
21 | }
22 |
23 | }
24 |
--------------------------------------------------------------------------------
/thinkphp/library/think/route/dispatch/View.php:
--------------------------------------------------------------------------------
1 |
10 | // +----------------------------------------------------------------------
11 |
12 | namespace think\route\dispatch;
13 |
14 | use think\Response;
15 | use think\route\Dispatch;
16 |
17 | class View extends Dispatch
18 | {
19 | public function run()
20 | {
21 | // 渲染模板输出
22 | $vars = array_merge($this->app['request']->param(), $this->param);
23 |
24 | return Response::create($this->dispatch, 'view')->assign($vars);
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/thinkphp/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/thinkphp/logo.png
--------------------------------------------------------------------------------
/thinkphp/tpl/default_index.tpl:
--------------------------------------------------------------------------------
1 | *{ padding: 0; margin: 0; } div{ padding: 4px 48px;} a{color:#2E5CD5;cursor: pointer;text-decoration: none} a:hover{text-decoration:underline; } body{ background: #fff; font-family: "Century Gothic","Microsoft yahei"; color: #333;font-size:18px;} h1{ font-size: 100px; font-weight: normal; margin-bottom: 12px; } p{ line-height: 1.6em; font-size: 42px } :) 2018新年快乐
ThinkPHP V5.1
12载初心不改(2006-2018) - 你值得信赖的PHP框架
';
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/vendor/autoload.php:
--------------------------------------------------------------------------------
1 | $vendorDir . '/topthink/think-captcha/src/helper.php',
10 | );
11 |
--------------------------------------------------------------------------------
/vendor/composer/autoload_namespaces.php:
--------------------------------------------------------------------------------
1 | array($vendorDir . '/topthink/think-installer/src'),
10 | 'think\\captcha\\' => array($vendorDir . '/topthink/think-captcha/src'),
11 | 'app\\' => array($baseDir . '/application'),
12 | );
13 |
--------------------------------------------------------------------------------
/vendor/topthink/think-captcha/.gitignore:
--------------------------------------------------------------------------------
1 | /vendor/
2 | /composer.lock
3 | .idea
--------------------------------------------------------------------------------
/vendor/topthink/think-captcha/README.md:
--------------------------------------------------------------------------------
1 | # think-captcha
2 | thinkphp5.1 验证码类库
3 |
4 | ## 安装
5 | > composer require topthink/think-captcha
6 |
7 |
8 | ##使用
9 |
10 | ###模板里输出验证码
11 |
12 | ~~~
13 | {:captcha_img()}
14 | ~~~
15 | 或者
16 | ~~~
17 |
18 | ~~~
19 | > 上面两种的最终效果是一样的
20 |
21 | ### 控制器里验证
22 | 使用TP5的内置验证功能即可
23 | ~~~
24 | $this->validate($data,[
25 | 'captcha|验证码'=>'require|captcha'
26 | ]);
27 | ~~~
28 | 或者手动验证
29 | ~~~
30 | if(!captcha_check($captcha)){
31 | //验证失败
32 | };
33 | ~~~
--------------------------------------------------------------------------------
/vendor/topthink/think-captcha/assets/bgs/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/vendor/topthink/think-captcha/assets/bgs/1.jpg
--------------------------------------------------------------------------------
/vendor/topthink/think-captcha/assets/bgs/2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/vendor/topthink/think-captcha/assets/bgs/2.jpg
--------------------------------------------------------------------------------
/vendor/topthink/think-captcha/assets/bgs/3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/vendor/topthink/think-captcha/assets/bgs/3.jpg
--------------------------------------------------------------------------------
/vendor/topthink/think-captcha/assets/bgs/4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/vendor/topthink/think-captcha/assets/bgs/4.jpg
--------------------------------------------------------------------------------
/vendor/topthink/think-captcha/assets/bgs/5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/vendor/topthink/think-captcha/assets/bgs/5.jpg
--------------------------------------------------------------------------------
/vendor/topthink/think-captcha/assets/bgs/6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/vendor/topthink/think-captcha/assets/bgs/6.jpg
--------------------------------------------------------------------------------
/vendor/topthink/think-captcha/assets/bgs/7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/vendor/topthink/think-captcha/assets/bgs/7.jpg
--------------------------------------------------------------------------------
/vendor/topthink/think-captcha/assets/bgs/8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/vendor/topthink/think-captcha/assets/bgs/8.jpg
--------------------------------------------------------------------------------
/vendor/topthink/think-captcha/assets/ttfs/1.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/vendor/topthink/think-captcha/assets/ttfs/1.ttf
--------------------------------------------------------------------------------
/vendor/topthink/think-captcha/assets/ttfs/2.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/vendor/topthink/think-captcha/assets/ttfs/2.ttf
--------------------------------------------------------------------------------
/vendor/topthink/think-captcha/assets/ttfs/3.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/vendor/topthink/think-captcha/assets/ttfs/3.ttf
--------------------------------------------------------------------------------
/vendor/topthink/think-captcha/assets/ttfs/4.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/vendor/topthink/think-captcha/assets/ttfs/4.ttf
--------------------------------------------------------------------------------
/vendor/topthink/think-captcha/assets/ttfs/5.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/vendor/topthink/think-captcha/assets/ttfs/5.ttf
--------------------------------------------------------------------------------
/vendor/topthink/think-captcha/assets/ttfs/6.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/vendor/topthink/think-captcha/assets/ttfs/6.ttf
--------------------------------------------------------------------------------
/vendor/topthink/think-captcha/assets/zhttfs/1.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andphp/admin-thinkphp5/91c2c447ad29be1cd247448637a9762dbf91e135/vendor/topthink/think-captcha/assets/zhttfs/1.ttf
--------------------------------------------------------------------------------
/vendor/topthink/think-captcha/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "topthink/think-captcha",
3 | "description": "captcha package for thinkphp5",
4 | "authors": [
5 | {
6 | "name": "yunwuxin",
7 | "email": "448901948@qq.com"
8 | }
9 | ],
10 | "license": "Apache-2.0",
11 | "require": {
12 | "topthink/framework": "5.1.*"
13 | },
14 | "autoload": {
15 | "psr-4": {
16 | "think\\captcha\\": "src/"
17 | },
18 | "files": [
19 | "src/helper.php"
20 | ]
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/vendor/topthink/think-captcha/src/CaptchaController.php:
--------------------------------------------------------------------------------
1 |
10 | // +----------------------------------------------------------------------
11 |
12 | namespace think\captcha;
13 |
14 | use think\facade\Config;
15 |
16 | class CaptchaController
17 | {
18 | public function index($id = "")
19 | {
20 | $captcha = new Captcha((array) Config::pull('captcha'));
21 | return $captcha->entry($id);
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/vendor/topthink/think-installer/.gitignore:
--------------------------------------------------------------------------------
1 | /.idea
2 | composer.lock
3 | /vendor
--------------------------------------------------------------------------------
/vendor/topthink/think-installer/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "topthink/think-installer",
3 | "type": "composer-plugin",
4 | "require": {
5 | "composer-plugin-api": "^1.0"
6 | },
7 | "require-dev": {
8 | "composer/composer": "1.0.*@dev"
9 | },
10 | "license": "Apache-2.0",
11 | "authors": [
12 | {
13 | "name": "yunwuxin",
14 | "email": "448901948@qq.com"
15 | }
16 | ],
17 | "autoload": {
18 | "psr-4": {
19 | "think\\composer\\": "src"
20 | }
21 | },
22 | "extra": {
23 | "class": "think\\composer\\Plugin"
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/vendor/topthink/think-installer/src/Plugin.php:
--------------------------------------------------------------------------------
1 | getInstallationManager();
15 |
16 | //框架核心
17 | $manager->addInstaller(new ThinkFramework($io, $composer));
18 |
19 | //单元测试
20 | $manager->addInstaller(new ThinkTesting($io, $composer));
21 |
22 | //扩展
23 | $manager->addInstaller(new ThinkExtend($io, $composer));
24 |
25 | }
26 | }
--------------------------------------------------------------------------------