├── .gitignore ├── README.md ├── data ├── database.mv.db └── web_sql_aes.key ├── doc └── Devops │ ├── CentOS使用yum安装jdk.md │ ├── Centos下如何安装MySQL5.7.md │ ├── Docker cp 命令.md │ ├── Dockerfile │ ├── docker 安装 mysql5.7.md │ ├── docker 搭建Mysql集群.md │ ├── docker.md │ ├── docker安装Redis并设置密码.md │ └── 部署文档 ├── jun_api_online_core ├── README.md ├── pom.xml └── src │ └── main │ ├── java │ └── io │ │ └── github │ │ └── wujun728 │ │ └── api │ │ ├── common │ │ ├── bean │ │ │ ├── ApiResult.java │ │ │ ├── Page.java │ │ │ ├── Wrapper.java │ │ │ └── vo │ │ │ │ ├── EmptyVo.java │ │ │ │ ├── IdVo.java │ │ │ │ └── TotalVo.java │ │ ├── config │ │ │ ├── DataSourceConfig.java │ │ │ ├── JsonConfig.java │ │ │ ├── LocaleConfig.java │ │ │ └── MyLocaleResolver.java │ │ ├── enums │ │ │ └── EnumCode.java │ │ ├── exception │ │ │ ├── BusinessException.java │ │ │ └── LowCodeGlobalExceptionHandler.java │ │ ├── jdbc │ │ │ ├── bean │ │ │ │ ├── ColumnInfo.java │ │ │ │ ├── Connector.java │ │ │ │ ├── EntityAttrInfo.java │ │ │ │ ├── EntityInfo.java │ │ │ │ └── TableInfo.java │ │ │ ├── dao │ │ │ │ └── BaseDao.java │ │ │ ├── factory │ │ │ │ ├── EntityServiceFactory.java │ │ │ │ └── TableInfoFactory.java │ │ │ ├── service │ │ │ │ ├── EntityService.java │ │ │ │ ├── ITransaction.java │ │ │ │ ├── TableService.java │ │ │ │ └── impl │ │ │ │ │ ├── DB2EntityServiceImpl.java │ │ │ │ │ ├── DB2TableServiceImpl.java │ │ │ │ │ ├── MySQLEntityServiceImpl.java │ │ │ │ │ ├── MySQLTableServiceImpl.java │ │ │ │ │ ├── SQLServerEntityServiceImpl.java │ │ │ │ │ ├── SQLServerTableServiceImpl.java │ │ │ │ │ └── Transaction.java │ │ │ ├── test │ │ │ │ └── JdbcTest.java │ │ │ └── util │ │ │ │ ├── DaoException.java │ │ │ │ ├── SqlUtl.java │ │ │ │ └── StringUtil.java │ │ ├── utils │ │ │ ├── BeanUtil.java │ │ │ ├── ConstantUtil.java │ │ │ ├── FileUtil.java │ │ │ ├── MessageUtils.java │ │ │ └── SpringContextUtil.java │ │ └── validate │ │ │ ├── EntityValidation.java │ │ │ └── ValidationType.java │ │ └── core │ │ ├── config │ │ ├── AppConfig.java │ │ ├── InitialTask.java │ │ └── Swagger2Config.java │ │ ├── controller │ │ ├── ApiInfoController.java │ │ ├── DataSQLController.java │ │ └── DataSourceController.java │ │ ├── dto │ │ ├── ApiInfoDto.java │ │ ├── DataSourceDto.java │ │ ├── add │ │ │ ├── ApiBatchAddDto.java │ │ │ └── DataSourceAddDto.java │ │ └── list │ │ │ ├── ApiInfoListDto.java │ │ │ └── DataSourceListDto.java │ │ ├── entity │ │ ├── ApiInfo.java │ │ └── DataSource.java │ │ ├── factory │ │ └── SQLParamServiceFactory.java │ │ ├── manager │ │ ├── ApiExecuteManager.java │ │ ├── ModelTemplateManager.java │ │ ├── SQLInitManager.java │ │ └── SQLParamManager.java │ │ ├── mapper │ │ ├── ApiInfoMapper.java │ │ ├── ApiInfoMapper.xml │ │ ├── DataSourceMapper.java │ │ └── DataSourceMapper.xml │ │ ├── service │ │ ├── ApiInfoService.java │ │ ├── ApiParamService.java │ │ ├── DataSourceService.java │ │ └── impl │ │ │ ├── ApiInfoServiceImpl.java │ │ │ ├── DataSourceServiceImpl.java │ │ │ ├── SQLCountQueryParamServiceImpl.java │ │ │ ├── SQLDeleteParamServiceImpl.java │ │ │ ├── SQLInsertParamServiceImpl.java │ │ │ ├── SQLQueryParamServiceImpl.java │ │ │ └── SQLUpdateParamServiceImpl.java │ │ ├── template │ │ ├── service │ │ │ ├── ModelApiFileService.java │ │ │ ├── ModelFileService.java │ │ │ ├── ModelPageServiceFactory.java │ │ │ ├── PageCreateService.java │ │ │ ├── PageTemplateService.java │ │ │ └── impl │ │ │ │ ├── ModelAddFileServiceImpl.java │ │ │ │ ├── ModelApiJSFileServiceImpl.java │ │ │ │ ├── ModelBaseJSFileServiceImpl.java │ │ │ │ ├── ModelEditFileServiceImpl.java │ │ │ │ ├── ModelListFileServiceImpl.java │ │ │ │ ├── ModelNavJSFileServiceImpl.java │ │ │ │ ├── PageCreateServiceImpl.java │ │ │ │ └── PageTemplateServiceImpl.java │ │ └── vo │ │ │ └── Project.java │ │ ├── util │ │ └── SQLParamUtil.java │ │ └── vo │ │ ├── ApiBaseByTableVo.java │ │ ├── ApiBaseVo.java │ │ ├── ApiDatabaseTreeVo.java │ │ ├── ApiGroupTreeVo.java │ │ ├── ApiInfoTreeVo.java │ │ ├── ApiInfoVo.java │ │ ├── DataSourceVo.java │ │ ├── ParamVo.java │ │ ├── QueryColumnVo.java │ │ ├── SQLParamVo.java │ │ ├── UnionColumnVo.java │ │ └── UnionParamVo.java │ └── resources │ └── static │ └── i18n │ ├── messages.properties │ ├── messages_en_US.properties │ └── messages_zh_CN.properties ├── jun_api_online_demo ├── .gitignore ├── README.md ├── pom.xml └── src │ └── main │ ├── java │ └── io │ │ └── github │ │ └── wujun728 │ │ └── web │ │ └── server │ │ ├── ApiWebServerApplication.java │ │ ├── config │ │ ├── GlobalExceptionHandler.java │ │ └── Swagger2Config.java │ │ ├── controller │ │ └── ApiRequestController.java │ │ └── filter │ │ ├── CorsFilter.java │ │ └── FilterConfig.java │ └── resources │ ├── application-prod.yml │ ├── application-test.yml │ ├── application.yml │ └── logback.xml ├── jun_api_online_groovy ├── Dockerfile ├── README.md ├── pom.xml ├── src │ ├── main │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── wujun728 │ │ │ │ ├── ApiServiceApplication.java │ │ │ │ ├── amis │ │ │ │ └── api │ │ │ │ │ ├── ApiSqlController.java │ │ │ │ │ ├── app │ │ │ │ │ └── controller │ │ │ │ │ │ ├── App1Controller.java │ │ │ │ │ │ ├── App2Controller2.java │ │ │ │ │ │ ├── TestController111.java │ │ │ │ │ │ └── TestGroovy.groovy │ │ │ │ │ └── core │ │ │ │ │ ├── config │ │ │ │ │ ├── CrossConfig.java │ │ │ │ │ └── WebMvcConfig.java │ │ │ │ │ └── filter │ │ │ │ │ ├── ApiHeaderFilter.java │ │ │ │ │ └── AuthFilter.java │ │ │ │ ├── db │ │ │ │ └── utils │ │ │ │ │ └── DataSourcePool.java │ │ │ │ └── rest │ │ │ │ └── controller │ │ │ │ ├── RestApiController.java │ │ │ │ └── RestSqlController.java │ │ └── resources │ │ │ ├── application-sqlite.yml │ │ │ ├── application-test.yml │ │ │ ├── application.yml │ │ │ ├── conf │ │ │ └── server.xml │ │ │ ├── ds.xml │ │ │ ├── logback-spring.xml │ │ │ ├── sql │ │ │ ├── apiSql.xml │ │ │ ├── log.xml │ │ │ └── user.xml │ │ │ ├── static │ │ │ └── test.html │ │ │ └── templates │ │ │ ├── list.html │ │ │ └── thymeleaf.html │ └── test │ │ └── java │ │ └── io │ │ └── github │ │ └── wujun728 │ │ ├── Tester.java │ │ ├── groovy │ │ ├── GroovyAutoBuildClassUtils.java │ │ ├── GroovyClassLoaderApp.java │ │ ├── GroovyClassLoaderApp2.java │ │ ├── GroovyClassLoaderApp3.java │ │ ├── GroovyClassTest.java │ │ ├── GroovyTest.java │ │ ├── Main.java │ │ ├── Param.java │ │ └── TestGroovy.groovy │ │ └── test │ │ └── CommonDBCompoent.java └── test666.sql ├── jun_api_online_groovy_ui ├── account.html ├── account │ ├── list.json │ ├── myPassword.html │ └── role.html ├── api.html ├── assets │ ├── css │ │ ├── common │ │ │ ├── global.css │ │ │ ├── layui_extend.css │ │ │ └── theme-default.css │ │ └── runapi │ │ │ ├── debug.css │ │ │ ├── doc-app.css │ │ │ ├── doc-index.css │ │ │ └── fonts │ │ │ └── element-icons.woff │ ├── js │ │ ├── common │ │ │ ├── alert.js │ │ │ ├── grid-init.js │ │ │ ├── grid-init2 copy.js │ │ │ ├── grid-init2.js │ │ │ └── ui.tool.js │ │ └── runapi │ │ │ └── debug.js │ └── lib │ │ ├── jquery │ │ ├── jquery-2.1.4.min.js │ │ ├── jquery-migrate-1.2.1.js │ │ ├── jquery-ui.min.css │ │ ├── jquery-ui.min.js │ │ ├── jquery.form.js │ │ ├── jquery.json-viewer.min.css │ │ └── jquery.json-viewer.min.js │ │ ├── layui │ │ ├── css │ │ │ └── layui.css │ │ ├── font │ │ │ ├── iconfont.eot │ │ │ ├── iconfont.svg │ │ │ ├── iconfont.ttf │ │ │ ├── iconfont.woff │ │ │ └── iconfont.woff2 │ │ └── layui.js │ │ ├── layui_extends │ │ ├── json │ │ │ └── yutons_sug.json │ │ ├── selectM.js │ │ ├── selectN.js │ │ └── yutons_sug.js │ │ ├── layui_exts │ │ └── mouseRightMenu │ │ │ ├── mouseRightMenu.css │ │ │ └── mouseRightMenu.js │ │ └── xm-select │ │ └── xm-select.js ├── form-designer │ ├── LICENSE │ ├── README.en.md │ ├── README.md │ ├── ayq │ │ ├── images │ │ │ ├── 1.PNG │ │ │ ├── 2.PNG │ │ │ ├── 3.PNG │ │ │ ├── 4.PNG │ │ │ ├── 88_thumb.gif │ │ │ ├── angrya_thumb.gif │ │ │ ├── banner1.PNG │ │ │ ├── banner2.PNG │ │ │ ├── banner3.PNG │ │ │ ├── bba_thumb.gif │ │ │ ├── bs2_thumb.gif │ │ │ ├── bs_thumb.gif │ │ │ ├── bz_thumb.gif │ │ │ ├── cake.gif │ │ │ ├── cj_thumb.gif │ │ │ ├── come_thumb.gif │ │ │ ├── cool_thumb.gif │ │ │ ├── crazya_thumb.gif │ │ │ ├── cry.gif │ │ │ ├── cza_thumb.gif │ │ │ ├── dizzya_thumb.gif │ │ │ ├── good_thumb.gif │ │ │ ├── gza_thumb.gif │ │ │ ├── h_thumb.gif │ │ │ ├── hatea_thumb.gif │ │ │ ├── hearta_thumb.gif │ │ │ ├── heia_thumb.gif │ │ │ ├── hsa_thumb.gif │ │ │ ├── k_thumb.gif │ │ │ ├── kbsa_thumb.gif │ │ │ ├── kl_thumb.gif │ │ │ ├── laugh.gif │ │ │ ├── lazu_thumb.gif │ │ │ ├── ldln_thumb.gif │ │ │ ├── lovea_thumb.gif │ │ │ ├── mb_thumb.gif │ │ │ ├── money_thumb.gif │ │ │ ├── nm_thumb.gif │ │ │ ├── no_thumb.gif │ │ │ ├── ok_thumb.gif │ │ │ ├── qq_thumb.gif │ │ │ ├── sad_thumb.gif │ │ │ ├── sada_thumb.gif │ │ │ ├── sb_thumb.gif │ │ │ ├── shamea_thumb.gif │ │ │ ├── sk_thumb.gif │ │ │ ├── sleepa_thumb.gif │ │ │ ├── sleepya_thumb.gif │ │ │ ├── sw_thumb.gif │ │ │ ├── sweata_thumb.gif │ │ │ ├── t_thumb.gif │ │ │ ├── tootha_thumb.gif │ │ │ ├── tza_thumb.gif │ │ │ ├── unheart.gif │ │ │ ├── wq_thumb.gif │ │ │ ├── x_thumb.gif │ │ │ ├── ye_thumb.gif │ │ │ ├── yhh_thumb.gif │ │ │ ├── yw_thumb.gif │ │ │ ├── yx_thumb.gif │ │ │ ├── z2_thumb.gif │ │ │ ├── zhh_thumb.gif │ │ │ └── zy_thumb.gif │ │ ├── js │ │ │ ├── config.js │ │ │ ├── htmlformat.js │ │ │ └── jsformat.js │ │ └── modules │ │ │ ├── HandwrittenSignature.css │ │ │ ├── HandwrittenSignature.js │ │ │ ├── Sortable │ │ │ ├── Sortable.js │ │ │ └── Sortable.min.js │ │ │ ├── cron.css │ │ │ ├── cron.js │ │ │ ├── formDesigner.css │ │ │ ├── formDesigner.js │ │ │ ├── formField.js │ │ │ ├── iceEditor │ │ │ └── iceEditor.js │ │ │ ├── iconPicker.js │ │ │ ├── labelGeneration.css │ │ │ ├── labelGeneration.js │ │ │ ├── numberInput.js │ │ │ ├── staticField.js │ │ │ └── xmSelect.js │ ├── editorMenu.html │ ├── form.html │ ├── handwrittenSignature.html │ ├── index.html │ ├── layui │ │ ├── css │ │ │ ├── layui.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 │ │ └── layui.js │ └── preview.html ├── home.html ├── home │ ├── account.html │ ├── project.html │ ├── role.html │ ├── runapi.html │ ├── share.html │ └── team.html ├── login.html ├── project.html ├── project │ ├── add.html │ ├── addTeam.html │ ├── addUser.html │ ├── api.html │ ├── edit.html │ ├── list.json │ ├── runapi.html │ └── teamUser.html ├── projectPermission │ ├── list.json │ └── user.html ├── role.html ├── role │ ├── list.json │ ├── permission.html │ ├── user.html │ ├── userList.json │ └── userListNotInRoleId.json ├── runapi.html ├── runapi │ ├── add copy.html │ ├── add.html │ ├── debug.html │ ├── doc.html │ ├── edit.html │ ├── list.json │ ├── main.html │ └── syncProjectApi.json ├── share.html ├── share │ ├── add.html │ ├── edit.html │ ├── list.json │ └── runapi.html ├── shareRunApi.html ├── shareRunApi │ ├── add.html │ └── list.json ├── team.html ├── team │ ├── add.html │ ├── addProject.html │ ├── edit.html │ ├── list.json │ └── project.html ├── teamUser.html └── teamUser │ └── list.json ├── jun_layui_jfinal ├── index.html ├── index2.html ├── main.html ├── portal │ ├── core │ │ ├── dataSource.html │ │ ├── dataSource │ │ │ ├── add.html │ │ │ └── edit.html │ │ ├── dictionary │ │ │ ├── add.html │ │ │ ├── edit.html │ │ │ ├── tree.json │ │ │ └── value │ │ │ │ ├── add.html │ │ │ │ ├── edit.html │ │ │ │ ├── getOption.json │ │ │ │ └── list.json │ │ ├── sql.html │ │ ├── sysFunc.html │ │ ├── sysFunc │ │ │ ├── add.html │ │ │ ├── edit.html │ │ │ ├── edit │ │ │ │ └── frame_main_view.html │ │ │ ├── list.json │ │ │ └── tree.json │ │ ├── sysLog.html │ │ ├── sysLog │ │ │ ├── detail.html │ │ │ └── list.json │ │ ├── sysOrg.html │ │ ├── sysOrg │ │ │ ├── addOrgUser.html │ │ │ ├── edit.html │ │ │ ├── getXmSelectData.json │ │ │ └── tree.json │ │ ├── sysOrg2.html │ │ ├── sysRole.html │ │ ├── sysRole │ │ │ ├── add.html │ │ │ ├── edit.html │ │ │ ├── roleUser.html │ │ │ └── userRoleTree.json │ │ ├── sysUser.html │ │ └── sysUser │ │ │ ├── add.html │ │ │ ├── edit.html │ │ │ ├── list.json │ │ │ ├── my.html │ │ │ ├── myPassword.html │ │ │ └── userRole.html │ ├── echart.html │ ├── echart │ │ └── queryData.json │ ├── form │ │ ├── sql.html │ │ ├── sql │ │ │ ├── add.html │ │ │ ├── edit.html │ │ │ ├── list.json │ │ │ ├── review.html │ │ │ └── review1.html │ │ ├── sysTree │ │ │ ├── add.html │ │ │ ├── edit.html │ │ │ └── tree.json │ │ ├── view.html │ │ ├── view │ │ │ ├── add.html │ │ │ ├── exit.html │ │ │ ├── list.json │ │ │ ├── tree.json │ │ │ └── view.json │ │ └── viewTemp │ │ │ ├── review.html │ │ │ └── review2.html │ ├── generator │ │ ├── code.html │ │ └── code2.html │ ├── getFileList.html │ ├── go │ │ ├── common │ │ │ └── demo │ │ │ │ ├── layuiTableEdit.html │ │ │ │ ├── select.html │ │ │ │ ├── xm-select-demo.html │ │ │ │ └── xm-select-tree.html │ │ └── home.html │ ├── sysTree │ │ └── add.html │ └── toUpload.html ├── pub │ └── login.html ├── static │ ├── css │ │ ├── global.css │ │ ├── home.css │ │ ├── layui_extend.css │ │ └── theme │ │ │ ├── theme-badge.css │ │ │ ├── theme-black.css │ │ │ ├── theme-blue.css │ │ │ ├── theme-cyan.css │ │ │ ├── theme-default.css │ │ │ ├── theme-green.css │ │ │ ├── theme-orange.css │ │ │ └── theme-purple.css │ ├── img │ │ ├── 0.png │ │ ├── 1.png │ │ ├── bg.png │ │ ├── error │ │ │ └── error.png │ │ └── login_bg.png │ ├── libs │ │ ├── ckplayer │ │ │ ├── LICENSE │ │ │ ├── css │ │ │ │ ├── ckplayer.css │ │ │ │ ├── ckplayer.ixigua.css │ │ │ │ ├── ckplayer.red.css │ │ │ │ └── images │ │ │ │ │ ├── adclose.png │ │ │ │ │ ├── buffer.png │ │ │ │ │ ├── ckplayer.48.png │ │ │ │ │ ├── ckplayer.png │ │ │ │ │ ├── ckplayer_ixigua.48.png │ │ │ │ │ ├── ckplayer_ixigua.png │ │ │ │ │ ├── ckplayer_red.48.png │ │ │ │ │ ├── ckplayer_red.png │ │ │ │ │ ├── loading.png │ │ │ │ │ ├── logo.png │ │ │ │ │ └── play.png │ │ │ ├── flv.js │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── flv.js │ │ │ │ ├── flv.js.map │ │ │ │ ├── flv.min.js │ │ │ │ └── flv.min.js.map │ │ │ ├── hls.js │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── hls-demo.js │ │ │ │ ├── hls-demo.js.map │ │ │ │ ├── hls.js │ │ │ │ ├── hls.js.d.ts │ │ │ │ ├── hls.js.map │ │ │ │ ├── hls.light.js │ │ │ │ ├── hls.light.js.map │ │ │ │ ├── hls.light.min.js │ │ │ │ ├── hls.light.min.js.map │ │ │ │ ├── hls.min.js │ │ │ │ └── hls.min.js.map │ │ │ ├── js │ │ │ │ ├── ckplayer.js │ │ │ │ └── ckplayer.min.js │ │ │ ├── language │ │ │ │ ├── en.js │ │ │ │ ├── zh.cn.js │ │ │ │ └── zh.hk.js │ │ │ └── mpegts.js │ │ │ │ ├── LICENSE │ │ │ │ ├── mpegts.js │ │ │ │ ├── mpegts.js.map │ │ │ │ └── mpegts.min.js │ │ ├── common │ │ │ ├── alert.js │ │ │ ├── common.js │ │ │ ├── form-functions.js │ │ │ ├── grid-init.js │ │ │ └── ui.tool.js │ │ ├── ddlsql │ │ │ ├── codemirror.min.css │ │ │ ├── codemirror.min.js │ │ │ └── sql.min.js │ │ ├── dwallslider │ │ │ ├── css │ │ │ │ ├── lightbox.css │ │ │ │ └── lightbox.min.css │ │ │ ├── images │ │ │ │ ├── close.png │ │ │ │ ├── loading.gif │ │ │ │ ├── next.png │ │ │ │ └── prev.png │ │ │ └── js │ │ │ │ ├── lightbox-plus-jquery.js │ │ │ │ ├── lightbox-plus-jquery.min.js │ │ │ │ ├── lightbox-plus-jquery.min.map │ │ │ │ ├── lightbox.js │ │ │ │ ├── lightbox.min.js │ │ │ │ └── lightbox.min.map │ │ ├── echarts │ │ │ ├── echarts.min.js │ │ │ ├── echarts.tool.js │ │ │ ├── ecstat │ │ │ │ └── ecStat.min.js │ │ │ ├── img │ │ │ │ ├── bar.png │ │ │ │ ├── line.png │ │ │ │ └── pie.png │ │ │ └── theme │ │ │ │ └── shine.js │ │ ├── ext │ │ │ ├── area.js │ │ │ ├── baajax.js │ │ │ ├── base64.min.js │ │ │ ├── btable.js │ │ │ ├── city.js │ │ │ ├── common.js │ │ │ ├── index.js │ │ │ ├── layout.js │ │ │ ├── navbar.js │ │ │ ├── paging.js │ │ │ ├── tab.js │ │ │ ├── tableEdit.js │ │ │ ├── tableEditData.json │ │ │ ├── treetable.js │ │ │ ├── validator.js │ │ │ └── xyjtable.js │ │ ├── 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 │ │ ├── jquery │ │ │ ├── jquery-2.1.4.min.js │ │ │ ├── jquery-ui.min.css │ │ │ ├── jquery-ui.min.js │ │ │ └── jquery.form.js │ │ ├── jsencrypt │ │ │ └── 3.3.2 │ │ │ │ └── jsencrypt.min.js │ │ ├── layui │ │ │ ├── css │ │ │ │ └── layui.css │ │ │ ├── font │ │ │ │ ├── iconfont.eot │ │ │ │ ├── iconfont.svg │ │ │ │ ├── iconfont.ttf │ │ │ │ ├── iconfont.woff │ │ │ │ └── iconfont.woff2 │ │ │ └── layui.js │ │ ├── layui_extends │ │ │ ├── json │ │ │ │ └── yutons_sug.json │ │ │ ├── selectM.js │ │ │ ├── selectN.js │ │ │ └── yutons_sug.js │ │ ├── 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 │ │ │ │ │ └── link_bak.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 │ │ │ ├── jsp │ │ │ │ ├── config.json │ │ │ │ ├── config_bak.json │ │ │ │ └── controller.jsp-to-be-safed │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ └── zeroclipboard │ │ │ │ │ ├── ZeroClipboard.js │ │ │ │ │ ├── ZeroClipboard.min.js │ │ │ │ │ └── ZeroClipboard.swf │ │ │ ├── ueditor.all.js │ │ │ ├── ueditor.all.min.js │ │ │ ├── ueditor.all.min_bak.js │ │ │ ├── ueditor.config.js │ │ │ ├── ueditor.config_bak.js │ │ │ ├── ueditor.parse.js │ │ │ ├── ueditor.parse.min.js │ │ │ ├── version-1_4_3_2.txt │ │ │ └── 完美解决ctrl+回车的ajax提交问题.txt │ │ ├── xm-select │ │ │ └── xm-select.js │ │ └── xtree │ │ │ ├── layui_xtree.js │ │ │ └── layui_xtree2.js │ ├── portal │ │ └── core │ │ │ └── sysOrg │ │ │ └── tab-item.js │ └── pub │ │ └── login │ │ ├── css │ │ └── login.css │ │ ├── img │ │ ├── cloud.png │ │ ├── dl.png │ │ ├── i1.png │ │ ├── i2.png │ │ ├── i3.png │ │ ├── people.png │ │ └── tip.png │ │ └── login.js ├── sys.html ├── test.json └── video.html ├── jun_lowcode_api_web ├── .gitignore ├── LICENSE ├── README.md ├── index.html ├── login.html ├── page │ ├── api │ │ ├── apiInfo │ │ │ ├── apiAdd.html │ │ │ ├── apiAutoAdd.html │ │ │ ├── apiAutoEdit.html │ │ │ ├── apiDoc.html │ │ │ ├── apiEdit.html │ │ │ ├── apiRun.html │ │ │ ├── apiRunDoc.html │ │ │ ├── apiSQLAdd.html │ │ │ ├── apiSQLEdit.html │ │ │ ├── apiShareDoc.html │ │ │ ├── markdown.html │ │ │ ├── markdownPreview.html │ │ │ ├── param.html │ │ │ ├── selectColumn.html │ │ │ ├── selectCondParam.html │ │ │ └── selectUnionParam.html │ │ └── dataSource │ │ │ ├── query.html │ │ │ ├── sourceAdd.html │ │ │ ├── sourceEdit.html │ │ │ ├── sourceList.html │ │ │ ├── sourceTableList.html │ │ │ ├── sourceTree.html │ │ │ ├── sqlList.html │ │ │ ├── tableInfo.html │ │ │ └── tableList.html │ └── public │ │ ├── mainPage.html │ │ ├── updatePass.html │ │ └── userInfo.html └── style │ ├── css │ ├── chat.css │ ├── global.css │ ├── index │ │ └── index.css │ ├── login.css │ ├── main │ │ └── global.css │ └── table.css │ ├── images │ ├── login-bg.png │ ├── logo.png │ ├── point.png │ └── user-logo.png │ ├── js │ ├── GVerify.js │ ├── api.js │ ├── base.js │ ├── common.js │ ├── export.js │ ├── htmlFormat.js │ ├── index.js │ ├── layout.js │ ├── md5.js │ ├── nav.js │ ├── navbar.js │ ├── sql.js │ ├── tab.js │ ├── validModule.js │ └── validator.js │ └── plugins │ ├── layui-v2.5.5 │ └── layui │ │ ├── css │ │ ├── layui.css │ │ ├── layui.mobile.css │ │ ├── main │ │ │ └── layui.css │ │ └── modules │ │ │ ├── code.css │ │ │ ├── icheck │ │ │ ├── flat │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── flat.css │ │ │ │ ├── flat.png │ │ │ │ ├── flat@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ ├── futurico │ │ │ │ ├── futurico.css │ │ │ │ ├── futurico.png │ │ │ │ └── futurico@2x.png │ │ │ ├── icheck.css │ │ │ ├── line │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── blue.css │ │ │ │ ├── green.css │ │ │ │ ├── grey.css │ │ │ │ ├── line.css │ │ │ │ ├── line.png │ │ │ │ ├── line@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── pink.css │ │ │ │ ├── purple.css │ │ │ │ ├── red.css │ │ │ │ └── yellow.css │ │ │ ├── minimal │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── minimal.css │ │ │ │ ├── minimal.png │ │ │ │ ├── minimal@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ ├── polaris │ │ │ │ ├── polaris.css │ │ │ │ ├── polaris.png │ │ │ │ └── polaris@2x.png │ │ │ └── square │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── square.css │ │ │ │ ├── square.png │ │ │ │ ├── square@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── carousel.js │ │ │ ├── code.js │ │ │ ├── colorpicker.js │ │ │ ├── element.js │ │ │ ├── flow.js │ │ │ ├── form.js │ │ │ ├── icheck.js │ │ │ ├── jquery.js │ │ │ ├── laydate.js │ │ │ ├── layedit.js │ │ │ ├── layer.js │ │ │ ├── laypage.js │ │ │ ├── laytpl.js │ │ │ ├── mobile.js │ │ │ ├── pjax.js │ │ │ ├── rate.js │ │ │ ├── slider.js │ │ │ ├── table.js │ │ │ ├── transfer.js │ │ │ ├── tree.js │ │ │ ├── upload.js │ │ │ └── util.js │ │ ├── layui.all.js │ │ ├── layui.js │ │ └── modules │ │ ├── icheck.js │ │ └── pjax.js │ ├── markdown │ ├── github-markdown-light.min.css │ ├── marked.min.js │ ├── template.md │ └── test.md │ ├── multiSelect │ ├── css │ │ └── multiSelect.css │ ├── images │ │ └── select.png │ ├── index.html │ ├── js │ │ └── jquery.min.js │ └── multiSelect.js │ ├── pageGuide │ ├── css │ │ └── pageGuide.css │ ├── index.html │ └── js │ │ ├── data.js │ │ ├── jquery.min.js │ │ └── pageGuide.js │ ├── sort │ └── Sortable.js │ └── wangEditor │ └── release │ ├── fonts │ └── w-e-icon.woff │ ├── wangEditor.css │ ├── wangEditor.js │ ├── wangEditor.min.css │ ├── wangEditor.min.js │ └── wangEditor.min.js.map └── pom.xml /.gitignore: -------------------------------------------------------------------------------- 1 | *.class 2 | .DS_Store 3 | application.pid 4 | 5 | # Mobile Tools for Java (J2ME) 6 | .mtj.tmp/ 7 | 8 | # Package Files # 9 | # *.jar 10 | *.war 11 | *.ear 12 | 13 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml 14 | hs_err_pid* 15 | 16 | # Eclipse 17 | .classpath 18 | .project 19 | target 20 | bin 21 | classes 22 | .settings 23 | .factorypath 24 | doc1 25 | doc2 26 | doc3 27 | *.zip 28 | *.rar 29 | *bak 30 | log 31 | logs 32 | target 33 | 34 | # Idea 35 | .idea 36 | *.iml 37 | 38 | # git 39 | *.orig -------------------------------------------------------------------------------- /data/database.mv.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/data/database.mv.db -------------------------------------------------------------------------------- /data/web_sql_aes.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/data/web_sql_aes.key -------------------------------------------------------------------------------- /doc/Devops/Docker cp 命令.md: -------------------------------------------------------------------------------- 1 | Docker cp 命令 2 | Docker 命令大全Docker 命令大全 3 | 4 | docker cp :用于容器与主机之间的数据拷贝。 5 | 6 | 语法 7 | docker cp [OPTIONS] CONTAINER:SRC_PATH DEST_PATH|- 8 | docker cp [OPTIONS] SRC_PATH|- CONTAINER:DEST_PATH 9 | OPTIONS说明: 10 | 11 | -L :保持源目标中的链接 12 | 13 | 实例 14 | 将主机/www/runoob目录拷贝到容器96f7f14e99ab的/www目录下。 15 | 16 | docker cp /www/runoob 96f7f14e99ab:/www/ 17 | 将主机/www/runoob目录拷贝到容器96f7f14e99ab中,目录重命名为www。 18 | 19 | docker cp /www/runoob 96f7f14e99ab:/www 20 | 将容器96f7f14e99ab的/www目录拷贝到主机的/tmp目录中。 21 | 22 | docker cp 96f7f14e99ab:/www /tmp/ -------------------------------------------------------------------------------- /doc/Devops/Dockerfile: -------------------------------------------------------------------------------- 1 | # 基础镜像 2 | FROM openjdk:8-jdk-alpine 3 | # author 4 | MAINTAINER wenbin 5 | # 复制jar文件到路径 6 | ADD manager.jar manager.jar 7 | # 时间 8 | RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime 9 | RUN echo 'Asia/Shanghai' >/etc/timezone 10 | # 启动服务 11 | ENTRYPOINT ["java","-jar","/manager.jar"] 12 | # 暴露端口 13 | EXPOSE 8080 14 | -------------------------------------------------------------------------------- /doc/Devops/docker 安装 mysql5.7.md: -------------------------------------------------------------------------------- 1 | docker 安装 mysql5.7 2 | 3 | 4 | 1.安装mysql5.7 docker镜像 5 | 拉取官方mysql5.7镜像 6 | 7 | docker pull mysql:5.7 8 | 9 | 10 | 查看镜像库 11 | 12 | docker images 13 | 14 | 15 | 2.创建mysql容器 16 | 在本地创建mysql的映射目录 17 | 18 | mkdir -p /root/mysql/data /root/mysql/logs /root/mysql/conf 19 | 在/root/mysql/conf中创建 *.cnf 文件(叫什么都行) 20 | 21 | touch my.cnf 22 | 创建容器,将数据,日志,配置文件映射到本机 23 | 24 | docker run -p 3306:3306 --name mysql5.7 -v /root/mysql/conf:/etc/mysql/conf.d -v /root/mysql/logs:/logs -v /root/mysql/data:/var/lib/mysql -e MYSQL_ROOT_PASSWORD=mysqladmin -d mysql:5.7 25 | 26 | -d: 后台运行容器 27 | 28 | -p 将容器的端口映射到本机的端口 29 | 30 | -v 将主机目录挂载到容器的目录 31 | 32 | -e 设置参数 33 | 34 | 35 | 36 | 启动mysql容器 37 | 38 | docker start mysql5.7 39 | 40 | 41 | 查看/root/mysql/data目录是否有数据文件 42 | 43 | 44 | 45 | 使用工具连接测试 46 | 47 | 48 | 49 | 测试成功 50 | ———————————————— 51 | 版权声明:本文为CSDN博主「疯狂的狮子Li」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。 52 | 原文链接:https://blog.csdn.net/weixin_40461281/article/details/92610876 -------------------------------------------------------------------------------- /doc/Devops/docker.md: -------------------------------------------------------------------------------- 1 | 2 | ------MySQL 3 | 4 | 1.拉取镜像。 5 | 6 | docker pull mysql:8 7 | 8 | 2.运行镜像,name、端口和密码可自行修改。 9 | 10 | docker run -p 3307:3306 --name mysql8 -e MYSQL_ROOT_PASSWORD=mysqladmin -d mysql:8 11 | 12 | 3.进入容器终端。 13 | 14 | docker exec -it mysql8 bash 15 | 16 | 4.客户端连接mysql。 17 | 18 | mysql -uroot -pmysqladmin 19 | 20 | 21 | ------kkfileview 22 | 23 | docker pull keking/kkfileview 24 | docker run -it -p 8012:8012 keking/kkfileview 25 | 26 | docker run -p 8012:8012 --name kkfileview -d keking/kkfileview 27 | 28 | 29 | 30 | 31 | 32 | ------manager 33 | 34 | ps -ef |grep java 35 | 36 | nohup java -jar manager.jar --server.port=8081 > log8081.log & | tail -f log8081.log & 37 | 38 | nohup java -jar manager.jar --server.port=8081 > log8081.log & 39 | tail -f log8081.log & 40 | 41 | 42 | nohup java -jar manager.jar --server.port=8082 > log8081.log & 43 | nohup java -jar manager.jar --server.port=8083 > log8081.log & -------------------------------------------------------------------------------- /doc/Devops/docker安装Redis并设置密码.md: -------------------------------------------------------------------------------- 1 | # [docker安装Redis并设置密码](https://www.cnblogs.com/zhangzimo/p/12753563.html) 2 | 3 | ## 1.搜索镜像 4 | 5 | ``` 6 | docker search redis 7 | ``` 8 | 9 | ## 2.拉取镜像 10 | 11 | ``` 12 | docker pull redis 13 | ``` 14 | 15 | ## 3.创建Redis容器并设置密码 16 | 17 | ``` 18 | docker run --name redis -p 6380:6379 redis-test --requirepass 123456 19 | 20 | docker run -itd --name redis-v4-6379 -p 6379:6379 redis:4.0 21 | 22 | docker run -itd --name redis-6379 -p 6379:6379 redis:5.0 --requirepass 123456 23 | 24 | #前边是宿主机端口 后面是docker使用的端口 25 | ``` 26 | 27 | ## 4.备注 28 | 29 | 为现有的redis创建密码或修改密码的方法: 30 | 31 | 1.进入redis的容器 docker exec -it 容器ID bash 32 | 33 | 2.进入redis目录 cd /usr/local/bin 34 | 35 | 3.运行命令:redis-cli 36 | 37 | 4.查看现有的redis密码:config get requirepass 38 | 39 | 5.设置redis密码config set requirepass ****(****为你要设置的密码) 40 | 41 | 6.若出现(error) NOAUTH Authentication required.错误,则使用 auth 密码 来认证密码 -------------------------------------------------------------------------------- /doc/Devops/部署文档: -------------------------------------------------------------------------------- 1 | 1. 使用IDE导入本项目,IDE需要安装lombok插件 2 | 2. 下载redis 启动redis 3 | 3. 创建数据库, 导入***.sql 4 | 4. 配置application-dev.yml中的redis以及数据库连接 5 | 5. 运行项目 6 | 1、直接运行CompanyProjectApplication.java 7 | 2、项目根目录下执行mvn -X clean package -Dmaven.test.skip=true编译打包,然后执行java -jar manager.jar 8 | 6. 接口文档访问 http://localhost:8080/doc.html 9 | 7. 登录地址 http://localhost:8080/index/login 用户名密码:admin/123456 10 | 8. 代码生成使用: 11 | 1、 application.yml中配置: 使用代码生成模块时 指定要生成的表存在于哪种数据库。project.database=mysql 12 | 2、点击代码生成菜单,生成一个或多个表的代码,下载到本地 13 | 3、解压下载的代码,直接复制main文件夹到本地项目的src目录下 14 | 4、数据库执行sql,生成菜单 15 | 5、修改角色所绑定的菜单的权限,刷新页面查看 -------------------------------------------------------------------------------- /jun_api_online_core/README.md: -------------------------------------------------------------------------------- 1 | # jun_lowcode_api 2 | 3 | ### 低代码开发平台 4 | 5 | - 无代码开发,根据数据库表生成API,大大提升开发效率 6 | - 根据模板生成前端Web页面,包括列表、新增表单、修改表单、查询、删除等功能 7 | 8 | #### 1、根据SQL语句创建API 9 | 10 | #### 2、选择数据库表自动API 11 | 12 | #### 3、选择数据库表自定义创建API 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /jun_api_online_core/src/main/java/io/github/wujun728/api/common/bean/vo/EmptyVo.java: -------------------------------------------------------------------------------- 1 | package io.github.wujun728.api.common.bean.vo; 2 | 3 | import io.swagger.annotations.ApiModel; 4 | 5 | /** 6 | * 空对象 7 | * @version 1.0 8 | * @date 2024-05-06 9 | */ 10 | @ApiModel(value = "空对象", description = "空对象") 11 | public class EmptyVo { 12 | } 13 | -------------------------------------------------------------------------------- /jun_api_online_core/src/main/java/io/github/wujun728/api/common/bean/vo/IdVo.java: -------------------------------------------------------------------------------- 1 | package io.github.wujun728.api.common.bean.vo; 2 | 3 | import io.swagger.annotations.ApiModel; 4 | import io.swagger.annotations.ApiModelProperty; 5 | 6 | /** 7 | * ID对象 8 | * @version 1.0 9 | * @date 2024-05-06 10 | */ 11 | @ApiModel(value = "ID对象", description = "ID对象") 12 | public class IdVo { 13 | 14 | @ApiModelProperty(value = "主键或数据ID") 15 | private T id; 16 | 17 | public T getId() { 18 | return id; 19 | } 20 | 21 | public void setId(T id) { 22 | this.id = id; 23 | } 24 | 25 | public IdVo(T id) { 26 | this.id = id; 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /jun_api_online_core/src/main/java/io/github/wujun728/api/common/bean/vo/TotalVo.java: -------------------------------------------------------------------------------- 1 | package io.github.wujun728.api.common.bean.vo; 2 | 3 | import io.swagger.annotations.ApiModel; 4 | import io.swagger.annotations.ApiModelProperty; 5 | 6 | /** 7 | * ID对象 8 | * @version 1.0 9 | * @date 2024-05-06 10 | */ 11 | @ApiModel(value = "Total对象", description = "Total对象") 12 | public class TotalVo { 13 | 14 | @ApiModelProperty(value = "总数") 15 | private T total; 16 | 17 | public T getTotal() { 18 | return total; 19 | } 20 | 21 | public void setTotal(T total) { 22 | this.total = total; 23 | } 24 | 25 | public TotalVo(T total) { 26 | this.total = total; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /jun_api_online_core/src/main/java/io/github/wujun728/api/common/config/LocaleConfig.java: -------------------------------------------------------------------------------- 1 | package io.github.wujun728.api.common.config; 2 | 3 | import org.springframework.context.annotation.Bean; 4 | import org.springframework.context.annotation.Configuration; 5 | import org.springframework.web.servlet.LocaleResolver; 6 | 7 | /** 8 | * 配置国际化语言 9 | * @version 1.0 10 | * @date 2024-05-06 11 | */ 12 | @Configuration("lowCodeLocaleConfig") 13 | public class LocaleConfig { 14 | 15 | /** 16 | * 默认解析器 其中locale表示默认语言 17 | */ 18 | @Bean("lowCodeLocaleResolver") 19 | public LocaleResolver localeResolver() { 20 | return new MyLocaleResolver(); 21 | } 22 | 23 | } 24 | -------------------------------------------------------------------------------- /jun_api_online_core/src/main/java/io/github/wujun728/api/common/jdbc/bean/EntityAttrInfo.java: -------------------------------------------------------------------------------- 1 | package io.github.wujun728.api.common.jdbc.bean; 2 | 3 | /** 4 | * 实体属性对象 5 | */ 6 | public class EntityAttrInfo extends ColumnInfo{ 7 | 8 | /** 9 | * 属性名 10 | */ 11 | private String attrName; 12 | 13 | /** 14 | * 属性类型 15 | */ 16 | private String attrType; 17 | 18 | public EntityAttrInfo(String attrName, String attrType) { 19 | this.attrName = attrName; 20 | this.attrType = attrType; 21 | } 22 | 23 | public EntityAttrInfo() { 24 | } 25 | 26 | public String getAttrName() { 27 | return attrName; 28 | } 29 | 30 | public void setAttrName(String attrName) { 31 | this.attrName = attrName; 32 | } 33 | 34 | public String getAttrType() { 35 | return attrType; 36 | } 37 | 38 | public void setAttrType(String attrType) { 39 | this.attrType = attrType; 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /jun_api_online_core/src/main/java/io/github/wujun728/api/common/jdbc/bean/TableInfo.java: -------------------------------------------------------------------------------- 1 | package io.github.wujun728.api.common.jdbc.bean; 2 | 3 | /** 4 | * 表基本信息 5 | */ 6 | public class TableInfo { 7 | 8 | /** 9 | * 表名 10 | */ 11 | private String tableName; 12 | 13 | /** 14 | * 表注释 15 | */ 16 | private String tableComment; 17 | 18 | public TableInfo(String tableName, String tableComment) { 19 | this.tableName = tableName; 20 | this.tableComment = tableComment; 21 | } 22 | 23 | public TableInfo() { 24 | } 25 | 26 | public String getTableName() { 27 | return tableName; 28 | } 29 | 30 | public void setTableName(String tableName) { 31 | this.tableName = tableName; 32 | } 33 | 34 | public String getTableComment() { 35 | return tableComment; 36 | } 37 | 38 | public void setTableComment(String tableComment) { 39 | this.tableComment = tableComment; 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /jun_api_online_core/src/main/java/io/github/wujun728/api/common/jdbc/service/EntityService.java: -------------------------------------------------------------------------------- 1 | package io.github.wujun728.api.common.jdbc.service; 2 | 3 | import io.github.wujun728.api.common.jdbc.bean.Connector; 4 | import io.github.wujun728.api.common.jdbc.bean.EntityInfo; 5 | 6 | /** 7 | * @version 1.0 8 | * @date 2019-07-06 9 | **/ 10 | public interface EntityService { 11 | 12 | /** 13 | * 获取EntityInfo 14 | * 15 | * @param connector 16 | * @param tableName 表名 17 | * @return 实体信息 18 | * @throws Exception 19 | */ 20 | public EntityInfo getEntityInfo(Connector connector, String tableName) throws Exception; 21 | } 22 | -------------------------------------------------------------------------------- /jun_api_online_core/src/main/java/io/github/wujun728/api/common/jdbc/service/ITransaction.java: -------------------------------------------------------------------------------- 1 | package io.github.wujun728.api.common.jdbc.service; 2 | 3 | 4 | import io.github.wujun728.api.common.jdbc.util.DaoException; 5 | 6 | import java.sql.Connection; 7 | 8 | /** 9 | * 事务处理 10 | * 11 | * @author 兰平 12 | * @version 1.0 13 | * @date 2017-08-22 14 | */ 15 | public interface ITransaction { 16 | 17 | /** 18 | * 提交 19 | */ 20 | public void commit() throws DaoException; 21 | 22 | /** 23 | * 回滚 24 | */ 25 | public void rollback() throws DaoException; 26 | 27 | /** 28 | * 获取连接 29 | */ 30 | public Connection getConnection() throws DaoException; 31 | 32 | /** 33 | * 关闭连接 34 | */ 35 | public void close() throws DaoException; 36 | 37 | } -------------------------------------------------------------------------------- /jun_api_online_core/src/main/java/io/github/wujun728/api/common/jdbc/service/TableService.java: -------------------------------------------------------------------------------- 1 | package io.github.wujun728.api.common.jdbc.service; 2 | 3 | import io.github.wujun728.api.common.jdbc.bean.Connector; 4 | import io.github.wujun728.api.common.jdbc.bean.TableInfo; 5 | 6 | import java.sql.Connection; 7 | import java.util.List; 8 | 9 | /** 10 | * 数据库表基本接口 11 | * @version 1.0 12 | * @date 2021-11-03 13 | **/ 14 | public interface TableService { 15 | 16 | /** 17 | * 获取所有表 18 | * @param connector 19 | * @return 20 | * @throws Exception 21 | */ 22 | public List selectTables(Connector connector) throws Exception; 23 | 24 | /** 25 | * 获取数据库表注释 26 | * @param con 27 | * @param schema 28 | * @param tableName 29 | * @return 30 | * @throws Exception 31 | */ 32 | public String getTableComment(Connection con, String schema, String tableName) throws Exception; 33 | } 34 | -------------------------------------------------------------------------------- /jun_api_online_core/src/main/java/io/github/wujun728/api/common/jdbc/util/DaoException.java: -------------------------------------------------------------------------------- 1 | package io.github.wujun728.api.common.jdbc.util; 2 | 3 | /** 4 | * 自定义异常 5 | * 6 | * @author 兰平 7 | * @version 1.0 8 | * @date 2017-08-22 9 | */ 10 | public class DaoException extends Exception { 11 | 12 | public DaoException() { 13 | super(); 14 | } 15 | 16 | public DaoException(Exception exception, String message) { 17 | super(message,exception); 18 | } 19 | 20 | public DaoException(String message) { 21 | super(message); 22 | } 23 | } -------------------------------------------------------------------------------- /jun_api_online_core/src/main/java/io/github/wujun728/api/common/utils/ConstantUtil.java: -------------------------------------------------------------------------------- 1 | package io.github.wujun728.api.common.utils; 2 | 3 | /** 4 | * 定义常量类 5 | * @version 1.0 6 | * @date 2024-05-06 7 | */ 8 | public class ConstantUtil { 9 | 10 | /** 11 | * 请求中header中的lang参数 12 | */ 13 | public final static String HEADER_PARAM_LANGUAGE = "lang"; 14 | 15 | /** 16 | * 语言集合 17 | */ 18 | public static String[] LANGUAGES = new String[]{"zh_CN","en_US"}; 19 | 20 | /** 21 | * 数据有效状态 Y 22 | */ 23 | public final static String IS_VALID_Y = "Y"; 24 | 25 | /** 26 | * 数据有效状态 N 27 | */ 28 | public final static String IS_VALID_N = "N"; 29 | 30 | } 31 | -------------------------------------------------------------------------------- /jun_api_online_core/src/main/java/io/github/wujun728/api/common/validate/EntityValidation.java: -------------------------------------------------------------------------------- 1 | package io.github.wujun728.api.common.validate; 2 | 3 | import io.github.wujun728.api.common.exception.BusinessException; 4 | 5 | /** 6 | * 实体校验接口 7 | * 8 | * @version 1.0 9 | * @date 2024-05-06 10 | */ 11 | public interface EntityValidation { 12 | 13 | /** 14 | * 校验 15 | * @param t 16 | * @param validationType 17 | * @throws BusinessException 18 | */ 19 | public void validate(T t, ValidationType validationType) throws BusinessException; 20 | 21 | } 22 | -------------------------------------------------------------------------------- /jun_api_online_core/src/main/java/io/github/wujun728/api/common/validate/ValidationType.java: -------------------------------------------------------------------------------- 1 | package io.github.wujun728.api.common.validate; 2 | 3 | /** 4 | * 实体校验类型 枚举 5 | * 6 | * @version 1.0 7 | * @date 2024-05-06 8 | */ 9 | public enum ValidationType { 10 | ADD, 11 | UPDATE 12 | } 13 | 14 | -------------------------------------------------------------------------------- /jun_api_online_core/src/main/java/io/github/wujun728/api/core/config/AppConfig.java: -------------------------------------------------------------------------------- 1 | package io.github.wujun728.api.core.config; 2 | 3 | import org.mybatis.spring.annotation.MapperScan; 4 | import org.springframework.context.annotation.Configuration; 5 | 6 | 7 | @MapperScan("io.github.wujun728.**.mapper.**") 8 | @Configuration("lowCodeAppConfig") 9 | public class AppConfig { 10 | 11 | } 12 | -------------------------------------------------------------------------------- /jun_api_online_core/src/main/java/io/github/wujun728/api/core/config/InitialTask.java: -------------------------------------------------------------------------------- 1 | package io.github.wujun728.api.core.config; 2 | 3 | import io.github.wujun728.api.core.manager.SQLInitManager; 4 | import org.springframework.stereotype.Component; 5 | 6 | import javax.annotation.PostConstruct; 7 | import javax.annotation.Resource; 8 | 9 | /** 10 | * 初始化启动执行 11 | * @version 1.0 12 | * @date 2024-05-06 13 | */ 14 | @Component("lowCodeInitialTask") 15 | public class InitialTask { 16 | 17 | @Resource 18 | private SQLInitManager sqlInitManager; 19 | 20 | 21 | @PostConstruct 22 | public void init(){ 23 | sqlInitManager.initExecuteTask(); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /jun_api_online_core/src/main/java/io/github/wujun728/api/core/manager/ModelTemplateManager.java: -------------------------------------------------------------------------------- 1 | package io.github.wujun728.api.core.manager; 2 | 3 | import io.github.wujun728.api.core.entity.ApiInfo; 4 | import org.springframework.stereotype.Component; 5 | 6 | /** 7 | * 模板生成处理器 8 | */ 9 | @Component 10 | public class ModelTemplateManager { 11 | 12 | public void createModel(ApiInfo apiInfo, String sourceDir, String outDir){ 13 | 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /jun_api_online_core/src/main/java/io/github/wujun728/api/core/service/ApiParamService.java: -------------------------------------------------------------------------------- 1 | package io.github.wujun728.api.core.service; 2 | 3 | import io.github.wujun728.api.core.entity.ApiInfo; 4 | 5 | import java.util.Map; 6 | 7 | public interface ApiParamService { 8 | 9 | /** 10 | * 参数处理 11 | * 12 | * @param apiInfo 13 | * @throws Exception 14 | */ 15 | public void dearApiParam(ApiInfo apiInfo) throws Exception; 16 | 17 | /** 18 | * SQL语句处理 19 | * 20 | * @param apiInfo 21 | * @param params 22 | * @throws Exception 23 | */ 24 | public void dearApiSQL(ApiInfo apiInfo, Map params) throws Exception; 25 | 26 | } 27 | -------------------------------------------------------------------------------- /jun_api_online_core/src/main/java/io/github/wujun728/api/core/template/service/ModelApiFileService.java: -------------------------------------------------------------------------------- 1 | package io.github.wujun728.api.core.template.service; 2 | 3 | import io.github.wujun728.api.core.entity.ApiInfo; 4 | import io.github.wujun728.api.core.template.vo.Project; 5 | 6 | import java.util.List; 7 | 8 | public interface ModelApiFileService { 9 | 10 | /** 11 | * 写文件 12 | * @param project 13 | * @param apiInfos 14 | */ 15 | public void writeFile(Project project, List apiInfos); 16 | 17 | /** 18 | * 写文件 19 | * @param project 20 | * @param apiInfo 21 | */ 22 | public void writeFile(Project project, ApiInfo apiInfo); 23 | 24 | } 25 | -------------------------------------------------------------------------------- /jun_api_online_core/src/main/java/io/github/wujun728/api/core/template/service/ModelFileService.java: -------------------------------------------------------------------------------- 1 | package io.github.wujun728.api.core.template.service; 2 | 3 | import io.github.wujun728.api.core.entity.ApiInfo; 4 | import io.github.wujun728.api.core.template.vo.Project; 5 | 6 | public interface ModelFileService { 7 | 8 | /** 9 | * 写文件 10 | * @param project 11 | * @param apiInfo 12 | */ 13 | public void writeFile(Project project, ApiInfo apiInfo); 14 | 15 | } 16 | -------------------------------------------------------------------------------- /jun_api_online_core/src/main/java/io/github/wujun728/api/core/template/service/PageCreateService.java: -------------------------------------------------------------------------------- 1 | package io.github.wujun728.api.core.template.service; 2 | 3 | import io.github.wujun728.api.core.entity.ApiInfo; 4 | 5 | public interface PageCreateService { 6 | 7 | public void createFile(ApiInfo apiInfo); 8 | } 9 | -------------------------------------------------------------------------------- /jun_api_online_core/src/main/java/io/github/wujun728/api/core/template/service/PageTemplateService.java: -------------------------------------------------------------------------------- 1 | package io.github.wujun728.api.core.template.service; 2 | 3 | import io.github.wujun728.api.core.entity.ApiInfo; 4 | 5 | import java.util.List; 6 | 7 | public interface PageTemplateService { 8 | 9 | public void createFiles(List apiInfos); 10 | } 11 | -------------------------------------------------------------------------------- /jun_api_online_core/src/main/java/io/github/wujun728/api/core/vo/ApiDatabaseTreeVo.java: -------------------------------------------------------------------------------- 1 | package io.github.wujun728.api.core.vo; 2 | 3 | import io.swagger.annotations.ApiModel; 4 | import io.swagger.annotations.ApiModelProperty; 5 | 6 | import java.util.List; 7 | 8 | /** 9 | * API信息Vo 10 | * @version 1.0 11 | * @date 2024-05-08 12 | */ 13 | @ApiModel(value = "API信息数据库树形Vo",description = "API信息数据库树形Vo") 14 | public class ApiDatabaseTreeVo { 15 | 16 | @ApiModelProperty(value = "数据库名称") 17 | private String databaseName; 18 | 19 | @ApiModelProperty(value = "API分组集合") 20 | private List groups; 21 | 22 | public String getDatabaseName() { 23 | return databaseName; 24 | } 25 | 26 | public void setDatabaseName(String databaseName) { 27 | this.databaseName = databaseName; 28 | } 29 | 30 | public List getGroups() { 31 | return groups; 32 | } 33 | 34 | public void setGroups(List groups) { 35 | this.groups = groups; 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /jun_api_online_core/src/main/java/io/github/wujun728/api/core/vo/ApiGroupTreeVo.java: -------------------------------------------------------------------------------- 1 | package io.github.wujun728.api.core.vo; 2 | 3 | import io.swagger.annotations.ApiModel; 4 | import io.swagger.annotations.ApiModelProperty; 5 | 6 | import java.util.List; 7 | 8 | /** 9 | * API信息Vo 10 | * @version 1.0 11 | * @date 2024-05-08 12 | */ 13 | @ApiModel(value = "API分组信息Vo",description = "API分组信息Vo") 14 | public class ApiGroupTreeVo { 15 | 16 | @ApiModelProperty(value = "分组名称") 17 | private String groupName; 18 | 19 | @ApiModelProperty(value = "API接口集合") 20 | private List apis ; 21 | 22 | public String getGroupName() { 23 | return groupName; 24 | } 25 | 26 | public void setGroupName(String groupName) { 27 | this.groupName = groupName; 28 | } 29 | 30 | public List getApis() { 31 | return apis; 32 | } 33 | 34 | public void setApis(List apis) { 35 | this.apis = apis; 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /jun_api_online_core/src/main/java/io/github/wujun728/api/core/vo/ApiInfoVo.java: -------------------------------------------------------------------------------- 1 | package io.github.wujun728.api.core.vo; 2 | 3 | import io.github.wujun728.api.core.entity.ApiInfo; 4 | import io.swagger.annotations.ApiModel; 5 | import io.swagger.annotations.ApiModelProperty; 6 | 7 | /** 8 | * API信息Vo 9 | * @version 1.0 10 | * @date 2024-05-08 11 | */ 12 | @ApiModel(value = "API信息Vo",description = "API信息Vo") 13 | public class ApiInfoVo extends ApiInfo { 14 | 15 | @ApiModelProperty(value = "数据源名称") 16 | private String sourceName; 17 | 18 | public String getSourceName() { 19 | return sourceName; 20 | } 21 | 22 | public void setSourceName(String sourceName) { 23 | this.sourceName = sourceName; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /jun_api_online_core/src/main/java/io/github/wujun728/api/core/vo/DataSourceVo.java: -------------------------------------------------------------------------------- 1 | package io.github.wujun728.api.core.vo; 2 | 3 | import io.github.wujun728.api.core.entity.DataSource; 4 | import io.swagger.annotations.ApiModel; 5 | 6 | /** 7 | * 数据源Vo 8 | * @version 1.0 9 | * @date 2024-05-07 10 | */ 11 | @ApiModel(value = "数据源Vo",description = "数据源Vo") 12 | public class DataSourceVo extends DataSource { 13 | 14 | } 15 | -------------------------------------------------------------------------------- /jun_api_online_core/src/main/resources/static/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_core/src/main/resources/static/i18n/messages.properties -------------------------------------------------------------------------------- /jun_api_online_demo/.gitignore: -------------------------------------------------------------------------------- 1 | # Eclipse 2 | .classpath 3 | .project 4 | .settings/ 5 | 6 | # Intellij 7 | .idea/ 8 | *.iml 9 | *.iws 10 | 11 | # Mac 12 | .DS_Store 13 | 14 | # Maven 15 | log/ 16 | logs/ 17 | target/ 18 | pom.xml.tag 19 | pom.xml.releaseBackup 20 | pom.xml.versionsBackup 21 | pom.xml.next 22 | release.properties 23 | dependency-reduced-pom.xml 24 | buildNumber.properties 25 | 26 | # java 27 | *.class 28 | *.war 29 | *.ear 30 | 31 | # jrebel 32 | rebel.xml 33 | 34 | # bak 35 | *.bak 36 | /bin/ 37 | -------------------------------------------------------------------------------- /jun_api_online_demo/src/main/java/io/github/wujun728/web/server/ApiWebServerApplication.java: -------------------------------------------------------------------------------- 1 | package io.github.wujun728.web.server; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | import org.springframework.context.annotation.ComponentScan; 6 | import org.springframework.scheduling.annotation.EnableAsync; 7 | 8 | /** 9 | * api-server启动类 10 | * 11 | * @version 1.0 12 | * @date 2024-05-06 13 | */ 14 | @EnableAsync 15 | @ComponentScan({"io.github.wujun728"}) 16 | @SpringBootApplication 17 | public class ApiWebServerApplication{ 18 | 19 | public static void main(String[] args) { 20 | SpringApplication.run(ApiWebServerApplication.class, args); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /jun_api_online_demo/src/main/java/io/github/wujun728/web/server/filter/FilterConfig.java: -------------------------------------------------------------------------------- 1 | package io.github.wujun728.web.server.filter; 2 | 3 | import org.springframework.boot.web.servlet.FilterRegistrationBean; 4 | import org.springframework.context.annotation.Bean; 5 | import org.springframework.context.annotation.Configuration; 6 | 7 | /** 8 | * 过滤器配置 9 | * @version 1.0 10 | * @date 2024-05-06 11 | */ 12 | @Configuration 13 | public class FilterConfig { 14 | 15 | @Bean 16 | public FilterRegistrationBean registFilter() { 17 | FilterRegistrationBean registration = new FilterRegistrationBean(); 18 | registration.setFilter(new CorsFilter()); 19 | registration.addUrlPatterns("/*"); 20 | registration.setName("CorsFilter"); 21 | registration.setOrder(1); 22 | return registration; 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /jun_api_online_demo/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | spring: 2 | profiles: 3 | active: prod 4 | -------------------------------------------------------------------------------- /jun_api_online_groovy/Dockerfile: -------------------------------------------------------------------------------- 1 | # 基础镜像 2 | FROM openjdk:8-jre 3 | # author 4 | MAINTAINER wenbin 5 | # 复制jar文件到路径 6 | ADD manager.jar manager.jar 7 | # 时间 8 | RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime 9 | RUN echo 'Asia/Shanghai' >/etc/timezone 10 | # 启动服务 11 | ENTRYPOINT ["java","-jar","/manager.jar"] 12 | # 暴露端口 13 | EXPOSE 8080 14 | -------------------------------------------------------------------------------- /jun_api_online_groovy/README.md: -------------------------------------------------------------------------------- 1 | # spring-boot-groovy-demo 2 | 3 | #### 项目介绍 4 | 使用了groovy + java 混合编写项目 5 | 使用了groovy作为脚本来进行动态业务逻辑编写 6 | 7 | #### 软件架构 8 | 软件架构说明 9 | 10 | 11 | #### 使用说明 12 | 13 | 启动后访问9000端口 14 | 15 | 已经集成swagger 16 | 17 | http://localhost:9000/swagger-ui.html -------------------------------------------------------------------------------- /jun_api_online_groovy/src/main/java/io/github/wujun728/amis/api/app/controller/TestGroovy.groovy: -------------------------------------------------------------------------------- 1 | package io.github.wujun728.amis.api.app.controller 2 | //package com.bjc.lcp.core.api.controller; 3 | // 4 | //import com.alibaba.fastjson2.JSON 5 | //import com.alibaba.fastjson2.TypeReference 6 | // 7 | ///** 8 | // * groove class 9 | // */ 10 | //class TestGroovy { 11 | // 12 | // void print() { 13 | // System.out.println("hello word!!!!"); 14 | // } 15 | // 16 | // List printArgs(String str1, String str2, String str3) { 17 | // String jsonString = "[\""+str1+"\",\""+str2+"\",\""+str3+"\"]"; 18 | // return JSON.parseObject(jsonString, new TypeReference>() {}); 19 | // } 20 | // 21 | // 22 | //} -------------------------------------------------------------------------------- /jun_api_online_groovy/src/main/java/io/github/wujun728/amis/api/core/config/CrossConfig.java: -------------------------------------------------------------------------------- 1 | package io.github.wujun728.amis.api.core.config; 2 | 3 | import org.springframework.context.annotation.Configuration; 4 | import org.springframework.web.servlet.config.annotation.CorsRegistry; 5 | import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; 6 | 7 | @Configuration 8 | public class CrossConfig implements WebMvcConfigurer { 9 | @Override 10 | public void addCorsMappings(CorsRegistry registry) { 11 | registry.addMapping("/**") 12 | //.allowedOrigins("*") // SpringBoot低版本没问题,高版本不能让这样设置 13 | .allowedOriginPatterns("*") 14 | .allowedMethods("GET", "HEAD", "POST", "PUT", "DELETE", "OPTIONS") 15 | .allowCredentials(true) 16 | .maxAge(3600) 17 | .allowedHeaders("*"); 18 | } 19 | } -------------------------------------------------------------------------------- /jun_api_online_groovy/src/main/resources/application-sqlite.yml: -------------------------------------------------------------------------------- 1 | # 数据源配置 2 | spring: 3 | datasource: 4 | type: com.alibaba.druid.pool.DruidDataSource 5 | driverClassName: org.sqlite.JDBC 6 | druid: 7 | # 主库数据源 8 | master: 9 | # 发布后 10 | # url: jdbc:sqlite:./sqlite/code-generator.db 11 | # 开发时 12 | url: jdbc:sqlite::resource:static/sqlite/code-generator.db 13 | username: root 14 | password: password -------------------------------------------------------------------------------- /jun_api_online_groovy/src/main/resources/conf/server.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /jun_api_online_groovy/src/main/resources/ds.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | jdbc:mysql://localhost:3306/test?useSSL=false&characterEncoding=UTF-8&serverTimezone=GMT%2B8 4 | root 5 | 6 | com.mysql.cj.jdbc.Driver 7 | 8 | 9 | 10 | jdbc:mysql://localhost:3306/db_qixing_bk?useSSL=false&characterEncoding=UTF-8&serverTimezone=GMT%2B8 11 | root 12 | 13 | com.mysql.cj.jdbc.Driver 14 | 15 | -------------------------------------------------------------------------------- /jun_api_online_groovy/src/main/resources/sql/log.xml: -------------------------------------------------------------------------------- 1 | 2 | main 3 | 4 | 5 | select * from sys_log 6 | 7 | 8 | -------------------------------------------------------------------------------- /jun_api_online_groovy/src/main/resources/sql/user.xml: -------------------------------------------------------------------------------- 1 | 2 | test_mysql 3 | 4 | 5 | select * from student 6 | 7 | 8 | 9 | select * from user where id in 10 | 11 | #{item} 12 | 13 | 14 | 15 | 16 | 17 | select * from student where id = #{id} 18 | 19 | 20 | 21 | insert into student (name,age) values (#{name},#{age}) 22 | 23 | 24 | 25 | delete from student 26 | 27 | 28 | -------------------------------------------------------------------------------- /jun_api_online_groovy/src/main/resources/static/test.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Title 6 | 7 | 8 |

