基本信息
源码名称:基于CodeMirror的一个在线sql编辑工具
源码大小:4.27M
文件格式:.zip
开发语言:CSS
更新时间:2023-04-05
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 5 元 
   源码介绍
基于CodeMirror的一个在线sql编辑工具

* 左侧提供数据库表字段树形结构,可拖拽到sql编辑框。 * 输入首字母可提示表名字段名(表名字段名可自定义) 。 *括号高亮匹配。 * 执行与中断功能。 * 自定义外部接口获取sql关键词、函数、表字段等...* sql格式化。


文件清单
├── __MACOSX
│   └── sql-editor-master
│       ├── css
│       │   └── theme
│       ├── image
│       ├── js
│       │   ├── editor
│       │   ├── jquery-easyui
│       │   │   ├── locale
│       │   │   ├── plugins
│       │   │   ├── src
│       │   │   └── themes
│       │   │       ├── black
│       │   │       │   └── images
│       │   │       ├── bootstrap
│       │   │       │   └── images
│       │   │       ├── default
│       │   │       │   └── images
│       │   │       ├── gray
│       │   │       │   └── images
│       │   │       ├── icons
│       │   │       ├── material
│       │   │       │   └── images
│       │   │       └── metro
│       │   │           └── images
│       │   └── layui
│       │       ├── css
│       │       │   └── modules
│       │       │       ├── laydate
│       │       │       │   └── default
│       │       │       └── layer
│       │       │           └── default
│       │       ├── font
│       │       ├── images
│       │       │   └── face
│       │       └── lay
│       │           └── modules
│       ├── json
│       ├── nginx-1.16.0
│       │   ├── conf
│       │   ├── contrib
│       │   │   ├── unicode2nginx
│       │   │   └── vim
│       │   │       ├── ftdetect
│       │   │       ├── ftplugin
│       │   │       ├── indent
│       │   │       └── syntax
│       │   ├── docs
│       │   └── logs
│       └── pic
└── sql-editor-master
    ├── css
    │   ├── codemirror.css
    │   ├── index.css
    │   ├── show-hint.css
    │   └── theme
    │       ├── dracula.css
    │       └── seti.css
    ├── folding.html
    ├── image
    │   ├── format.png
    │   ├── fun.png
    │   ├── kwd.png
    │   ├── run.png
    │   ├── save.png
    │   ├── stop0.png
    │   ├── stop1.png
    │   └── table.png
    ├── index.html
    ├── js
    │   ├── editor
    │   │   ├── codemirror.js
    │   │   ├── formatting.js
    │   │   ├── show-hint.js
    │   │   ├── sql-formatter.min.js
    │   │   ├── sql-hint.js
    │   │   ├── sql.js
    │   │   └── sublime.js
    │   ├── folding.js
    │   ├── index.js
    │   ├── jquery-easyui
    │   │   ├── easyloader.js
    │   │   ├── jquery.easyui.min.js
    │   │   ├── jquery.easyui.mobile.js
    │   │   ├── jquery.min.js
    │   │   ├── locale
    │   │   │   ├── easyui-lang-af.js
    │   │   │   ├── easyui-lang-am.js
    │   │   │   ├── easyui-lang-ar.js
    │   │   │   ├── easyui-lang-bg.js
    │   │   │   ├── easyui-lang-ca.js
    │   │   │   ├── easyui-lang-cs.js
    │   │   │   ├── easyui-lang-cz.js
    │   │   │   ├── easyui-lang-da.js
    │   │   │   ├── easyui-lang-de.js
    │   │   │   ├── easyui-lang-el.js
    │   │   │   ├── easyui-lang-en.js
    │   │   │   ├── easyui-lang-es.js
    │   │   │   ├── easyui-lang-fr.js
    │   │   │   ├── easyui-lang-it.js
    │   │   │   ├── easyui-lang-jp.js
    │   │   │   ├── easyui-lang-ko.js
    │   │   │   ├── easyui-lang-nl.js
    │   │   │   ├── easyui-lang-pl.js
    │   │   │   ├── easyui-lang-pt_BR.js
    │   │   │   ├── easyui-lang-ru.js
    │   │   │   ├── easyui-lang-sv_SE.js
    │   │   │   ├── easyui-lang-tr.js
    │   │   │   ├── easyui-lang-zh_CN.js
    │   │   │   └── easyui-lang-zh_TW.js
    │   │   ├── plugins
    │   │   │   ├── jquery.accordion.js
    │   │   │   ├── jquery.calendar.js
    │   │   │   ├── jquery.combobox.js
    │   │   │   ├── jquery.combogrid.js
    │   │   │   ├── jquery.combo.js
    │   │   │   ├── jquery.combotreegrid.js
    │   │   │   ├── jquery.combotree.js
    │   │   │   ├── jquery.datagrid.js
    │   │   │   ├── jquery.datalist.js
    │   │   │   ├── jquery.datebox.js
    │   │   │   ├── jquery.datetimebox.js
    │   │   │   ├── jquery.datetimespinner.js
    │   │   │   ├── jquery.dialog.js
    │   │   │   ├── jquery.draggable.js
    │   │   │   ├── jquery.droppable.js
    │   │   │   ├── jquery.filebox.js
    │   │   │   ├── jquery.form.js
    │   │   │   ├── jquery.layout.js
    │   │   │   ├── jquery.linkbutton.js
    │   │   │   ├── jquery.menubutton.js
    │   │   │   ├── jquery.menu.js
    │   │   │   ├── jquery.messager.js
    │   │   │   ├── jquery.mobile.js
    │   │   │   ├── jquery.numberbox.js
    │   │   │   ├── jquery.numberspinner.js
    │   │   │   ├── jquery.pagination.js
    │   │   │   ├── jquery.panel.js
    │   │   │   ├── jquery.parser.js
    │   │   │   ├── jquery.passwordbox.js
    │   │   │   ├── jquery.progressbar.js
    │   │   │   ├── jquery.propertygrid.js
    │   │   │   ├── jquery.resizable.js
    │   │   │   ├── jquery.searchbox.js
    │   │   │   ├── jquery.slider.js
    │   │   │   ├── jquery.spinner.js
    │   │   │   ├── jquery.splitbutton.js
    │   │   │   ├── jquery.switchbutton.js
    │   │   │   ├── jquery.tabs.js
    │   │   │   ├── jquery.tagbox.js
    │   │   │   ├── jquery.textbox.js
    │   │   │   ├── jquery.timespinner.js
    │   │   │   ├── jquery.tooltip.js
    │   │   │   ├── jquery.treegrid.js
    │   │   │   ├── jquery.tree.js
    │   │   │   ├── jquery.validatebox.js
    │   │   │   └── jquery.window.js
    │   │   ├── src
    │   │   │   ├── easyloader.js
    │   │   │   ├── jquery.accordion.js
    │   │   │   ├── jquery.calendar.js
    │   │   │   ├── jquery.combobox.js
    │   │   │   ├── jquery.datebox.js
    │   │   │   ├── jquery.draggable.js
    │   │   │   ├── jquery.droppable.js
    │   │   │   ├── jquery.form.js
    │   │   │   ├── jquery.linkbutton.js
    │   │   │   ├── jquery.menu.js
    │   │   │   ├── jquery.parser.js
    │   │   │   ├── jquery.progressbar.js
    │   │   │   ├── jquery.propertygrid.js
    │   │   │   ├── jquery.resizable.js
    │   │   │   ├── jquery.slider.js
    │   │   │   ├── jquery.tabs.js
    │   │   │   └── jquery.window.js
    │   │   └── themes
    │   │       ├── black
    │   │       │   ├── accordion.css
    │   │       │   ├── calendar.css
    │   │       │   ├── combobox.css
    │   │       │   ├── combo.css
    │   │       │   ├── datagrid.css
    │   │       │   ├── datalist.css
    │   │       │   ├── datebox.css
    │   │       │   ├── dialog.css
    │   │       │   ├── easyui.css
    │   │       │   ├── filebox.css
    │   │       │   ├── images
    │   │       │   │   ├── accordion_arrows.png
    │   │       │   │   ├── blank.gif
    │   │       │   │   ├── calendar_arrows.png
    │   │       │   │   ├── combo_arrow.png
    │   │       │   │   ├── datagrid_icons.png
    │   │       │   │   ├── datebox_arrow.png
    │   │       │   │   ├── layout_arrows.png
    │   │       │   │   ├── linkbutton_bg.png
    │   │       │   │   ├── loading.gif
    │   │       │   │   ├── menu_arrows.png
    │   │       │   │   ├── messager_icons.png
    │   │       │   │   ├── pagination_icons.png
    │   │       │   │   ├── panel_tools.png
    │   │       │   │   ├── passwordbox_close.png
    │   │       │   │   ├── passwordbox_open.png
    │   │       │   │   ├── searchbox_button.png
    │   │       │   │   ├── slider_handle.png
    │   │       │   │   ├── spinner_arrows.png
    │   │       │   │   ├── tabs_icons.png
    │   │       │   │   ├── tagbox_icons.png
    │   │       │   │   ├── tree_icons.png
    │   │       │   │   └── validatebox_warning.png
    │   │       │   ├── layout.css
    │   │       │   ├── linkbutton.css
    │   │       │   ├── menubutton.css
    │   │       │   ├── menu.css
    │   │       │   ├── messager.css
    │   │       │   ├── numberbox.css
    │   │       │   ├── pagination.css
    │   │       │   ├── panel.css
    │   │       │   ├── passwordbox.css
    │   │       │   ├── progressbar.css
    │   │       │   ├── propertygrid.css
    │   │       │   ├── searchbox.css
    │   │       │   ├── slider.css
    │   │       │   ├── spinner.css
    │   │       │   ├── splitbutton.css
    │   │       │   ├── switchbutton.css
    │   │       │   ├── tabs.css
    │   │       │   ├── tagbox.css
    │   │       │   ├── textbox.css
    │   │       │   ├── tooltip.css
    │   │       │   ├── tree.css
    │   │       │   ├── validatebox.css
    │   │       │   └── window.css
    │   │       ├── bootstrap
    │   │       │   ├── accordion.css
    │   │       │   ├── calendar.css
    │   │       │   ├── combobox.css
    │   │       │   ├── combo.css
    │   │       │   ├── datagrid.css
    │   │       │   ├── datalist.css
    │   │       │   ├── datebox.css
    │   │       │   ├── dialog.css
    │   │       │   ├── easyui.css
    │   │       │   ├── filebox.css
    │   │       │   ├── images
    │   │       │   │   ├── accordion_arrows.png
    │   │       │   │   ├── blank.gif
    │   │       │   │   ├── calendar_arrows.png
    │   │       │   │   ├── combo_arrow.png
    │   │       │   │   ├── datagrid_icons.png
    │   │       │   │   ├── datebox_arrow.png
    │   │       │   │   ├── layout_arrows.png
    │   │       │   │   ├── linkbutton_bg.png
    │   │       │   │   ├── loading.gif
    │   │       │   │   ├── menu_arrows.png
    │   │       │   │   ├── messager_icons.png
    │   │       │   │   ├── pagination_icons.png
    │   │       │   │   ├── panel_tools.png
    │   │       │   │   ├── passwordbox_close.png
    │   │       │   │   ├── passwordbox_open.png
    │   │       │   │   ├── searchbox_button.png
    │   │       │   │   ├── slider_handle.png
    │   │       │   │   ├── spinner_arrows.png
    │   │       │   │   ├── tabs_icons.png
    │   │       │   │   ├── tagbox_icons.png
    │   │       │   │   ├── tree_icons.png
    │   │       │   │   └── validatebox_warning.png
    │   │       │   ├── layout.css
    │   │       │   ├── linkbutton.css
    │   │       │   ├── menubutton.css
    │   │       │   ├── menu.css
    │   │       │   ├── messager.css
    │   │       │   ├── numberbox.css
    │   │       │   ├── pagination.css
    │   │       │   ├── panel.css
    │   │       │   ├── passwordbox.css
    │   │       │   ├── progressbar.css
    │   │       │   ├── propertygrid.css
    │   │       │   ├── searchbox.css
    │   │       │   ├── slider.css
    │   │       │   ├── spinner.css
    │   │       │   ├── splitbutton.css
    │   │       │   ├── switchbutton.css
    │   │       │   ├── tabs.css
    │   │       │   ├── tagbox.css
    │   │       │   ├── textbox.css
    │   │       │   ├── tooltip.css
    │   │       │   ├── tree.css
    │   │       │   ├── validatebox.css
    │   │       │   └── window.css
    │   │       ├── color.css
    │   │       ├── default
    │   │       │   ├── accordion.css
    │   │       │   ├── calendar.css
    │   │       │   ├── combobox.css
    │   │       │   ├── combo.css
    │   │       │   ├── datagrid.css
    │   │       │   ├── datalist.css
    │   │       │   ├── datebox.css
    │   │       │   ├── dialog.css
    │   │       │   ├── easyui.css
    │   │       │   ├── filebox.css
    │   │       │   ├── images
    │   │       │   │   ├── accordion_arrows.png
    │   │       │   │   ├── blank.gif
    │   │       │   │   ├── calendar_arrows.png
    │   │       │   │   ├── combo_arrow.png
    │   │       │   │   ├── datagrid_icons.png
    │   │       │   │   ├── datebox_arrow.png
    │   │       │   │   ├── layout_arrows.png
    │   │       │   │   ├── linkbutton_bg.png
    │   │       │   │   ├── loading.gif
    │   │       │   │   ├── menu_arrows1.png
    │   │       │   │   ├── menu_arrows.png
    │   │       │   │   ├── messager_icons.png
    │   │       │   │   ├── pagination_icons.png
    │   │       │   │   ├── panel_tools.png
    │   │       │   │   ├── passwordbox_close.png
    │   │       │   │   ├── passwordbox_open.png
    │   │       │   │   ├── searchbox_button.png
    │   │       │   │   ├── slider_handle.png
    │   │       │   │   ├── spinner_arrows.png
    │   │       │   │   ├── tabs_icons.png
    │   │       │   │   ├── tagbox_icons.png
    │   │       │   │   ├── tree_icons.png
    │   │       │   │   ├── validatebox_warning.png
    │   │       │   │   └── Web Database.png
    │   │       │   ├── layout.css
    │   │       │   ├── linkbutton.css
    │   │       │   ├── menubutton.css
    │   │       │   ├── menu.css
    │   │       │   ├── messager.css
    │   │       │   ├── numberbox.css
    │   │       │   ├── pagination.css
    │   │       │   ├── panel.css
    │   │       │   ├── passwordbox.css
    │   │       │   ├── progressbar.css
    │   │       │   ├── propertygrid.css
    │   │       │   ├── searchbox.css
    │   │       │   ├── slider.css
    │   │       │   ├── spinner.css
    │   │       │   ├── splitbutton.css
    │   │       │   ├── switchbutton.css
    │   │       │   ├── tabs.css
    │   │       │   ├── tagbox.css
    │   │       │   ├── textbox.css
    │   │       │   ├── tooltip.css
    │   │       │   ├── tree.css
    │   │       │   ├── validatebox.css
    │   │       │   └── window.css
    │   │       ├── gray
    │   │       │   ├── accordion.css
    │   │       │   ├── calendar.css
    │   │       │   ├── combobox.css
    │   │       │   ├── combo.css
    │   │       │   ├── datagrid.css
    │   │       │   ├── datalist.css
    │   │       │   ├── datebox.css
    │   │       │   ├── dialog.css
    │   │       │   ├── easyui.css
    │   │       │   ├── filebox.css
    │   │       │   ├── images
    │   │       │   │   ├── accordion_arrows.png
    │   │       │   │   ├── blank.gif
    │   │       │   │   ├── calendar_arrows.png
    │   │       │   │   ├── combo_arrow.png
    │   │       │   │   ├── datagrid_icons.png
    │   │       │   │   ├── datebox_arrow.png
    │   │       │   │   ├── layout_arrows.png
    │   │       │   │   ├── linkbutton_bg.png
    │   │       │   │   ├── loading.gif
    │   │       │   │   ├── menu_arrows.png
    │   │       │   │   ├── messager_icons.png
    │   │       │   │   ├── pagination_icons.png
    │   │       │   │   ├── panel_tools.png
    │   │       │   │   ├── passwordbox_close.png
    │   │       │   │   ├── passwordbox_open.png
    │   │       │   │   ├── searchbox_button.png
    │   │       │   │   ├── slider_handle.png
    │   │       │   │   ├── spinner_arrows.png
    │   │       │   │   ├── tabs_icons.png
    │   │       │   │   ├── tagbox_icons.png
    │   │       │   │   ├── tree_icons.png
    │   │       │   │   └── validatebox_warning.png
    │   │       │   ├── layout.css
    │   │       │   ├── linkbutton.css
    │   │       │   ├── menubutton.css
    │   │       │   ├── menu.css
    │   │       │   ├── messager.css
    │   │       │   ├── numberbox.css
    │   │       │   ├── pagination.css
    │   │       │   ├── panel.css
    │   │       │   ├── passwordbox.css
    │   │       │   ├── progressbar.css
    │   │       │   ├── propertygrid.css
    │   │       │   ├── searchbox.css
    │   │       │   ├── slider.css
    │   │       │   ├── spinner.css
    │   │       │   ├── splitbutton.css
    │   │       │   ├── switchbutton.css
    │   │       │   ├── tabs.css
    │   │       │   ├── tagbox.css
    │   │       │   ├── textbox.css
    │   │       │   ├── tooltip.css
    │   │       │   ├── tree.css
    │   │       │   ├── validatebox.css
    │   │       │   └── window.css
    │   │       ├── icon.css
    │   │       ├── icons
    │   │       │   ├── 1245O0R23W20-6391S3.gif
    │   │       │   ├── analise.png
    │   │       │   ├── back.png
    │   │       │   ├── blank.gif
    │   │       │   ├── byxz.png
    │   │       │   ├── cancel.png
    │   │       │   ├── caozuo_xian.png
    │   │       │   ├── circle.png
    │   │       │   ├── clear.png
    │   │       │   ├── close.png
    │   │       │   ├── cut.png
    │   │       │   ├── database.png
    │   │       │   ├── database_table.png
    │   │       │   ├── dgc.png
    │   │       │   ├── dx.png
    │   │       │   ├── edit_add.png
    │   │       │   ├── edit_remove.png
    │   │       │   ├── exit.png
    │   │       │   ├── export.png
    │   │       │   ├── fangda.png
    │   │       │   ├── feiguhua.png
    │   │       │   ├── file.png
    │   │       │   ├── filesave.png
    │   │       │   ├── filter.png
    │   │       │   ├── folder.png
    │   │       │   ├── fz.png
    │   │       │   ├── gd.png
    │   │       │   ├── gdts.png
    │   │       │   ├── gh1.png
    │   │       │   ├── gh.png
    │   │       │   ├── ghxx.png
    │   │       │   ├── group.png
    │   │       │   ├── guhuahebing.png
    │   │       │   ├── guhuakelong.png
    │   │       │   ├── guhua.png
    │   │       │   ├── hb.png
    │   │       │   ├── help.png
    │   │       │   ├── home.png
    │   │       │   ├── icon-bar.png
    │   │       │   ├── icon-lineandbar.png
    │   │       │   ├── icon-line.png
    │   │       │   ├── icon-lingbar.png
    │   │       │   ├── icon-pie.png
    │   │       │   ├── icon-point.png
    │   │       │   ├── icon-stackbar.png
    │   │       │   ├── jcb.png
    │   │       │   ├── jcbt.png
    │   │       │   ├── js.png
    │   │       │   ├── kj.png
    │   │       │   ├── kl.png
    │   │       │   ├── large_chart.png
    │   │       │   ├── large_clipart.png
    │   │       │   ├── large_picture.png
    │   │       │   ├── large_shapes.png
    │   │       │   ├── large_smartart.png
    │   │       │   ├── lcw.png
    │   │       │   ├── lock.png
    │   │       │   ├── long_anniu.png
    │   │       │   ├── man.png
    │   │       │   ├── mini_add.png
    │   │       │   ├── mini_edit.png
    │   │       │   ├── mini_refresh.png
    │   │       │   ├── month.png
    │   │       │   ├── more.png
    │   │       │   ├── mrts.png
    │   │       │   ├── no.png
    │   │       │   ├── ok.png
    │   │       │   ├── order.png
    │   │       │   ├── pencil.png
    │   │       │   ├── pingjia.png
    │   │       │   ├── pjz.png
    │   │       │   ├── print.png
    │   │       │   ├── px.png
    │   │       │   ├── qh.png
    │   │       │   ├── qhyh.png
    │   │       │   ├── redo.png
    │   │       │   ├── reload.png
    │   │       │   ├── rq.png
    │   │       │   ├── run.png
    │   │       │   ├── save.png
    │   │       │   ├── search.png
    │   │       │   ├── shanchu.png
    │   │       │   ├── shezhi1.png
    │   │       │   ├── shezhi.png
    │   │       │   ├── shoucang1.png
    │   │       │   ├── shoucang.png
    │   │       │   ├── shuju_diqiu.png
    │   │       │   ├── sousuo.png
    │   │       │   ├── sql.png
    │   │       │   ├── stastics.png
    │   │       │   ├── stop.png
    │   │       │   ├── st.png
    │   │       │   ├── submit.png
    │   │       │   ├── sum.png
    │   │       │   ├── syc.png
    │   │       │   ├── sy.png
    │   │       │   ├── sz.png
    │   │       │   ├── table.png
    │   │       │   ├── tingzhi.png
    │   │       │   ├── tip.png
    │   │       │   ├── tjsz.png
    │   │       │   ├── ts.png
    │   │       │   ├── undo.png
    │   │       │   ├── view.png
    │   │       │   ├── wait.png
    │   │       │   ├── wodeguhua_xian.png
    │   │       │   ├── wxts.png
    │   │       │   ├── wxtx.png
    │   │       │   ├── xj.png
    │   │       │   ├── xt1.png
    │   │       │   ├── xt.png
    │   │       │   ├── xy.png
    │   │       │   ├── xz.png
    │   │       │   ├── yjz.png
    │   │       │   ├── yonghu.png
    │   │       │   ├── yujing.png
    │   │       │   ├── yx.png
    │   │       │   ├── zd.png
    │   │       │   ├── zdycxjgj.png
    │   │       │   ├── zdycx.png
    │   │       │   ├── zdz.png
    │   │       │   ├── zf.png
    │   │       │   ├── zhixing.png
    │   │       │   ├── zhuti1.png
    │   │       │   ├── zhuti.png
    │   │       │   └── zxz.png
    │   │       ├── material
    │   │       │   ├── accordion.css
    │   │       │   ├── calendar.css
    │   │       │   ├── combobox.css
    │   │       │   ├── combo.css
    │   │       │   ├── datagrid.css
    │   │       │   ├── datalist.css
    │   │       │   ├── datebox.css
    │   │       │   ├── dialog.css
    │   │       │   ├── easyui.css
    │   │       │   ├── filebox.css
    │   │       │   ├── images
    │   │       │   │   ├── accordion_arrows.png
    │   │       │   │   ├── blank.gif
    │   │       │   │   ├── calendar_arrows.png
    │   │       │   │   ├── combo_arrow.png
    │   │       │   │   ├── datagrid_icons.png
    │   │       │   │   ├── datebox_arrow.png
    │   │       │   │   ├── layout_arrows.png
    │   │       │   │   ├── linkbutton_bg.png
    │   │       │   │   ├── loading.gif
    │   │       │   │   ├── menu_arrows.png
    │   │       │   │   ├── messager_icons.png
    │   │       │   │   ├── pagination_icons.png
    │   │       │   │   ├── panel_tools.png
    │   │       │   │   ├── passwordbox_close.png
    │   │       │   │   ├── passwordbox_open.png
    │   │       │   │   ├── searchbox_button.png
    │   │       │   │   ├── slider_handle.png
    │   │       │   │   ├── spinner_arrows.png
    │   │       │   │   ├── tabs_icons.png
    │   │       │   │   ├── tagbox_icons.png
    │   │       │   │   ├── Thumbs.db
    │   │       │   │   ├── tree_icons.png
    │   │       │   │   └── validatebox_warning.png
    │   │       │   ├── layout.css
    │   │       │   ├── linkbutton.css
    │   │       │   ├── menubutton.css
    │   │       │   ├── menu.css
    │   │       │   ├── messager.css
    │   │       │   ├── numberbox.css
    │   │       │   ├── pagination.css
    │   │       │   ├── panel.css
    │   │       │   ├── passwordbox.css
    │   │       │   ├── progressbar.css
    │   │       │   ├── propertygrid.css
    │   │       │   ├── searchbox.css
    │   │       │   ├── slider.css
    │   │       │   ├── spinner.css
    │   │       │   ├── splitbutton.css
    │   │       │   ├── switchbutton.css
    │   │       │   ├── tabs.css
    │   │       │   ├── tagbox.css
    │   │       │   ├── textbox.css
    │   │       │   ├── tooltip.css
    │   │       │   ├── tree.css
    │   │       │   ├── validatebox.css
    │   │       │   └── window.css
    │   │       ├── metro
    │   │       │   ├── accordion.css
    │   │       │   ├── calendar.css
    │   │       │   ├── combobox.css
    │   │       │   ├── combo.css
    │   │       │   ├── datagrid.css
    │   │       │   ├── datalist.css
    │   │       │   ├── datebox.css
    │   │       │   ├── dialog.css
    │   │       │   ├── easyui.css
    │   │       │   ├── filebox.css
    │   │       │   ├── images
    │   │       │   │   ├── accordion_arrows.png
    │   │       │   │   ├── blank.gif
    │   │       │   │   ├── calendar_arrows.png
    │   │       │   │   ├── combo_arrow.png
    │   │       │   │   ├── datagrid_icons.png
    │   │       │   │   ├── datebox_arrow.png
    │   │       │   │   ├── layout_arrows.png
    │   │       │   │   ├── linkbutton_bg.png
    │   │       │   │   ├── loading.gif
    │   │       │   │   ├── menu_arrows.png
    │   │       │   │   ├── messager_icons.png
    │   │       │   │   ├── pagination_icons.png
    │   │       │   │   ├── panel_tools.png
    │   │       │   │   ├── passwordbox_close.png
    │   │       │   │   ├── passwordbox_open.png
    │   │       │   │   ├── searchbox_button.png
    │   │       │   │   ├── slider_handle.png
    │   │       │   │   ├── spinner_arrows.png
    │   │       │   │   ├── tabs_icons.png
    │   │       │   │   ├── tagbox_icons.png
    │   │       │   │   ├── tree_icons.png
    │   │       │   │   └── validatebox_warning.png
    │   │       │   ├── layout.css
    │   │       │   ├── linkbutton.css
    │   │       │   ├── menubutton.css
    │   │       │   ├── menu.css
    │   │       │   ├── messager.css
    │   │       │   ├── numberbox.css
    │   │       │   ├── pagination.css
    │   │       │   ├── panel.css
    │   │       │   ├── passwordbox.css
    │   │       │   ├── progressbar.css
    │   │       │   ├── propertygrid.css
    │   │       │   ├── searchbox.css
    │   │       │   ├── slider.css
    │   │       │   ├── spinner.css
    │   │       │   ├── splitbutton.css
    │   │       │   ├── switchbutton.css
    │   │       │   ├── tabs.css
    │   │       │   ├── tagbox.css
    │   │       │   ├── textbox.css
    │   │       │   ├── tooltip.css
    │   │       │   ├── tree.css
    │   │       │   ├── validatebox.css
    │   │       │   └── window.css
    │   │       └── mobile.css
    │   ├── jquery.min.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
    │       │   └── iconfont.woff2
    │       ├── images
    │       │   └── face
    │       │       ├── 0.gif
    │       │       ├── 10.gif
    │       │       ├── 11.gif
    │       │       ├── 12.gif
    │       │       ├── 13.gif
    │       │       ├── 14.gif
    │       │       ├── 15.gif
    │       │       ├── 16.gif
    │       │       ├── 17.gif
    │       │       ├── 18.gif
    │       │       ├── 19.gif
    │       │       ├── 1.gif
    │       │       ├── 20.gif
    │       │       ├── 21.gif
    │       │       ├── 22.gif
    │       │       ├── 23.gif
    │       │       ├── 24.gif
    │       │       ├── 25.gif
    │       │       ├── 26.gif
    │       │       ├── 27.gif
    │       │       ├── 28.gif
    │       │       ├── 29.gif
    │       │       ├── 2.gif
    │       │       ├── 30.gif
    │       │       ├── 31.gif
    │       │       ├── 32.gif
    │       │       ├── 33.gif
    │       │       ├── 34.gif
    │       │       ├── 35.gif
    │       │       ├── 36.gif
    │       │       ├── 37.gif
    │       │       ├── 38.gif
    │       │       ├── 39.gif
    │       │       ├── 3.gif
    │       │       ├── 40.gif
    │       │       ├── 41.gif
    │       │       ├── 42.gif
    │       │       ├── 43.gif
    │       │       ├── 44.gif
    │       │       ├── 45.gif
    │       │       ├── 46.gif
    │       │       ├── 47.gif
    │       │       ├── 48.gif
    │       │       ├── 49.gif
    │       │       ├── 4.gif
    │       │       ├── 50.gif
    │       │       ├── 51.gif
    │       │       ├── 52.gif
    │       │       ├── 53.gif
    │       │       ├── 54.gif
    │       │       ├── 55.gif
    │       │       ├── 56.gif
    │       │       ├── 57.gif
    │       │       ├── 58.gif
    │       │       ├── 59.gif
    │       │       ├── 5.gif
    │       │       ├── 60.gif
    │       │       ├── 61.gif
    │       │       ├── 62.gif
    │       │       ├── 63.gif
    │       │       ├── 64.gif
    │       │       ├── 65.gif
    │       │       ├── 66.gif
    │       │       ├── 67.gif
    │       │       ├── 68.gif
    │       │       ├── 69.gif
    │       │       ├── 6.gif
    │       │       ├── 70.gif
    │       │       ├── 71.gif
    │       │       ├── 7.gif
    │       │       ├── 8.gif
    │       │       └── 9.gif
    │       ├── lay
    │       │   └── modules
    │       │       ├── carousel.js
    │       │       ├── code.js
    │       │       ├── colorpicker.js
    │       │       ├── element.js
    │       │       ├── flow.js
    │       │       ├── form.js
    │       │       ├── jquery.js
    │       │       ├── laydate.js
    │       │       ├── layedit.js
    │       │       ├── layer.js
    │       │       ├── laypage.js
    │       │       ├── laytpl.js
    │       │       ├── mobile.js
    │       │       ├── rate.js
    │       │       ├── slider.js
    │       │       ├── table.js
    │       │       ├── transfer.js
    │       │       ├── tree.js
    │       │       ├── upload.js
    │       │       └── util.js
    │       ├── layui.all.js
    │       └── layui.js
    ├── json
    │   ├── allWords.json
    │   └── tables.json
    ├── nginx-1.16.0
    │   ├── conf
    │   │   ├── fastcgi.conf
    │   │   ├── fastcgi_params
    │   │   ├── koi-utf
    │   │   ├── koi-win
    │   │   ├── mime.types
    │   │   ├── nginx.conf
    │   │   ├── scgi_params
    │   │   ├── uwsgi_params
    │   │   └── win-utf
    │   ├── contrib
    │   │   ├── geo2nginx.pl
    │   │   ├── README
    │   │   ├── unicode2nginx
    │   │   │   ├── koi-utf
    │   │   │   ├── unicode-to-nginx.pl
    │   │   │   └── win-utf
    │   │   └── vim
    │   │       ├── ftdetect
    │   │       │   └── nginx.vim
    │   │       ├── ftplugin
    │   │       │   └── nginx.vim
    │   │       ├── indent
    │   │       │   └── nginx.vim
    │   │       └── syntax
    │   │           └── nginx.vim
    │   ├── docs
    │   │   ├── CHANGES
    │   │   ├── CHANGES.ru
    │   │   ├── LICENSE
    │   │   ├── OpenSSL.LICENSE
    │   │   ├── PCRE.LICENCE
    │   │   ├── README
    │   │   └── zlib.LICENSE
    │   ├── logs
    │   │   ├── access.log
    │   │   └── error.log
    │   └── nginx.exe
    ├── pic
    │   ├── pic_01.png
    │   ├── pic_02.png
    │   ├── pic_03.png
    │   ├── pic_101.png
    │   ├── pic_102.png
    │   └── pic_103.png
    ├── README.md
    └── test
        ├── addon
        │   ├── edit
        │   │   ├── closebrackets.js
        │   │   ├── closetag.js
        │   │   ├── continuelist.js
        │   │   ├── matchbrackets.js
        │   │   ├── matchtags.js
        │   │   └── trailingspace.js
        │   └── fold
        │       ├── brace-fold.js
        │       ├── comment-fold.js
        │       ├── foldcode.js
        │       ├── foldgutter.css
        │       ├── foldgutter.js
        │       ├── indent-fold.js
        │       ├── markdown-fold.js
        │       ├── matchbrackets.js
        │       └── xml-fold.js
        ├── lib
        │   ├── codemirror.css
        │   └── codemirror.js
        └── mode
            ├── javascript
            │   ├── index.html
            │   ├── javascript.js
            │   ├── json-ld.html
            │   ├── test.js
            │   └── typescript.html
            ├── python
            │   ├── index.html
            │   ├── python.js
            │   └── test.js
            └── sql
                ├── index.html
                └── sql.js

108 directories, 751 files