TEST 666 25-01-03

9 | 10 | 11 | -------------------------------------------------------------------------------- /jun_api_online_groovy/src/main/resources/templates/thymeleaf.html: -------------------------------------------------------------------------------- 1 |

HWLLOW 111 222 3333

-------------------------------------------------------------------------------- /jun_api_online_groovy/src/test/java/io/github/wujun728/Tester.java: -------------------------------------------------------------------------------- 1 | //package io.github.wujun728; 2 | // 3 | //import com.bjc.lcp.ApiServiceApplication; 4 | //import org.junit.Test; 5 | //import org.junit.runner.RunWith; 6 | //import org.springframework.boot.test.context.SpringBootTest; 7 | //import org.springframework.test.context.junit4.SpringRunner; 8 | // 9 | ///** 10 | // * 单元测试 11 | // */ 12 | //@RunWith(SpringRunner.class) 13 | //@SpringBootTest(classes = ApiServiceApplication.class,webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT) 14 | //public class Tester { 15 | // 16 | // @Test 17 | // public void test() { 18 | // 19 | // } 20 | //} 21 | // 22 | // 23 | // 24 | -------------------------------------------------------------------------------- /jun_api_online_groovy/src/test/java/io/github/wujun728/groovy/GroovyTest.java: -------------------------------------------------------------------------------- 1 | package io.github.wujun728.groovy; 2 | 3 | public interface GroovyTest { 4 | 5 | /** 6 | * 求和计算 7 | */ 8 | int sum(int a, int b); 9 | 10 | } -------------------------------------------------------------------------------- /jun_api_online_groovy/src/test/java/io/github/wujun728/groovy/Main.java: -------------------------------------------------------------------------------- 1 | package io.github.wujun728.groovy; 2 | 3 | public class Main { 4 | 5 | public int age = 666; 6 | 7 | public void sayHello() { 8 | System.out.println("年龄是:" + age); 9 | } 10 | public void sayHello(Param p) { 11 | System.out.println("年龄是:" + p.getMsg()); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /jun_api_online_groovy/src/test/java/io/github/wujun728/groovy/Param.java: -------------------------------------------------------------------------------- 1 | package io.github.wujun728.groovy; 2 | 3 | import java.io.Serializable; 4 | 5 | public class Param implements Serializable{ 6 | 7 | String msg; 8 | 9 | public String getMsg() { 10 | return msg; 11 | } 12 | 13 | public void setMsg(String msg) { 14 | this.msg = msg; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /jun_api_online_groovy/src/test/java/io/github/wujun728/groovy/TestGroovy.groovy: -------------------------------------------------------------------------------- 1 | package io.github.wujun728.groovy; 2 | 3 | import com.alibaba.fastjson2.JSON 4 | import com.alibaba.fastjson2.TypeReference 5 | 6 | /** 7 | * groove class 8 | */ 9 | class TestGroovy { 10 | 11 | void print() { 12 | System.out.println("hello word!!!!"); 13 | } 14 | 15 | List printArgs(String str1, String str2, String str3) { 16 | String jsonString = "[\""+str1+"\",\""+str2+"\",\""+str3+"\"]"; 17 | return JSON.parseObject(jsonString, new TypeReference>() {}); 18 | } 19 | void sayHello(Param p) { 20 | System.out.println("年龄是:" + p.getMsg()); 21 | } 22 | 23 | } -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/assets/css/runapi/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/assets/css/runapi/fonts/element-icons.woff -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/assets/lib/jquery/jquery.json-viewer.min.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Minified by jsDelivr using clean-css v4.2.1. 3 | * Original file: /npm/jquery.json-viewer@1.4.0/json-viewer/jquery.json-viewer.css 4 | * 5 | * Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files 6 | */ 7 | .json-document{padding:1em 2em}ol.json-array,ul.json-dict{list-style-type:none;margin:0 0 0 1px;border-left:1px dotted #ccc;padding-left:2em}.json-string{color:#0b7500}.json-literal{color:#1a01cc;font-weight:700}a.json-toggle{position:relative;color:inherit;text-decoration:none}a.json-toggle:focus{outline:0}a.json-toggle:before{font-size:1.1em;color:silver;content:"\25BC";position:absolute;display:inline-block;width:1em;text-align:center;line-height:1em;left:-1.2em}a.json-toggle:hover:before{color:#aaa}a.json-toggle.collapsed:before{transform:rotate(-90deg)}a.json-placeholder{color:#aaa;padding:0 1em;text-decoration:none}a.json-placeholder:hover{text-decoration:underline} 8 | /* */ -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/assets/lib/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/assets/lib/layui/font/iconfont.eot -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/assets/lib/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/assets/lib/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/assets/lib/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/assets/lib/layui/font/iconfont.woff -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/assets/lib/layui/font/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/assets/lib/layui/font/iconfont.woff2 -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/assets/lib/layui_extends/json/yutons_sug.json: -------------------------------------------------------------------------------- 1 | { 2 | "code": 0, 3 | "msg": "", 4 | "count": 100, 5 | "data": [{ 6 | "userName": "测试用户1", 7 | "userCode": "170001", 8 | "deptName": "测试部门1" 9 | }, { 10 | "userName": "测试用户2", 11 | "userCode": "170002", 12 | "deptName": "测试部门1" 13 | }, { 14 | "userName": "测试用户3", 15 | "userCode": "170003", 16 | "deptName": "测试部门2" 17 | }, { 18 | "userName": "测试用户4", 19 | "userCode": "170004", 20 | "deptName": "测试部门2" 21 | }, { 22 | "userName": "测试用户5", 23 | "userCode": "170005", 24 | "deptName": "测试部门3" 25 | }] 26 | } 27 | -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/assets/lib/layui_exts/mouseRightMenu/mouseRightMenu.css: -------------------------------------------------------------------------------- 1 | .layer-skin-mouse-right-menu { 2 | border-radius: 5px !important; 3 | } 4 | 5 | .layer-skin-mouse-right-menu .layui-layer-content { 6 | overflow-x: hidden !important; 7 | } 8 | 9 | .mouse-right-menu { 10 | padding: 5px 0; 11 | } 12 | 13 | .mouse-right-menu .enian_menu .text { 14 | width: 100%; 15 | margin-left: 10px; 16 | line-height: 40px; 17 | } 18 | 19 | .mouse-right-menu .enian_menu { 20 | width: 100%; 21 | height: 40px; 22 | border-bottom: 1px solid #eee; 23 | } 24 | .mouse-right-menu .enian_menu:last-child{ 25 | border-bottom:none; 26 | } 27 | .mouse-right-menu .enian_menu:hover { 28 | cursor: pointer; 29 | /*background: #009688;*/ 30 | background: #696969; 31 | color: white; 32 | } -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/1.PNG -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/2.PNG -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/3.PNG -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/4.PNG -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/88_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/88_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/angrya_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/angrya_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/banner1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/banner1.PNG -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/banner2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/banner2.PNG -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/banner3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/banner3.PNG -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/bba_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/bba_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/bs2_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/bs2_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/bs_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/bs_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/bz_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/bz_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/cake.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/cake.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/cj_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/cj_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/come_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/come_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/cool_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/cool_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/crazya_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/crazya_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/cry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/cry.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/cza_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/cza_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/dizzya_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/dizzya_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/good_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/good_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/gza_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/gza_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/h_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/h_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/hatea_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/hatea_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/hearta_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/hearta_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/heia_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/heia_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/hsa_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/hsa_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/k_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/k_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/kbsa_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/kbsa_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/kl_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/kl_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/laugh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/laugh.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/lazu_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/lazu_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/ldln_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/ldln_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/lovea_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/lovea_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/mb_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/mb_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/money_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/money_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/nm_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/nm_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/no_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/no_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/ok_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/ok_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/qq_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/qq_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/sad_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/sad_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/sada_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/sada_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/sb_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/sb_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/shamea_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/shamea_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/sk_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/sk_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/sleepa_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/sleepa_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/sleepya_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/sleepya_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/sw_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/sw_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/sweata_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/sweata_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/t_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/t_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/tootha_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/tootha_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/tza_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/tza_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/unheart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/unheart.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/wq_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/wq_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/x_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/x_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/ye_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/ye_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/yhh_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/yhh_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/yw_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/yw_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/yx_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/yx_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/z2_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/z2_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/zhh_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/zhh_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/images/zy_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/ayq/images/zy_thumb.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/js/config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * layui 项目的全局配置 3 | * 4 | */ 5 | layui.config({ 6 | //dir: '/res/layui/', //layui.js 所在路径(注意,如果是 script 单独引入 layui.js,无需设定该参数。),一般情况下可以无视 7 | version: false, //一般用于更新模块缓存,默认不开启。设为 true 即让浏览器不缓存。也可以设为一个固定的值,如:201610 8 | debug: false, //用于开启调试模式,默认 false,如果设为 true,则JS模块的节点会保留在页面 9 | base: '/ayq/modules/', //设定扩展的 layui 模块的所在目录,一般用于外部模块扩展 10 | }).use(['layer'],function(){ 11 | var $ = layui.jquery; 12 | var layer = layui.layer; 13 | }); -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/ayq/modules/labelGeneration.css: -------------------------------------------------------------------------------- 1 | .none-transition{ 2 | transition: none; 3 | -webkit-transition: none; 4 | } 5 | -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/layui/css/modules/layer/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/layui/css/modules/layer/default/icon-ext.png -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/layui/css/modules/layer/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/layui/css/modules/layer/default/icon.png -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/layui/css/modules/layer/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/layui/css/modules/layer/default/loading-0.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/layui/css/modules/layer/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/layui/css/modules/layer/default/loading-1.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/layui/css/modules/layer/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/layui/css/modules/layer/default/loading-2.gif -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/layui/font/iconfont.eot -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/layui/font/iconfont.woff -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/form-designer/layui/font/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_api_online_groovy_ui/form-designer/layui/font/iconfont.woff2 -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/projectPermission/list.json: -------------------------------------------------------------------------------- 1 | { 2 | "code": 0, 3 | "endIndex": 0, 4 | "intIds": [], 5 | "list": [ 6 | { 7 | "owner": "562218652d5e4f18a9b67a60a2f3486e", 8 | "create_time": "2024-07-23 08:51:23", 9 | "project_name": "RunApi", 10 | "team_name": "jfinal runapi团队", 11 | "create_by": "1", 12 | "project_id": "1", 13 | "id": "6e68681ef25f4e528006dd6c55a5d6d1", 14 | "owner_type": "team" 15 | } 16 | ], 17 | "longIds": [], 18 | "msg": "获取成功", 19 | "pageNumber": 1, 20 | "pageSize": 20, 21 | "startIndex": 0, 22 | "total": 1, 23 | "totalCount": 1, 24 | "totalPage": 1 25 | } -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/role/list.json: -------------------------------------------------------------------------------- 1 | { 2 | "code": 0, 3 | "endIndex": 0, 4 | "intIds": [], 5 | "list": [ 6 | { 7 | "role_name": "系统管理员", 8 | "user_num": 3, 9 | "create_time": "2024-04-17 14:42:55", 10 | "id": 1 11 | }, 12 | { 13 | "role_name": "项目管理员", 14 | "user_num": 0, 15 | "create_time": "2024-04-17 14:43:11", 16 | "id": 2 17 | }, 18 | { 19 | "role_name": "团队管理员", 20 | "user_num": 0, 21 | "create_time": "2024-04-17 14:43:19", 22 | "id": 3 23 | }, 24 | { 25 | "role_name": "开发人员", 26 | "user_num": 1, 27 | "create_time": "2024-04-17 14:43:33", 28 | "id": 4 29 | } 30 | ], 31 | "longIds": [], 32 | "msg": "获取成功", 33 | "pageNumber": 1, 34 | "pageSize": 20, 35 | "startIndex": 0, 36 | "total": 4, 37 | "totalCount": 4, 38 | "totalPage": 1 39 | } -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/runapi/syncProjectApi.json: -------------------------------------------------------------------------------- 1 | {"msg":"接口已经是最新状态,无需更新","state":"ok"} -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/share/list.json: -------------------------------------------------------------------------------- 1 | { 2 | "code": 0, 3 | "endIndex": 0, 4 | "intIds": [], 5 | "list": [ 6 | { 7 | "visit_type": 0, 8 | "id": "c59c83a157294fb093b6dd3f692a7bb8", 9 | "state": 0, 10 | "title": "test" 11 | } 12 | ], 13 | "longIds": [], 14 | "msg": "获取成功", 15 | "pageNumber": 1, 16 | "pageSize": 20, 17 | "startIndex": 0, 18 | "total": 1, 19 | "totalCount": 1, 20 | "totalPage": 1 21 | } -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/shareRunApi/list.json: -------------------------------------------------------------------------------- 1 | { 2 | "code": 0, 3 | "endIndex": 0, 4 | "intIds": [], 5 | "list": [ 6 | { 7 | "share_id": "c59c83a157294fb093b6dd3f692a7bb8", 8 | "action_key": "/home", 9 | "project_id": "1", 10 | "run_api_id": "16b39d66e64b43e5ac90839decd83f18", 11 | "remark": "后台管理首页", 12 | "id": 25, 13 | "sort": 1, 14 | "title": "后台管理首页", 15 | "project_name": "RunApi" 16 | } 17 | ], 18 | "longIds": [], 19 | "msg": "获取成功", 20 | "pageNumber": 1, 21 | "pageSize": 20, 22 | "startIndex": 0, 23 | "total": 1, 24 | "totalCount": 1, 25 | "totalPage": 1 26 | } -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/team/list.json: -------------------------------------------------------------------------------- 1 | { 2 | "code": 0, 3 | "endIndex": 0, 4 | "intIds": [], 5 | "list": [ 6 | { 7 | "create_by": "1", 8 | "user_num": 1, 9 | "create_time": "2024-04-01 16:00:14", 10 | "id": "562218652d5e4f18a9b67a60a2f3486e", 11 | "team_name": "jfinal runapi团队", 12 | "project_num": 1 13 | }, 14 | { 15 | "create_by": "5", 16 | "user_num": 0, 17 | "create_time": "2024-08-22 14:09:09", 18 | "id": "9a17a630529f4040b36aab45f0e62075", 19 | "team_name": "11", 20 | "project_num": 0 21 | } 22 | ], 23 | "longIds": [], 24 | "msg": "获取成功", 25 | "pageNumber": 1, 26 | "pageSize": 20, 27 | "startIndex": 0, 28 | "total": 2, 29 | "totalCount": 2, 30 | "totalPage": 1 31 | } -------------------------------------------------------------------------------- /jun_api_online_groovy_ui/teamUser/list.json: -------------------------------------------------------------------------------- 1 | { 2 | "code": 0, 3 | "endIndex": 0, 4 | "intIds": [], 5 | "list": [ 6 | { 7 | "create_by": "1", 8 | "create_time": "2024-05-13 16:46:43", 9 | "user_id": 5, 10 | "user_name": "dev", 11 | "nickname": "开发者", 12 | "id": "046fe3833b8a47c688729d69172b5343", 13 | "team_id": "562218652d5e4f18a9b67a60a2f3486e", 14 | "power": "edit", 15 | "team_name": "jfinal runapi团队" 16 | } 17 | ], 18 | "longIds": [], 19 | "msg": "获取成功", 20 | "pageNumber": 1, 21 | "pageSize": 20, 22 | "startIndex": 0, 23 | "total": 1, 24 | "totalCount": 1, 25 | "totalPage": 1 26 | } -------------------------------------------------------------------------------- /jun_layui_jfinal/portal/core/dictionary/tree.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "children": [ 4 | { 5 | "children": [], 6 | "id": "logType", 7 | "text": "日志类型", 8 | "title": "日志类型" 9 | } 10 | ], 11 | "id": "frame", 12 | "text": "业务字典", 13 | "title": "业务字典" 14 | } 15 | ] -------------------------------------------------------------------------------- /jun_layui_jfinal/portal/core/dictionary/value/getOption.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "dictionary_code": "logType", 4 | "name": "操作日志", 5 | "remark": "字典编号:logType", 6 | "id": "40288ae76812ae55016812bcc5060037", 7 | "order_num": 1, 8 | "value": "操作日志" 9 | }, 10 | { 11 | "dictionary_code": "logType", 12 | "name": "数据日志", 13 | "remark": "字典编号:logType", 14 | "id": "40288ae76812ae55016812bcfc740039", 15 | "order_num": 2, 16 | "value": "数据日志" 17 | }, 18 | { 19 | "dictionary_code": "logType", 20 | "name": "登录日志", 21 | "remark": "字典编号:logType", 22 | "id": "40288ae76812ae55016812bd288b003b", 23 | "order_num": 3, 24 | "value": "登录日志" 25 | } 26 | ] -------------------------------------------------------------------------------- /jun_layui_jfinal/portal/core/sysUser/list.json: -------------------------------------------------------------------------------- 1 | { 2 | "code": 0, 3 | "endIndex": 0, 4 | "intIds": [], 5 | "list": [ 6 | { 7 | "user_code": "admin", 8 | "user_name": "管理员", 9 | "sex": 1, 10 | "id": "admin", 11 | "org_name": "绘宇智能", 12 | "allow_login": 0 13 | }, 14 | { 15 | "user_code": "superadmin", 16 | "user_name": "超级管理员", 17 | "sex": 1, 18 | "id": "superadmin", 19 | "org_name": "绘宇智能", 20 | "allow_login": 0 21 | } 22 | ], 23 | "longIds": [], 24 | "msg": "获取成功", 25 | "pageNumber": 1, 26 | "pageSize": 20, 27 | "startIndex": 0, 28 | "total": 2, 29 | "totalCount": 2, 30 | "totalPage": 1 31 | } -------------------------------------------------------------------------------- /jun_layui_jfinal/portal/form/sql/list.json: -------------------------------------------------------------------------------- 1 | { 2 | "code": 0, 3 | "endIndex": 0, 4 | "intIds": [], 5 | "list": [ 6 | { 7 | "code": "query_org", 8 | "create_time": "2019-09-02 20:53:41", 9 | "tree_id": "4028830c6b5fcc89016b5fd976fc005a", 10 | "name": "部门下拉sql", 11 | "id": "4028832c6cf20578016cf209c0300013", 12 | "content": "select id value,org_name name from sys_org" 13 | }, 14 | { 15 | "code": "query_user", 16 | "create_time": "2019-06-16 19:02:18", 17 | "tree_id": "4028830c6b5fcc89016b5fd976fc005a", 18 | "name": "查询用户", 19 | "id": "4028830c6b5feeb4016b5ff3bee9000c", 20 | "content": "select a.*,b.org_name from sys_user a,sys_org b where a.org_id=b.id group by a.id order by a.id desc ", 21 | "descp": "test" 22 | } 23 | ], 24 | "longIds": [], 25 | "msg": "获取成功", 26 | "pageNumber": 1, 27 | "pageSize": 20, 28 | "startIndex": 0, 29 | "total": 2, 30 | "totalCount": 2, 31 | "totalPage": 1 32 | } -------------------------------------------------------------------------------- /jun_layui_jfinal/portal/form/sql/review.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | HTML显示json字符串并且进行格式化 5 | 6 | 7 | 8 | 9 |

10 |  
11 | 
12 | 
17 | 
18 | 


--------------------------------------------------------------------------------
/jun_layui_jfinal/portal/form/sql/review1.html:
--------------------------------------------------------------------------------
 1 | 
 2 | 
 3 | 
 4 | HTML显示json字符串并且进行格式化
 5 | 
 6 |  
 7 | 
 8 | 
 9 | 

10 |  
11 | 
12 | 
17 | 
18 | 


--------------------------------------------------------------------------------
/jun_layui_jfinal/portal/form/sysTree/tree.json:
--------------------------------------------------------------------------------
 1 | [
 2 |     {
 3 |         "children": [
 4 |             {
 5 |                 "children": [],
 6 |                 "id": "4028830c6b5fcc89016b5fd976fc005a",
 7 |                 "text": "用户部门查询",
 8 |                 "title": "用户部门查询"
 9 |             }
10 |         ],
11 |         "id": "",
12 |         "text": "JFinal极速开发企业应用管理系统",
13 |         "title": "JFinal极速开发企业应用管理系统"
14 |     }
15 | ]


--------------------------------------------------------------------------------
/jun_layui_jfinal/portal/form/view/tree.json:
--------------------------------------------------------------------------------
 1 | [
 2 |     {
 3 |         "children": [
 4 |             {
 5 |                 "children": [],
 6 |                 "id": "107400000000002215",
 7 |                 "text": "流程表单",
 8 |                 "title": "流程表单"
 9 |             },
10 |             {
11 |                 "children": [],
12 |                 "id": "402880e87a1ca809017a1ca89dda0004",
13 |                 "text": "自定义SQL表单",
14 |                 "title": "自定义SQL表单"
15 |             }
16 |         ],
17 |         "id": "",
18 |         "text": "JFinal极速开发企业应用管理系统",
19 |         "title": "JFinal极速开发企业应用管理系统"
20 |     }
21 | ]


--------------------------------------------------------------------------------
/jun_layui_jfinal/portal/form/view/view.json:
--------------------------------------------------------------------------------
 1 | [
 2 |     {
 3 |         "children": [
 4 |             {
 5 |                 "children": [],
 6 |                 "id": "107400000000002215",
 7 |                 "text": "流程表单",
 8 |                 "title": "流程表单"
 9 |             },
10 |             {
11 |                 "children": [],
12 |                 "id": "402880e87a1ca809017a1ca89dda0004",
13 |                 "text": "自定义SQL表单",
14 |                 "title": "自定义SQL表单"
15 |             }
16 |         ],
17 |         "id": "",
18 |         "text": "JFinal极速开发企业应用管理系统",
19 |         "title": "JFinal极速开发企业应用管理系统"
20 |     }
21 | ]


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/img/0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/img/0.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/img/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/img/1.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/img/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/img/bg.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/img/error/error.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/img/error/error.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/img/login_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/img/login_bg.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ckplayer/css/images/adclose.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ckplayer/css/images/adclose.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ckplayer/css/images/buffer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ckplayer/css/images/buffer.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ckplayer/css/images/ckplayer.48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ckplayer/css/images/ckplayer.48.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ckplayer/css/images/ckplayer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ckplayer/css/images/ckplayer.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ckplayer/css/images/ckplayer_ixigua.48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ckplayer/css/images/ckplayer_ixigua.48.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ckplayer/css/images/ckplayer_ixigua.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ckplayer/css/images/ckplayer_ixigua.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ckplayer/css/images/ckplayer_red.48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ckplayer/css/images/ckplayer_red.48.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ckplayer/css/images/ckplayer_red.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ckplayer/css/images/ckplayer_red.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ckplayer/css/images/loading.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ckplayer/css/images/loading.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ckplayer/css/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ckplayer/css/images/logo.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ckplayer/css/images/play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ckplayer/css/images/play.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/dwallslider/images/close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/dwallslider/images/close.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/dwallslider/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/dwallslider/images/loading.gif


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/dwallslider/images/next.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/dwallslider/images/next.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/dwallslider/images/prev.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/dwallslider/images/prev.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/echarts/img/bar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/echarts/img/bar.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/echarts/img/line.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/echarts/img/line.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/echarts/img/pie.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/echarts/img/pie.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ext/area.js:
--------------------------------------------------------------------------------
 1 | /** area.js By Beginner Emain:zheng_jinfan@126.com HomePage:http://www.zhengjinfan.cn */
 2 | layui.define(['jquery'], function(exports) {
 3 | 	"use strict";
 4 | 	var $ = layui.jquery;
 5 | 
 6 | 	//设置ajax可跨域
 7 | 	$.support.cors = true;
 8 | 	var Area = function() {
 9 | 		this.config = {
10 | 			url: undefined, //远程数据的url
11 | 			type: 'json', //数据类型 json or jsonp
12 | 			provinceFilter: 'province', //省的过滤器名称
13 | 			cityFilter: 'city', //市的过滤器名称
14 | 			districtFilter: 'district', // 区域的过滤器名称
15 | 			provinceName: 'province', //省名称
16 | 			cityName: 'city', //市名称
17 | 			districtName: 'district', //区域名称	
18 | 		};
19 | 		this.v = '1.0';
20 | 	};
21 | 	Area.prototype.set = function(options) {
22 | 		var that = this;
23 | 		$.extend(true, that.config, options);
24 | 		return that;
25 | 	};
26 | 	Area.prototype.init = function(options) {
27 | 		var that = this;
28 | 		
29 | 		
30 | 		
31 | 		return that;		
32 | 	};
33 | 
34 | 	var area = new Area();
35 | 
36 | 	exports('area', function(options) {
37 | 		return area.set(options);
38 | 	});
39 | });


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ext/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 | });


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ext/xyjtable.js:
--------------------------------------------------------------------------------
 1 | /** common.js By Beginner Emain:zheng_jinfan@126.com HomePage:http://www.zhengjinfan.cn */
 2 | layui.define(['table'], function(exports) {
 3 | 	"use strict";
 4 | 	var table = layui.table;
 5 | 	var xyjtable = {
 6 | 		render: function(options) {
 7 | 			return table.render(options);
 8 | 		}
 9 | 	};
10 | 
11 | 	exports('xyjtable', xyjtable);
12 | });


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/font-awesome/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/font-awesome/fonts/FontAwesome.otf


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/font-awesome/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/font-awesome/fonts/fontawesome-webfont.eot


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/font-awesome/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/font-awesome/fonts/fontawesome-webfont.ttf


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/font-awesome/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/font-awesome/fonts/fontawesome-webfont.woff


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/font-awesome/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/font-awesome/fonts/fontawesome-webfont.woff2


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/layui/font/iconfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/layui/font/iconfont.eot


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/layui/font/iconfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/layui/font/iconfont.ttf


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/layui/font/iconfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/layui/font/iconfont.woff


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/layui/font/iconfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/layui/font/iconfont.woff2


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/layui_extends/json/yutons_sug.json:
--------------------------------------------------------------------------------
 1 | {
 2 | 	"code": 0,
 3 | 	"msg": "",
 4 | 	"count": 100,
 5 | 	"data": [{
 6 | 		"userName": "测试用户1",
 7 | 		"userCode": "170001",
 8 | 		"deptName": "测试部门1"
 9 | 	}, {
10 | 		"userName": "测试用户2",
11 | 		"userCode": "170002",
12 | 		"deptName": "测试部门1"
13 | 	}, {
14 | 		"userName": "测试用户3",
15 | 		"userCode": "170003",
16 | 		"deptName": "测试部门2"
17 | 	}, {
18 | 		"userName": "测试用户4",
19 | 		"userCode": "170004",
20 | 		"deptName": "测试部门2"
21 | 	}, {
22 | 		"userName": "测试用户5",
23 | 		"userCode": "170005",
24 | 		"deptName": "测试部门3"
25 | 	}]
26 | }
27 | 


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/fileTypeImages/icon_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/fileTypeImages/icon_default.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/images/alignicon.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/images/alignicon.gif


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/images/alignicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/images/alignicon.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/images/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/images/bg.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/images/file-icons.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/images/file-icons.gif


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/images/file-icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/images/file-icons.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/images/icons.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/images/icons.gif


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/images/icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/images/icons.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/images/image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/images/image.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/images/progress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/images/progress.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/images/success.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/images/success.gif


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/images/success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/attachment/images/success.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/background/images/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/background/images/bg.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/background/images/success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/background/images/success.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/charts/images/charts0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/charts/images/charts0.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/charts/images/charts1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/charts/images/charts1.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/charts/images/charts2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/charts/images/charts2.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/charts/images/charts3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/charts/images/charts3.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/charts/images/charts4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/charts/images/charts4.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/charts/images/charts5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/charts/images/charts5.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/emotion/images/0.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/emotion/images/0.gif


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/emotion/images/bface.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/emotion/images/bface.gif


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/emotion/images/cface.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/emotion/images/cface.gif


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/emotion/images/fface.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/emotion/images/fface.gif


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/emotion/images/jxface2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/emotion/images/jxface2.gif


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/emotion/images/neweditor-tab-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/emotion/images/neweditor-tab-bg.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/emotion/images/tface.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/emotion/images/tface.gif


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/emotion/images/wface.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/emotion/images/wface.gif


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/emotion/images/yface.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/emotion/images/yface.gif


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/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;}


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/image/images/alignicon.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/image/images/alignicon.jpg


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/image/images/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/image/images/bg.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/image/images/icons.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/image/images/icons.gif


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/image/images/icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/image/images/icons.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/image/images/image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/image/images/image.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/image/images/progress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/image/images/progress.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/image/images/success.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/image/images/success.gif


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/image/images/success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/image/images/success.png


--------------------------------------------------------------------------------
/jun_layui_jfinal/static/libs/ueditor/dialogs/music/music.html:
--------------------------------------------------------------------------------
 1 | 
 2 | 
 3 | 
 4 |     
 5 |     插入音乐
 6 |     
 7 |     
 8 | 
 9 | 
10 | 
11 | 15 |
16 | 17 |
18 |
19 |
20 |
21 | 22 | 31 | 32 | -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/scrawl/images/addimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/scrawl/images/addimg.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/scrawl/images/brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/scrawl/images/brush.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/scrawl/images/delimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/scrawl/images/delimg.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/scrawl/images/delimgH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/scrawl/images/delimgH.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/scrawl/images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/scrawl/images/empty.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/scrawl/images/emptyH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/scrawl/images/emptyH.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/scrawl/images/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/scrawl/images/eraser.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/scrawl/images/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/scrawl/images/redo.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/scrawl/images/redoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/scrawl/images/redoH.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/scrawl/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/scrawl/images/scale.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/scrawl/images/scaleH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/scrawl/images/scaleH.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/scrawl/images/size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/scrawl/images/size.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/scrawl/images/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/scrawl/images/undo.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/scrawl/images/undoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/scrawl/images/undoH.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/spechars/spechars.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 14 | 15 | 16 |
17 |
18 |
19 | 20 | 21 | -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/table/dragicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/table/dragicon.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/table/edittip.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 表格删除提示 5 | 6 | 17 | 18 | 19 |
20 |
21 | 22 |
23 |
24 | 25 |
26 |
27 | 32 | 33 | -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/template/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/template/images/bg.gif -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/template/images/pre0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/template/images/pre0.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/template/images/pre1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/template/images/pre1.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/template/images/pre2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/template/images/pre2.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/template/images/pre3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/template/images/pre3.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/template/images/pre4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/template/images/pre4.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/template/template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
12 |
13 | 14 |
15 |
16 |
17 |
18 | 19 |
20 |
21 |
22 |
23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/video/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/video/images/bg.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/video/images/center_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/video/images/center_focus.jpg -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/video/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/video/images/file-icons.gif -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/video/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/video/images/file-icons.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/video/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/video/images/icons.gif -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/video/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/video/images/icons.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/video/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/video/images/image.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/video/images/left_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/video/images/left_focus.jpg -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/video/images/none_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/video/images/none_focus.jpg -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/video/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/video/images/progress.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/video/images/right_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/video/images/right_focus.jpg -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/video/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/video/images/success.gif -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/video/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/video/images/success.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/wordimage/fClipboard_ueditor.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/wordimage/fClipboard_ueditor.swf -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/dialogs/wordimage/imageUploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/dialogs/wordimage/imageUploader.swf -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/jsp/config.json: -------------------------------------------------------------------------------- 1 | /* 前后端通信相关的配置,注释只允许使用多行方式 */ 2 | { 3 | /* 上传图片配置项 */ 4 | "imageActionName": "uploadimage", /* 执行上传图片的action名称 */ 5 | "imageFieldName": "upfile", /* 提交的图片表单名称 */ 6 | "imageMaxSize": 204800, /* 上传大小限制,单位B */ 7 | "imageAllowFiles": [".png", ".jpg", ".jpeg", ".gif"], /* 上传图片格式显示 */ 8 | "imageCompressEnable": true, /* 是否压缩图片,默认是true */ 9 | "imageCompressBorder": 1600, /* 图片压缩最长边限制 */ 10 | "imageInsertAlign": "none", /* 插入的图片浮动方式 */ 11 | "imageUrlPrefix": "", /* 图片访问路径前缀 */ 12 | "imagePathFormat": "/ueditor/jsp/upload/image/{yyyy}{mm}{dd}/{hh}{ii}{ss}" 13 | } -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/jsp/controller.jsp-to-be-safed: -------------------------------------------------------------------------------- 1 | <%@ page language="java" contentType="text/html; charset=UTF-8" 2 | import="com.baidu.ueditor.ActionEnter" 3 | pageEncoding="UTF-8"%> 4 | <%@ page trimDirectiveWhitespaces="true" %> 5 | <% 6 | 7 | request.setCharacterEncoding( "utf-8" ); 8 | response.setHeader("Content-Type" , "text/html"); 9 | 10 | String rootPath = application.getRealPath( "/" ); 11 | 12 | out.write( new ActionEnter( request, rootPath ).exec() ); 13 | 14 | %> -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/lang/en/images/addimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/lang/en/images/addimage.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/lang/en/images/alldeletebtnhoverskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/lang/en/images/alldeletebtnhoverskin.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/lang/en/images/alldeletebtnupskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/lang/en/images/alldeletebtnupskin.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/lang/en/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/lang/en/images/background.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/lang/en/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/lang/en/images/button.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/lang/en/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/lang/en/images/copy.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/lang/en/images/deletedisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/lang/en/images/deletedisable.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/lang/en/images/deleteenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/lang/en/images/deleteenable.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/lang/en/images/listbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/lang/en/images/listbackground.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/lang/en/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/lang/en/images/localimage.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/lang/en/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/lang/en/images/music.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/lang/en/images/rotateleftdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/lang/en/images/rotateleftdisable.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/lang/en/images/rotateleftenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/lang/en/images/rotateleftenable.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/lang/en/images/rotaterightdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/lang/en/images/rotaterightdisable.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/lang/en/images/rotaterightenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/lang/en/images/rotaterightenable.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/lang/en/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/lang/en/images/upload.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/lang/zh-cn/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/lang/zh-cn/images/copy.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/lang/zh-cn/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/lang/zh-cn/images/localimage.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/lang/zh-cn/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/lang/zh-cn/images/music.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/lang/zh-cn/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/lang/zh-cn/images/upload.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/default/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/themes/default/images/anchor.gif -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/default/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/themes/default/images/arrow.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/default/images/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/themes/default/images/arrow_down.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/default/images/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/themes/default/images/arrow_up.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/default/images/button-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/themes/default/images/button-bg.gif -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/default/images/cancelbutton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/themes/default/images/cancelbutton.gif -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/default/images/charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/themes/default/images/charts.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/default/images/cursor_h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/themes/default/images/cursor_h.gif -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/default/images/cursor_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/themes/default/images/cursor_h.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/default/images/cursor_v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/themes/default/images/cursor_v.gif -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/default/images/cursor_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/themes/default/images/cursor_v.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/default/images/dialog-title-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/themes/default/images/dialog-title-bg.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/default/images/filescan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/themes/default/images/filescan.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/default/images/highlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/themes/default/images/highlighted.gif -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/default/images/icons-all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/themes/default/images/icons-all.gif -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/default/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/themes/default/images/icons.gif -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/default/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/themes/default/images/icons.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/default/images/loaderror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/themes/default/images/loaderror.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/default/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/themes/default/images/loading.gif -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/default/images/lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/themes/default/images/lock.gif -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/default/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/themes/default/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/default/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/themes/default/images/pagebreak.gif -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/default/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/themes/default/images/scale.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/default/images/sortable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/themes/default/images/sortable.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/default/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/themes/default/images/spacer.gif -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/default/images/sparator_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/themes/default/images/sparator_v.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/default/images/table-cell-align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/themes/default/images/table-cell-align.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/default/images/tangram-colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/themes/default/images/tangram-colorpicker.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/default/images/toolbar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/themes/default/images/toolbar_bg.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/default/images/unhighlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/themes/default/images/unhighlighted.gif -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/default/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/themes/default/images/upload.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/default/images/videologo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/themes/default/images/videologo.gif -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/default/images/word.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/themes/default/images/word.gif -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/default/images/wordpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujun728/jun_api_service/d359308224aae06e2d623d86952383d575f13791/jun_layui_jfinal/static/libs/ueditor/themes/default/images/wordpaste.png -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/ueditor/themes/iframe.css: -------------------------------------------------------------------------------- 1 | /*可以在这里添加你自己的css*/ 2 | -------------------------------------------------------------------------------- /jun_layui_jfinal/static/libs/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:d