├── README.md ├── ftd-api ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── gjxx │ └── ftd │ ├── entity │ └── Company.java │ └── service │ └── CompanyService.java ├── ftd-core ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── gjxx │ └── core │ ├── common │ ├── HistoryVideoMsg.java │ ├── LocationInfoQueryMsg.java │ ├── LocationInfoUploadMsg.java │ ├── MediaFileMsg.java │ ├── PackageData.java │ ├── ParamQueryMsg.java │ └── PhotoScreenMsg.java │ ├── constant │ └── RedisConstant.java │ ├── exception │ ├── ErrorCode.java │ └── SystemException.java │ ├── kit │ ├── CookieKit.java │ └── TimeKit.java │ ├── type │ └── LogType.java │ └── utils │ ├── AESCription.java │ ├── ByteList.java │ ├── ByteUtils.java │ ├── Collections3.java │ ├── DateUtil.java │ ├── ErrorCodeType.java │ ├── GetIp.java │ ├── JsonUtils.java │ ├── Jwt.java │ ├── MD5Encoder.java │ ├── OSSUnit.java │ ├── ObjectUtil.java │ ├── PropertiesUtil.java │ ├── RedisUtil.java │ ├── Reflections.java │ ├── ResultEntity.java │ ├── StringUtil.java │ ├── VerifyObject.java │ ├── VideoParam.java │ └── VideoReturn.java ├── ftd-service ├── pom.xml └── src │ └── main │ ├── assembly │ └── assembly.xml │ ├── java │ └── com │ │ └── gjxx │ │ └── ftd │ │ ├── FtdServiceApplication.java │ │ ├── dao │ │ └── CompanyMapper.java │ │ └── service │ │ └── impl │ │ └── CompanyServiceImpl.java │ └── resources │ ├── META-INF │ └── spring │ │ ├── applicationContext.xml │ │ └── dubbo-service-provider.xml │ ├── db.properties │ ├── log4j.properties │ └── mapping │ └── CompanyMapper.xml ├── ftd-system-api ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── gjxx │ └── system │ ├── entity │ ├── DictDefine.java │ ├── DictDetail.java │ ├── Menu.java │ ├── OperateLog.java │ ├── Role.java │ ├── RoleMenuRel.java │ ├── UserBack.java │ └── UserRoleRel.java │ └── service │ ├── DictDefineService.java │ ├── DictDetailService.java │ ├── MenuService.java │ ├── OperateLogService.java │ ├── RoleMenuRelService.java │ ├── RoleService.java │ ├── UserBackService.java │ └── UserRoleRelService.java ├── ftd-system-service ├── pom.xml └── src │ ├── main │ ├── assembly │ │ └── assembly.xml │ ├── java │ │ └── com │ │ │ └── gjxx │ │ │ └── system │ │ │ ├── SystemServiceApplication.java │ │ │ ├── dao │ │ │ ├── DictDefineMapper.java │ │ │ ├── DictDetailMapper.java │ │ │ ├── MenuMapper.java │ │ │ ├── OperateLogMapper.java │ │ │ ├── RoleMapper.java │ │ │ ├── RoleMenuRelMapper.java │ │ │ ├── UserBackMapper.java │ │ │ └── UserRoleRelMapper.java │ │ │ └── service │ │ │ └── impl │ │ │ ├── DictDefineServiceImpl.java │ │ │ ├── DictDetailServiceImpl.java │ │ │ ├── MenuServiceImpl.java │ │ │ ├── OperateLogServiceImpl.java │ │ │ ├── RoleMenuRelServiceImpl.java │ │ │ ├── RoleServiceImpl.java │ │ │ ├── UserBackServiceImpl.java │ │ │ └── UserRoleRelServiceImpl.java │ └── resources │ │ ├── META-INF │ │ └── spring │ │ │ ├── applicationContext.xml │ │ │ └── dubbo-system-provider.xml │ │ ├── db.properties │ │ ├── log4j.properties │ │ └── mapping │ │ ├── DictDefineMapper.xml │ │ ├── DictDetailMapper.xml │ │ ├── MenuMapper.xml │ │ ├── OperateLogMapper.xml │ │ ├── RoleMapper.xml │ │ ├── RoleMenuRelMapper.xml │ │ ├── UserBackMapper.xml │ │ └── UserRoleRelMapper.xml │ └── test │ └── java │ └── com │ └── gjxx │ └── system │ └── TestApp.java ├── ftd-web ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── gjxx │ │ └── ftd │ │ ├── common │ │ ├── AuthenInterceptor.java │ │ ├── Authentication.java │ │ ├── DownLoadServlet.java │ │ ├── GroupCarTree.java │ │ ├── LoginInterceptor.java │ │ ├── ReturnCodeType.java │ │ ├── Scheduler.java │ │ ├── SimpleResponse.java │ │ ├── TempDemo.java │ │ └── VideoRtmpParam.java │ │ └── controller │ │ ├── BaseController.java │ │ ├── gps │ │ └── CompanyController.java │ │ └── sys │ │ ├── DictDefineController.java │ │ ├── DictDetailController.java │ │ ├── LoginController.java │ │ ├── MenuController.java │ │ ├── OperateLogController.java │ │ ├── RoleController.java │ │ └── UserBackController.java │ ├── resources │ ├── config │ │ ├── log4j.properties │ │ ├── oss.properties │ │ └── redis.properties │ └── spring │ │ ├── ApplicationContext.xml │ │ ├── dubbo-consumer.xml │ │ ├── scheduler.xml │ │ └── spring-mvc.xml │ └── webapp │ ├── WEB-INF │ ├── mvc-dispatcher-servlet.xml │ ├── pages │ │ ├── ftd │ │ │ ├── common │ │ │ │ ├── footer.jsp │ │ │ │ ├── header.jsp │ │ │ │ ├── tag.jsp │ │ │ │ └── teFooter.jsp │ │ │ └── company │ │ │ │ ├── addCompany.jsp │ │ │ │ ├── listCompany.jsp │ │ │ │ └── viewCompany.jsp │ │ └── sys │ │ │ ├── common │ │ │ ├── footer.jsp │ │ │ ├── header.jsp │ │ │ └── tag.jsp │ │ │ ├── dictDefine │ │ │ ├── addDictDefine.jsp │ │ │ ├── listDictDefine.jsp │ │ │ └── viewDictDefine.jsp │ │ │ ├── dictDetail │ │ │ ├── addDictDetail.jsp │ │ │ ├── listDictDetail.jsp │ │ │ └── viewDictDetail.jsp │ │ │ ├── home.jsp │ │ │ ├── index.jsp │ │ │ ├── login.jsp │ │ │ ├── menu │ │ │ ├── addMenu.jsp │ │ │ ├── listMenu.jsp │ │ │ └── viewMenu.jsp │ │ │ ├── operateLog │ │ │ ├── addOperateLog.jsp │ │ │ ├── listOperateLog.jsp │ │ │ └── viewOperateLog.jsp │ │ │ ├── role │ │ │ ├── addRole.jsp │ │ │ ├── listRole.jsp │ │ │ ├── menuTree.jsp │ │ │ └── viewRole.jsp │ │ │ ├── roleMenuRel │ │ │ ├── addRoleMenuRel.jsp │ │ │ ├── listRoleMenuRel.jsp │ │ │ └── viewRoleMenuRel.jsp │ │ │ ├── userBack │ │ │ ├── addUserBack.jsp │ │ │ ├── listUserBack.jsp │ │ │ ├── updatePassword.jsp │ │ │ └── viewUserBack.jsp │ │ │ └── userRoleRel │ │ │ ├── addUserRoleRel.jsp │ │ │ ├── listUserRoleRel.jsp │ │ │ └── viewUserRoleRel.jsp │ └── web.xml │ ├── favicon.ico │ └── static │ ├── assets │ ├── css │ │ ├── ace.css │ │ ├── basic │ │ │ └── smart_wizard.css │ │ ├── common.css │ │ ├── font-awesome.css │ │ ├── font-awesome.min93e3.css │ │ ├── home │ │ │ └── home.css │ │ ├── index │ │ │ ├── beyond.min.css │ │ │ ├── bootstrap.min.css │ │ │ ├── index.css │ │ │ └── tabPanel.css │ │ ├── jqpagination.css │ │ ├── login.css │ │ ├── login │ │ │ └── login.css │ │ ├── main.css │ │ ├── more_inf │ │ │ └── more_inf.css │ │ ├── style.css │ │ └── system │ │ │ └── system.css │ ├── data │ │ └── mappath.json │ ├── fonts │ │ ├── fontawesome-webfont.woff │ │ └── glyphicons-halflings-regular.woff │ ├── img │ │ ├── QQ截图20170309101302.png │ │ ├── close_def.png │ │ ├── close_hov.png │ │ ├── downs.png │ │ ├── duihao.png │ │ ├── fengcai.jpg │ │ ├── gjxxca.gif │ │ ├── gjxxca0.png │ │ ├── header.png │ │ ├── icon2.png │ │ ├── login │ │ │ ├── bg.jpg │ │ │ ├── bgGps.jpg │ │ │ ├── freshen2.png │ │ │ ├── lock.png │ │ │ ├── login.jpg │ │ │ ├── logo.png │ │ │ ├── password.png │ │ │ ├── user.png │ │ │ ├── username.png │ │ │ └── yanzheng.png │ │ ├── logo.bg.png │ │ ├── logo_favicon.ico │ │ ├── map-car.png │ │ ├── play.png │ │ ├── top.png │ │ ├── tu.jpg │ │ └── video.png │ ├── js │ │ ├── Particleground.js │ │ ├── ace.js │ │ ├── basic │ │ │ ├── global.css │ │ │ ├── personal.css │ │ │ └── smart_wizard.css │ │ ├── elements.fileinput.js │ │ ├── home │ │ │ └── echarts.js │ │ ├── index │ │ │ ├── IpConfig.js │ │ │ ├── Utils.js │ │ │ ├── beyond.min.js │ │ │ ├── bootstrap.min.js │ │ │ ├── endmenu.js │ │ │ ├── getUrlValue.js │ │ │ ├── index │ │ │ │ ├── endmenu.js │ │ │ │ └── menu.js │ │ │ ├── initSet │ │ │ │ ├── Currency.js │ │ │ │ ├── Cut.js │ │ │ │ ├── Del.js │ │ │ │ ├── EventObjce.js │ │ │ │ ├── ExcelImport.js │ │ │ │ ├── Extern.js │ │ │ │ ├── IpConfig.js │ │ │ │ ├── Teachfa.js │ │ │ │ ├── Tree.js │ │ │ │ ├── Utils.js │ │ │ │ ├── acquiesce.js │ │ │ │ ├── change.js │ │ │ │ ├── detailde.js │ │ │ │ ├── earamap.js │ │ │ │ ├── fileAddField.js │ │ │ │ ├── fingerprint.js │ │ │ │ ├── getId.js │ │ │ │ ├── modalConSet.js │ │ │ │ ├── modalSet.js │ │ │ │ ├── print.js │ │ │ │ ├── readIDCard.js │ │ │ │ ├── selectSet.js │ │ │ │ ├── sign.js │ │ │ │ ├── stamp.js │ │ │ │ ├── studentsPay.js │ │ │ │ ├── studyTime.js │ │ │ │ ├── table_init.js │ │ │ │ ├── tableconSet.js │ │ │ │ ├── tableinitSet.js │ │ │ │ ├── update.js │ │ │ │ ├── upload.js │ │ │ │ └── validateMs.js │ │ │ ├── jquery-1.11.2.min.js │ │ │ ├── jquery-2.0.3.min.js │ │ │ ├── jquery.cookie.js │ │ │ ├── jquery.leoweather.min.js │ │ │ ├── login │ │ │ │ ├── login.js │ │ │ │ └── loginout.js │ │ │ ├── loginout.js │ │ │ ├── menu.js │ │ │ ├── public │ │ │ │ ├── From2Json.js │ │ │ │ ├── Hex2Base64.js │ │ │ │ ├── ImportJs.js │ │ │ │ ├── PageUtils.js │ │ │ │ ├── SelectFromCtr.js │ │ │ │ └── jquery.fieldtip.js │ │ │ ├── skins.min.js │ │ │ ├── tabPanel.js │ │ │ ├── urlvalue │ │ │ │ └── getUrlValue.js │ │ │ └── zzsc.js │ │ ├── jquery-1.11.2.min.js │ │ ├── jquery-2.0.3.min.js │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ ├── jquery.tips.js │ │ ├── login │ │ │ ├── jquery-2.1.4.min.js │ │ │ └── login.js │ │ ├── main.js │ │ ├── more_inf │ │ │ └── more_inf.js │ │ ├── system │ │ │ └── system.js │ │ ├── system_par │ │ │ ├── system_par.js │ │ │ └── system_par_layui.js │ │ └── verificationNumbers.js │ └── scripts │ │ ├── dinky.js │ │ └── jquery-2.1.4.min.js │ ├── ckplayer │ ├── ckplayer.js │ ├── ckplayer.min.js │ ├── ckplayer.swf │ ├── ckplayer.xml │ ├── language.xml │ └── style.xml │ ├── component │ ├── base.js │ └── calendar │ │ ├── calendar.css │ │ ├── calendar.js │ │ ├── demo │ │ └── calendar.html │ │ ├── images │ │ ├── btn-next.png │ │ ├── btn-prev.png │ │ └── info.png │ │ ├── readme.md │ │ ├── themes │ │ └── grace │ │ │ └── skins │ │ │ └── default │ │ │ └── skin.css │ │ └── videoCalendar.js │ ├── css │ ├── ace-skins.min.css │ ├── ace.min.css │ ├── adl │ │ └── company.css │ ├── bootstrap.min.css │ ├── compare │ │ └── police.css │ ├── font-awesome.min93e3.css │ ├── gps │ │ ├── common │ │ │ └── monitor.css │ │ ├── device │ │ │ └── device.css │ │ ├── mediaFile │ │ │ └── mediaFile.css │ │ ├── onlineCar │ │ │ ├── monitor.css │ │ │ └── onlineCar.css │ │ ├── trajectory │ │ │ └── trajectory.css │ │ └── videoPlayback │ │ │ └── videoPlayback.css │ ├── home.css │ ├── home │ │ ├── animate.min.css │ │ ├── bootstrap.min14ed.css │ │ ├── demo │ │ │ └── webuploader-demo.min.css │ │ ├── font-awesome.min93e3.css │ │ └── style.min862f.css │ ├── index │ │ ├── beyond.min.css │ │ ├── index.css │ │ ├── tabPanel.css │ │ └── theme.css │ ├── inq │ │ └── InformationQuery.css │ ├── login │ │ └── login.css │ ├── metroStyle │ │ ├── img │ │ │ ├── line_conn.png │ │ │ ├── loading.gif │ │ │ ├── metro.gif │ │ │ └── metro.png │ │ └── metroStyle.css │ ├── ops │ │ ├── order.css │ │ ├── police.css │ │ └── vehicle │ │ │ ├── fonts │ │ │ ├── icomoon.eot │ │ │ ├── icomoon.svg │ │ │ ├── icomoon.ttf │ │ │ └── icomoon.woff │ │ │ ├── main1119.css │ │ │ ├── monitor.css │ │ │ ├── monitorstyle.css │ │ │ ├── pagerows.css │ │ │ ├── theme.css │ │ │ ├── themepage.css │ │ │ ├── trackstyle.css │ │ │ └── vehicleMon.css │ ├── page.rowsbox.css │ ├── printtemplate │ │ ├── business_license.css │ │ ├── driverlicense.css │ │ ├── firsttrialfailure.css │ │ ├── firsttrialsuccess.css │ │ ├── idea.css │ │ ├── layui.css │ │ ├── license2.css │ │ ├── note.css │ │ ├── note2.css │ │ ├── note3.css │ │ ├── note4.css │ │ ├── printstyle.css │ │ └── transportation.css │ ├── public │ │ └── global.css │ ├── reveal.css │ ├── sta │ │ ├── main1119.css │ │ └── staAnalysis.css │ ├── style.css │ ├── system │ │ ├── management.css │ │ ├── system.css │ │ └── updatePassword.css │ ├── tools │ │ └── Hui-iconfont_v1.0.8 │ │ │ └── 1.0.8 │ │ │ ├── demo.html │ │ │ ├── iconfont.css │ │ │ ├── iconfont.eot │ │ │ ├── iconfont.svg │ │ │ ├── iconfont.ttf │ │ │ └── iconfont.woff │ └── zTreeStyle │ │ ├── img │ │ ├── diy │ │ │ ├── 1_close.png │ │ │ ├── 1_open.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ ├── 9.png │ │ │ ├── car.png │ │ │ ├── carNo.png │ │ │ ├── carWarning.png │ │ │ └── map-car.png │ │ ├── line_conn.gif │ │ ├── loading.gif │ │ ├── zTreeStandard.gif │ │ └── zTreeStandard.png │ │ └── zTreeStyle.css │ ├── flowplayer │ ├── flowplayer-3.2.18.swf │ ├── flowplayer-3.2.8.min.js │ ├── flowplayer.controls-3.2.16.swf │ └── flowplayer.rtmp-3.2.8.swf │ ├── fonts │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont93e3.eot │ ├── fontawesome-webfont93e3.svg │ ├── fontawesome-webfont93e3.ttf │ ├── fontawesome-webfont93e3.woff │ ├── fontawesome-webfont93e3.woff2 │ ├── fontawesome-webfontd41d.eot │ └── glyphicons-halflings-regular.woff │ ├── img │ ├── area │ │ ├── cbl.png │ │ ├── cfwyy.png │ │ ├── dt.png │ │ ├── gc.png │ │ ├── hc.png │ │ ├── qc.png │ │ ├── sc.png │ │ ├── wzyy.png │ │ └── ycjj.png │ ├── b.png │ ├── bian.png │ ├── bianji.png │ ├── bu.png │ ├── capacity.png │ ├── chakan.png │ ├── chakanditu.png │ ├── circle1.png │ ├── circle2.png │ ├── dright-img.png │ ├── driver19_19.png │ ├── header.png │ ├── home │ │ ├── arrow-down.png │ │ ├── arrow-up.png │ │ ├── bg.png │ │ ├── capacity-car.png │ │ ├── capacity-plaza.png │ │ ├── capacity-train.png │ │ ├── carNum.png │ │ ├── carRed.png │ │ ├── carWhite.png │ │ ├── clock.png │ │ ├── companyNum.png │ │ ├── dot1.png │ │ ├── dot2.png │ │ ├── dot3.png │ │ ├── dot4.png │ │ ├── driverNum.png │ │ ├── emphasisareaicon │ │ │ ├── capacity-airport.png │ │ │ ├── capacity-car.png │ │ │ ├── capacity-harbor.png │ │ │ ├── capacity-plaza.png │ │ │ ├── capacity-scenicarea.png │ │ │ ├── capacity-school.png │ │ │ ├── capacity-themall.png │ │ │ └── capacity-train.png │ │ ├── gif │ │ │ ├── loading.gif │ │ │ └── police-alarm.gif │ │ ├── hArea.png │ │ ├── hCompany.png │ │ ├── hDriver.png │ │ ├── hHotmap.png │ │ ├── hLiner.png │ │ ├── hNetcar.png │ │ ├── hNote.png │ │ ├── hOrder.png │ │ ├── hPlain.png │ │ ├── hRealTim.png │ │ ├── hTime.png │ │ ├── hWaring.png │ │ ├── header.png │ │ ├── htodo.png │ │ ├── logo.png │ │ ├── order-1.png │ │ ├── order-2.png │ │ ├── order.png │ │ ├── taxiRed.png │ │ ├── taxiWhite.png │ │ └── waring.png │ ├── hr.png │ ├── huan.png │ ├── icon │ │ ├── arrow.png │ │ ├── contrast.png │ │ ├── delete.png │ │ ├── edit.png │ │ ├── licence.png │ │ ├── notice.png │ │ ├── orderInfo.png │ │ ├── query.png │ │ ├── receive.png │ │ ├── rehear.png │ │ ├── t_jiankong.png │ │ ├── time_16x14.png │ │ ├── top_arr.png │ │ ├── trace.png │ │ └── trial.png │ ├── jia.png │ ├── jian.png │ ├── jzx.gif │ ├── kc.png │ ├── login.jpg │ ├── login │ │ ├── login.jpg │ │ ├── password.png │ │ ├── username.png │ │ └── yanzheng.png │ ├── logo.png │ ├── logo_L.png │ ├── map │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── asyicon.png │ │ ├── blue.png │ │ ├── bluecar_16_20.png │ │ ├── blueline_16x20.png │ │ ├── blueperson.png │ │ ├── mapend_26x36.png │ │ ├── mapstart_26x36.png │ │ ├── none.png │ │ ├── red.png │ │ ├── redline_16x20.png │ │ ├── redperson.png │ │ ├── redprson_16x20.png │ │ ├── startmap.png │ │ ├── vehicle.png │ │ └── yellow.png │ ├── poi.png │ ├── police-green.png │ ├── police-red.png │ ├── police-yellow.png │ ├── police.png │ ├── printtemplate │ │ ├── business_license.png │ │ ├── driverlicense.png │ │ ├── photoshop.png │ │ ├── print-1.png │ │ ├── print-2.png │ │ └── transport.jpg │ ├── readme │ │ ├── company.jpg │ │ ├── index.jpg │ │ ├── login.jpg │ │ ├── tableCDM.jpg │ │ ├── 参数明细.jpg │ │ ├── 系统参数.jpg │ │ ├── 系统子菜单.jpg │ │ ├── 系统菜单管理.jpg │ │ ├── 角色信息.jpg │ │ └── 角色权限设置.jpg │ ├── shenpi.png │ ├── sortUp23_21.png │ ├── sortUpHover23_21.png │ ├── sortdown23_21.png │ ├── sortdownHover23_21.png │ ├── sta │ │ ├── clock.png │ │ ├── money16_18.png │ │ ├── note12_18.png │ │ ├── tableTime_12x12.png │ │ └── topImg.png │ ├── t_guiji.png │ ├── t_jiankong.png │ ├── t_xiangqing.png │ ├── timg.png │ ├── timg2.png │ ├── topscoll.jpg │ ├── xiangqing.png │ └── zc.png │ ├── js │ ├── common.js │ ├── common │ │ ├── IDcardtype.js │ │ ├── basicData.js │ │ ├── btnRes.js │ │ ├── commonpage.js │ │ ├── countTools.js │ │ ├── gaode.js │ │ ├── jquery-1.11.2.min.js │ │ ├── jquery-1.4.4.min.js │ │ ├── jquery-2.1.4.min.js │ │ ├── jquery.page-1.0.01.min.js │ │ ├── jquery.page.js │ │ ├── jquery.page1.js │ │ ├── jquery.ztree.all.js │ │ ├── layui.date.js │ │ ├── mapCenterPoint.js │ │ ├── myLayer.js │ │ ├── treeutil.js │ │ └── ueditor.all.js │ ├── ftd │ │ └── company │ │ │ ├── company.js │ │ │ ├── companyLayui.js │ │ │ └── companyPage.js │ ├── home │ │ ├── areamonitor.js │ │ ├── districtDispatcher.js │ │ ├── heatMap.js │ │ ├── information.js │ │ ├── popups.js │ │ ├── realtimecar.js │ │ ├── timesharingorder.js │ │ ├── tobedone.js │ │ └── todayorder.js │ ├── index │ │ ├── Utils.js │ │ ├── beyond.min.js │ │ ├── bootstrap.min.js │ │ ├── loginout.js │ │ ├── skins.min.js │ │ └── tabPanel.js │ ├── kit │ │ └── tree.js │ ├── login │ │ └── login.js │ ├── sys │ │ ├── dictDefine │ │ │ ├── dictDefine.js │ │ │ ├── dictDefineLayui.js │ │ │ └── dictDefinePage.js │ │ ├── dictDetail │ │ │ ├── dictDetail.js │ │ │ ├── dictDetailLayui.js │ │ │ └── dictDetailPage.js │ │ ├── menu │ │ │ ├── menu.js │ │ │ ├── menuLayui.js │ │ │ └── menuPage.js │ │ ├── operateLog │ │ │ ├── operateLog.js │ │ │ ├── operateLogLayui.js │ │ │ └── operateLogPage.js │ │ ├── role │ │ │ ├── menuTree.js │ │ │ ├── role.js │ │ │ ├── roleLayui.js │ │ │ └── rolePage.js │ │ ├── roleMenuRel │ │ │ ├── roleMenuRel.js │ │ │ ├── roleMenuRelLayui.js │ │ │ └── roleMenuRelPage.js │ │ ├── userBack │ │ │ ├── updatePassword.js │ │ │ ├── userBack.js │ │ │ ├── userBackLayui.js │ │ │ └── userBackPage.js │ │ └── userRoleRel │ │ │ ├── userRoleRel.js │ │ │ ├── userRoleRelLayui.js │ │ │ └── userRoleRelPage.js │ └── util │ │ ├── DateKit.js │ │ └── commonUtil.js │ ├── lib │ ├── jquery.min.js │ ├── mock-min.js │ └── moment.min.js │ ├── plugins │ ├── 441800.json │ ├── bootstrap-select │ │ ├── css │ │ │ ├── bootstrap-select.css │ │ │ ├── bootstrap-select.css.map │ │ │ └── bootstrap-select.min.css │ │ └── js │ │ │ ├── bootstrap-select.js │ │ │ ├── bootstrap-select.js.map │ │ │ ├── bootstrap-select.min.js │ │ │ └── i18n │ │ │ ├── defaults-ar_AR.js │ │ │ ├── defaults-ar_AR.min.js │ │ │ ├── defaults-bg_BG.js │ │ │ ├── defaults-bg_BG.min.js │ │ │ ├── defaults-cro_CRO.js │ │ │ ├── defaults-cro_CRO.min.js │ │ │ ├── defaults-cs_CZ.js │ │ │ ├── defaults-cs_CZ.min.js │ │ │ ├── defaults-da_DK.js │ │ │ ├── defaults-da_DK.min.js │ │ │ ├── defaults-de_DE.js │ │ │ ├── defaults-de_DE.min.js │ │ │ ├── defaults-en_US.js │ │ │ ├── defaults-en_US.min.js │ │ │ ├── defaults-es_CL.js │ │ │ ├── defaults-es_CL.min.js │ │ │ ├── defaults-es_ES.js │ │ │ ├── defaults-es_ES.min.js │ │ │ ├── defaults-eu.js │ │ │ ├── defaults-eu.min.js │ │ │ ├── defaults-fa_IR.js │ │ │ ├── defaults-fa_IR.min.js │ │ │ ├── defaults-fi_FI.js │ │ │ ├── defaults-fi_FI.min.js │ │ │ ├── defaults-fr_FR.js │ │ │ ├── defaults-fr_FR.min.js │ │ │ ├── defaults-hu_HU.js │ │ │ ├── defaults-hu_HU.min.js │ │ │ ├── defaults-id_ID.js │ │ │ ├── defaults-id_ID.min.js │ │ │ ├── defaults-it_IT.js │ │ │ ├── defaults-it_IT.min.js │ │ │ ├── defaults-ko_KR.js │ │ │ ├── defaults-ko_KR.min.js │ │ │ ├── defaults-lt_LT.js │ │ │ ├── defaults-lt_LT.min.js │ │ │ ├── defaults-nb_NO.js │ │ │ ├── defaults-nb_NO.min.js │ │ │ ├── defaults-nl_NL.js │ │ │ ├── defaults-nl_NL.min.js │ │ │ ├── defaults-pl_PL.js │ │ │ ├── defaults-pl_PL.min.js │ │ │ ├── defaults-pt_BR.js │ │ │ ├── defaults-pt_BR.min.js │ │ │ ├── defaults-pt_PT.js │ │ │ ├── defaults-pt_PT.min.js │ │ │ ├── defaults-ro_RO.js │ │ │ ├── defaults-ro_RO.min.js │ │ │ ├── defaults-ru_RU.js │ │ │ ├── defaults-ru_RU.min.js │ │ │ ├── defaults-sk_SK.js │ │ │ ├── defaults-sk_SK.min.js │ │ │ ├── defaults-sl_SI.js │ │ │ ├── defaults-sl_SI.min.js │ │ │ ├── defaults-sv_SE.js │ │ │ ├── defaults-sv_SE.min.js │ │ │ ├── defaults-tr_TR.js │ │ │ ├── defaults-tr_TR.min.js │ │ │ ├── defaults-ua_UA.js │ │ │ ├── defaults-ua_UA.min.js │ │ │ ├── defaults-zh_CN.js │ │ │ ├── defaults-zh_CN.min.js │ │ │ ├── defaults-zh_TW.js │ │ │ └── defaults-zh_TW.min.js │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ ├── china.js │ ├── city-picker │ │ └── dist │ │ │ ├── css │ │ │ └── city-picker.css │ │ │ ├── images │ │ │ └── drop-arrow.png │ │ │ └── js │ │ │ ├── city-picker.data.js │ │ │ ├── city-picker.data.min.js │ │ │ ├── city-picker.js │ │ │ └── city-picker.min.js │ ├── css │ │ ├── 4095-rtl.min.css │ │ ├── animate.min.css │ │ ├── beyond-rtl.min.css │ │ ├── beyond.min.css │ │ ├── bootstrap-rtl.min.css │ │ ├── bootstrap.min.css │ │ ├── dataTables.bootstrap.css │ │ ├── demo.min.css │ │ ├── font-awesome.min.css │ │ ├── googleapis-fonts │ │ │ ├── M2Jd71oPJhLKp0zdtTvoM40tgx99jmYGv_xzYuwd1rU.woff2 │ │ │ ├── M2Jd71oPJhLKp0zdtTvoM7YHq4FgHI02B8rPccK0FJQ.woff2 │ │ │ ├── M2Jd71oPJhLKp0zdtTvoMxgy2Fsj5sj3EzlXpqVXRKo.woff2 │ │ │ ├── ODelI1aHBYDBqgeIAH2zlC2Q8seG17bfDXYR_jUsrzg.woff2 │ │ │ ├── ODelI1aHBYDBqgeIAH2zlNOAHFN6BivSraYkjhveRHY.woff2 │ │ │ ├── ODelI1aHBYDBqgeIAH2zlNV_2ngZ8dMf8fLgjYEouxg.woff2 │ │ │ ├── fonts.css │ │ │ ├── fpTVHK8qsXbIeTHTrnQH6CzM2XYAq8cDhaXsrN8WXcA.woff2 │ │ │ ├── fpTVHK8qsXbIeTHTrnQH6E78GtRp3lhchupCJNw8t58.woff2 │ │ │ ├── fpTVHK8qsXbIeTHTrnQH6GQKuzMuncr0JB710wa2dPI.woff2 │ │ │ ├── fpTVHK8qsXbIeTHTrnQH6Lpx497t94oDua8KfAL9f-E.woff2 │ │ │ ├── fpTVHK8qsXbIeTHTrnQH6MAjkyiewWYrWZc50I8hK7I.woff2 │ │ │ ├── fpTVHK8qsXbIeTHTrnQH6OXKTZYPNtG1yMB_YJSqlic.woff2 │ │ │ ├── toadOcfmlt9b38dHJxOBGCOFnW3Jk0f09zW_Yln67Ac.woff2 │ │ │ ├── toadOcfmlt9b38dHJxOBGClYwVOhDRq2vbpGRTZ7bbs.woff2 │ │ │ ├── toadOcfmlt9b38dHJxOBGDRVvBvQIc1z78c__uoBcyI.woff2 │ │ │ ├── toadOcfmlt9b38dHJxOBGD_j0nMiB9fPhg_k1wdK2h0.woff2 │ │ │ ├── toadOcfmlt9b38dHJxOBGDovqjS_dXPZszO_XltPdNg.woff2 │ │ │ ├── toadOcfmlt9b38dHJxOBGEo0As1BFRXtCDhS66znb_k.woff2 │ │ │ ├── toadOcfmlt9b38dHJxOBGFKFh1TDTPrUZWzVp6FtpG8.woff2 │ │ │ ├── toadOcfmlt9b38dHJxOBGFxe-GPfKKFmiXaJ_Q0GFr8.woff2 │ │ │ └── toadOcfmlt9b38dHJxOBGOode0-EuMkY--TSyExeINg.woff2 │ │ ├── index.css │ │ ├── public │ │ │ ├── global.css │ │ │ └── personal.css │ │ ├── skins │ │ │ ├── azure.min.css │ │ │ ├── black.min.css │ │ │ ├── blue.min.css │ │ │ ├── darkblue.min.css │ │ │ ├── darkred.min.css │ │ │ ├── deepblue.min.css │ │ │ ├── gray.min.css │ │ │ ├── green.min.css │ │ │ ├── orange.min.css │ │ │ ├── pink.min.css │ │ │ ├── purple.min.css │ │ │ └── teal.min.css │ │ ├── swiper.css │ │ ├── typicons.min.css │ │ └── weather-icons.min.css │ ├── echarts.js │ ├── echarts │ │ ├── css │ │ │ └── echarts.css │ │ ├── js │ │ │ ├── echarts.js │ │ │ └── home │ │ │ │ ├── dirverLine.js │ │ │ │ ├── headerChart.js │ │ │ │ ├── onLine.js │ │ │ │ └── time.js │ │ └── json │ │ │ └── hebei.json │ ├── fileInput │ │ ├── css │ │ │ └── fileinput.min.css │ │ └── js │ │ │ ├── fileinput.min.js │ │ │ └── zh.js │ ├── font-awesome-4.7.0 │ │ ├── HELP-US-OUT.txt │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── less │ │ │ ├── animated.less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── screen-reader.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ └── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ ├── fontIconPicker-2.0.0 │ │ ├── README.md │ │ ├── bower.json │ │ ├── css │ │ │ ├── iconpicker.eot │ │ │ ├── iconpicker.svg │ │ │ ├── iconpicker.ttf │ │ │ ├── iconpicker.woff │ │ │ ├── jquery.fonticonpicker.css │ │ │ └── jquery.fonticonpicker.min.css │ │ ├── jquery.fonticonpicker.js │ │ ├── jquery.fonticonpicker.min.js │ │ └── themes │ │ │ ├── bootstrap-theme │ │ │ ├── jquery.fonticonpicker.bootstrap.css │ │ │ └── jquery.fonticonpicker.bootstrap.min.css │ │ │ ├── dark-grey-theme │ │ │ ├── jquery.fonticonpicker.darkgrey.css │ │ │ └── jquery.fonticonpicker.darkgrey.min.css │ │ │ ├── grey-theme │ │ │ ├── jquery.fonticonpicker.grey.css │ │ │ └── jquery.fonticonpicker.grey.min.css │ │ │ └── inverted-theme │ │ │ ├── jquery.fonticonpicker.inverted.css │ │ │ └── jquery.fonticonpicker.inverted.min.css │ ├── fonts │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ ├── typicons.eot │ │ ├── typicons.svg │ │ ├── typicons.ttf │ │ ├── typicons.woff │ │ ├── weathericons-regular-webfont.eot │ │ ├── weathericons-regular-webfont.svg │ │ ├── weathericons-regular-webfont.ttf │ │ └── weathericons-regular-webfont.woff │ ├── fuzzySearch │ │ ├── css │ │ │ ├── demo.css │ │ │ └── zTreeStyle │ │ │ │ ├── img │ │ │ │ ├── diy │ │ │ │ │ ├── 1_close.png │ │ │ │ │ ├── 1_open.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ ├── 7.png │ │ │ │ │ ├── 8.png │ │ │ │ │ └── 9.png │ │ │ │ ├── line_conn.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── zTreeStandard.gif │ │ │ │ └── zTreeStandard.png │ │ │ │ └── zTreeStyle.css │ │ ├── index.html │ │ └── js │ │ │ ├── fuzzysearch.js │ │ │ ├── jquery-1.4.4.min.js │ │ │ ├── jquery.ztree.all.js │ │ │ ├── jquery.ztree.core.js │ │ │ └── jquery.ztree.exhide.js │ ├── gaodemap │ │ ├── addToolbar.js │ │ ├── css │ │ │ └── main1119.css │ │ └── heatmapData.js │ ├── geoJson │ │ ├── anhui.json │ │ └── qingyuan.json │ ├── home │ │ ├── beyond.min.js │ │ └── skins.min.js │ ├── jquery.reveal.js │ ├── jquery │ │ └── jquery.page.js │ ├── layui │ │ ├── css │ │ │ ├── layui.css │ │ │ ├── layui.mobile.css │ │ │ └── modules │ │ │ │ ├── code.css │ │ │ │ ├── laydate │ │ │ │ └── default │ │ │ │ │ └── laydate.css │ │ │ │ └── layer │ │ │ │ └── default │ │ │ │ ├── icon-ext.png │ │ │ │ ├── icon.png │ │ │ │ ├── layer.css │ │ │ │ ├── loading-0.gif │ │ │ │ ├── loading-1.gif │ │ │ │ └── loading-2.gif │ │ ├── font │ │ │ ├── iconfont.eot │ │ │ ├── iconfont.svg │ │ │ ├── iconfont.ttf │ │ │ └── iconfont.woff │ │ ├── images │ │ │ └── face │ │ │ │ ├── 0.gif │ │ │ │ ├── 1.gif │ │ │ │ ├── 10.gif │ │ │ │ ├── 11.gif │ │ │ │ ├── 12.gif │ │ │ │ ├── 13.gif │ │ │ │ ├── 14.gif │ │ │ │ ├── 15.gif │ │ │ │ ├── 16.gif │ │ │ │ ├── 17.gif │ │ │ │ ├── 18.gif │ │ │ │ ├── 19.gif │ │ │ │ ├── 2.gif │ │ │ │ ├── 20.gif │ │ │ │ ├── 21.gif │ │ │ │ ├── 22.gif │ │ │ │ ├── 23.gif │ │ │ │ ├── 24.gif │ │ │ │ ├── 25.gif │ │ │ │ ├── 26.gif │ │ │ │ ├── 27.gif │ │ │ │ ├── 28.gif │ │ │ │ ├── 29.gif │ │ │ │ ├── 3.gif │ │ │ │ ├── 30.gif │ │ │ │ ├── 31.gif │ │ │ │ ├── 32.gif │ │ │ │ ├── 33.gif │ │ │ │ ├── 34.gif │ │ │ │ ├── 35.gif │ │ │ │ ├── 36.gif │ │ │ │ ├── 37.gif │ │ │ │ ├── 38.gif │ │ │ │ ├── 39.gif │ │ │ │ ├── 4.gif │ │ │ │ ├── 40.gif │ │ │ │ ├── 41.gif │ │ │ │ ├── 42.gif │ │ │ │ ├── 43.gif │ │ │ │ ├── 44.gif │ │ │ │ ├── 45.gif │ │ │ │ ├── 46.gif │ │ │ │ ├── 47.gif │ │ │ │ ├── 48.gif │ │ │ │ ├── 49.gif │ │ │ │ ├── 5.gif │ │ │ │ ├── 50.gif │ │ │ │ ├── 51.gif │ │ │ │ ├── 52.gif │ │ │ │ ├── 53.gif │ │ │ │ ├── 54.gif │ │ │ │ ├── 55.gif │ │ │ │ ├── 56.gif │ │ │ │ ├── 57.gif │ │ │ │ ├── 58.gif │ │ │ │ ├── 59.gif │ │ │ │ ├── 6.gif │ │ │ │ ├── 60.gif │ │ │ │ ├── 61.gif │ │ │ │ ├── 62.gif │ │ │ │ ├── 63.gif │ │ │ │ ├── 64.gif │ │ │ │ ├── 65.gif │ │ │ │ ├── 66.gif │ │ │ │ ├── 67.gif │ │ │ │ ├── 68.gif │ │ │ │ ├── 69.gif │ │ │ │ ├── 7.gif │ │ │ │ ├── 70.gif │ │ │ │ ├── 71.gif │ │ │ │ ├── 8.gif │ │ │ │ └── 9.gif │ │ ├── lay │ │ │ └── modules │ │ │ │ ├── carousel.js │ │ │ │ ├── code.js │ │ │ │ ├── element.js │ │ │ │ ├── flow.js │ │ │ │ ├── form.js │ │ │ │ ├── jquery.js │ │ │ │ ├── laydate.js │ │ │ │ ├── layedit.js │ │ │ │ ├── layer.js │ │ │ │ ├── laypage.js │ │ │ │ ├── laytpl.js │ │ │ │ ├── mobile.js │ │ │ │ ├── rate.js │ │ │ │ ├── table.js │ │ │ │ ├── tree.js │ │ │ │ ├── upload.js │ │ │ │ └── util.js │ │ ├── layui.all.js │ │ └── layui.js │ ├── maximize │ │ └── assets │ │ │ ├── css │ │ │ ├── beyond.min.css │ │ │ └── bootstrap.min.css │ │ │ └── js │ │ │ ├── beyond.min.js │ │ │ ├── bootstrap.min.js │ │ │ ├── jquery-2.0.3.min.js │ │ │ └── skins.min.js │ ├── nice-validator │ │ └── dist │ │ │ ├── images │ │ │ ├── loading.gif │ │ │ ├── validator_default.png │ │ │ └── validator_simple.png │ │ │ ├── jquery.validator.css │ │ │ ├── jquery.validator.js │ │ │ ├── jquery.validator.min.js │ │ │ └── local │ │ │ ├── en.js │ │ │ ├── ja.js │ │ │ ├── zh-CN.js │ │ │ └── zh-TW.js │ ├── swiper.js │ ├── timepicker │ │ ├── css │ │ │ ├── images │ │ │ │ ├── Thumbs.db │ │ │ │ ├── icon_calendar.gif │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ ├── jquery-ui-1.8.17.custom.css │ │ │ └── jquery-ui-timepicker-addon.css │ │ └── js │ │ │ ├── jquery-1.7.1.min.js │ │ │ ├── jquery-ui-1.8.17.custom.min.js │ │ │ ├── jquery-ui-timepicker-addon.js │ │ │ └── jquery-ui-timepicker-zh-CN.js │ ├── timepicki │ │ └── jquery-time-v0.9.7 │ │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ ├── jquery-ui-1.8.16.custom.css │ │ │ └── js │ │ │ ├── jquery-ui-1.9.2.custom.min.js │ │ │ ├── jquery-ui-timepicker-addon.js │ │ │ └── jquery-ui-timepicker-zh-CN.js │ ├── wuhan.json │ ├── xiamen.json │ └── zDialog │ │ ├── skins │ │ └── blue │ │ │ ├── Thumbs.db │ │ │ ├── dialog_cb.gif │ │ │ ├── dialog_cb.png │ │ │ ├── dialog_closebtn.gif │ │ │ ├── dialog_closebtn_over.gif │ │ │ ├── dialog_ct.gif │ │ │ ├── dialog_ct.png │ │ │ ├── dialog_lb.gif │ │ │ ├── dialog_lb.png │ │ │ ├── dialog_lt.gif │ │ │ ├── dialog_lt.png │ │ │ ├── dialog_mlm.gif │ │ │ ├── dialog_mlm.png │ │ │ ├── dialog_mrm.gif │ │ │ ├── dialog_mrm.png │ │ │ ├── dialog_rb.gif │ │ │ ├── dialog_rb.png │ │ │ ├── dialog_rt.gif │ │ │ ├── dialog_rt.png │ │ │ ├── dir.txt │ │ │ ├── icon_alert.gif │ │ │ ├── icon_dialog.gif │ │ │ ├── icon_query.gif │ │ │ └── window.gif │ │ ├── zDialog.js │ │ └── zDrag.js │ ├── scripts │ ├── dinky.js │ └── jquery-2.1.4.min.js │ └── uploads │ └── img │ ├── 1492674107462_493869.jpg │ └── 1493081111294_499401.jpg └── pom.xml /ftd-api/src/main/java/com/gjxx/ftd/service/CompanyService.java: -------------------------------------------------------------------------------- 1 | package com.gjxx.ftd.service; 2 | 3 | import java.util.Map; 4 | import java.util.List; 5 | import com.baomidou.mybatisplus.service.IService; 6 | import com.gjxx.ftd.entity.Company; 7 | 8 | /** 9 | * 企业信息表操作相关 10 | */ 11 | public interface CompanyService extends IService{ 12 | 13 | } 14 | -------------------------------------------------------------------------------- /ftd-core/src/main/java/com/gjxx/core/constant/RedisConstant.java: -------------------------------------------------------------------------------- 1 | package com.gjxx.core.constant; 2 | 3 | public class RedisConstant { 4 | /** 5 | * 数据字典key前缀 6 | */ 7 | public static final String KEY_PREFIX_DICT = "dict:"; 8 | } 9 | -------------------------------------------------------------------------------- /ftd-core/src/main/java/com/gjxx/core/exception/ErrorCode.java: -------------------------------------------------------------------------------- 1 | package com.gjxx.core.exception; 2 | 3 | /** 4 | * 异常错误代码 5 | * 6 | * @author wugang 7 | * @version 1.0 8 | */ 9 | public interface ErrorCode { 10 | 11 | /** 未知错误 */ 12 | String UNKNOW_ERROR = "0000"; 13 | 14 | /** 没有数据 */ 15 | String NODATA_ERROR = "0001"; 16 | 17 | /** 数据库错误 */ 18 | String DB_ERROR = "0002"; 19 | 20 | /** 缺少配置文件 */ 21 | String NO_CFG_FILE = "0003"; 22 | 23 | /** 配置文件中缺少数据 */ 24 | String NO_CFG_DATA = "0004"; 25 | 26 | /** 配置文件中缺少数据 */ 27 | String IO_ERROR = "0005"; 28 | 29 | /** BUSI_ERROR */ 30 | String BUSI_ERROR = "0008"; 31 | 32 | } 33 | -------------------------------------------------------------------------------- /ftd-core/src/main/java/com/gjxx/core/utils/PropertiesUtil.java: -------------------------------------------------------------------------------- 1 | package com.gjxx.core.utils; 2 | 3 | import org.springframework.stereotype.Component; 4 | 5 | import java.io.IOException; 6 | import java.util.Properties; 7 | 8 | /** 9 | * @author maogf 10 | * @date 2018/6/14 0014 10:41 11 | */ 12 | @Component 13 | public class PropertiesUtil { 14 | public static Properties getProperties(String fileName) { 15 | Properties properties = new Properties(); 16 | try { 17 | properties.load(PropertiesUtil.class.getClassLoader() 18 | .getResourceAsStream(fileName)); 19 | } catch (IOException e) { 20 | e.printStackTrace(); 21 | } 22 | return properties; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /ftd-service/src/main/java/com/gjxx/ftd/FtdServiceApplication.java: -------------------------------------------------------------------------------- 1 | package com.gjxx.ftd; 2 | 3 | import org.springframework.context.support.ClassPathXmlApplicationContext; 4 | 5 | import java.io.IOException; 6 | 7 | public class FtdServiceApplication { 8 | public static void main(String[] args) { 9 | try { 10 | ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext( 11 | "classpath:META-INF/spring/dubbo-service-provider.xml"); 12 | ctx.start(); 13 | System.out.println("服务已启动。。。"); 14 | try { 15 | System.in.read(); 16 | } catch (IOException e) { 17 | e.printStackTrace(); 18 | } 19 | } catch (Exception e) { 20 | e.printStackTrace(); 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ftd-service/src/main/java/com/gjxx/ftd/dao/CompanyMapper.java: -------------------------------------------------------------------------------- 1 | package com.gjxx.ftd.dao; 2 | 3 | import com.baomidou.mybatisplus.mapper.BaseMapper; 4 | import com.gjxx.ftd.entity.Company; 5 | 6 | /** 7 | * 企业信息表操作相关 8 | */ 9 | public interface CompanyMapper extends BaseMapper{ 10 | 11 | } 12 | -------------------------------------------------------------------------------- /ftd-service/src/main/java/com/gjxx/ftd/service/impl/CompanyServiceImpl.java: -------------------------------------------------------------------------------- 1 | package com.gjxx.ftd.service.impl; 2 | 3 | import com.baomidou.mybatisplus.service.impl.ServiceImpl; 4 | import com.gjxx.ftd.entity.Company; 5 | import com.gjxx.ftd.service.CompanyService; 6 | import com.gjxx.ftd.dao.CompanyMapper; 7 | import org.springframework.beans.factory.annotation.Autowired; 8 | 9 | /** 10 | * 企业信息表操作相关 11 | */ 12 | public class CompanyServiceImpl extends ServiceImpl implements CompanyService { 13 | 14 | @Autowired 15 | private CompanyMapper companyMapper; 16 | 17 | } 18 | -------------------------------------------------------------------------------- /ftd-service/src/main/resources/db.properties: -------------------------------------------------------------------------------- 1 | validationQuery=SELECT 1 2 | 3 | jdbc_url=jdbc:mysql://localhost:3306/ftd?useUnicode=true&characterEncoding=UTF-8 4 | jdbc_username=root 5 | jdbc_password=123456 6 | -------------------------------------------------------------------------------- /ftd-system-api/src/main/java/com/gjxx/system/service/DictDefineService.java: -------------------------------------------------------------------------------- 1 | package com.gjxx.system.service; 2 | 3 | import com.baomidou.mybatisplus.service.IService; 4 | import com.gjxx.system.entity.DictDefine; 5 | 6 | /** 7 | * 数据字典定义操作相关 8 | */ 9 | public interface DictDefineService extends IService{ 10 | 11 | } 12 | -------------------------------------------------------------------------------- /ftd-system-api/src/main/java/com/gjxx/system/service/DictDetailService.java: -------------------------------------------------------------------------------- 1 | package com.gjxx.system.service; 2 | 3 | import com.baomidou.mybatisplus.service.IService; 4 | import com.gjxx.system.entity.DictDetail; 5 | 6 | /** 7 | * 数据字典参数操作相关 8 | */ 9 | public interface DictDetailService extends IService{ 10 | 11 | } 12 | -------------------------------------------------------------------------------- /ftd-system-api/src/main/java/com/gjxx/system/service/MenuService.java: -------------------------------------------------------------------------------- 1 | package com.gjxx.system.service; 2 | 3 | import com.baomidou.mybatisplus.service.IService; 4 | import com.gjxx.system.entity.Menu; 5 | 6 | import java.util.List; 7 | 8 | /** 9 | * 菜单信息表操作相关 10 | */ 11 | public interface MenuService extends IService{ 12 | /** 13 | * 根据用户ID查询系统菜单列表 14 | * @param userId 15 | * @return 16 | */ 17 | List getAllowedMenu(Integer userId); 18 | 19 | /** 20 | * 根据ID查询所有父级对象(包括对象本身) 21 | * @param parentId 22 | * @return 23 | */ 24 | List selectParents(int parentId); 25 | 26 | } 27 | -------------------------------------------------------------------------------- /ftd-system-api/src/main/java/com/gjxx/system/service/OperateLogService.java: -------------------------------------------------------------------------------- 1 | package com.gjxx.system.service; 2 | 3 | import com.baomidou.mybatisplus.service.IService; 4 | import com.gjxx.system.entity.OperateLog; 5 | 6 | /** 7 | * 操作日志表操作相关 8 | */ 9 | public interface OperateLogService extends IService{ 10 | 11 | } 12 | -------------------------------------------------------------------------------- /ftd-system-api/src/main/java/com/gjxx/system/service/RoleMenuRelService.java: -------------------------------------------------------------------------------- 1 | package com.gjxx.system.service; 2 | 3 | import com.baomidou.mybatisplus.service.IService; 4 | import com.gjxx.system.entity.RoleMenuRel; 5 | 6 | /** 7 | * 角色菜单关系表操作相关 8 | */ 9 | public interface RoleMenuRelService extends IService{ 10 | 11 | } 12 | -------------------------------------------------------------------------------- /ftd-system-api/src/main/java/com/gjxx/system/service/RoleService.java: -------------------------------------------------------------------------------- 1 | package com.gjxx.system.service; 2 | 3 | import com.baomidou.mybatisplus.service.IService; 4 | import com.gjxx.system.entity.Role; 5 | 6 | /** 7 | * 角色信息表操作相关 8 | */ 9 | public interface RoleService extends IService{ 10 | 11 | } 12 | -------------------------------------------------------------------------------- /ftd-system-api/src/main/java/com/gjxx/system/service/UserBackService.java: -------------------------------------------------------------------------------- 1 | package com.gjxx.system.service; 2 | 3 | import com.baomidou.mybatisplus.service.IService; 4 | import com.gjxx.system.entity.UserBack; 5 | 6 | /** 7 | * 后台用户操作相关 8 | */ 9 | public interface UserBackService extends IService{ 10 | /** 11 | * 新增或修改用户 12 | * @param userBack 13 | */ 14 | boolean addUserBack(UserBack userBack); 15 | 16 | } 17 | -------------------------------------------------------------------------------- /ftd-system-api/src/main/java/com/gjxx/system/service/UserRoleRelService.java: -------------------------------------------------------------------------------- 1 | package com.gjxx.system.service; 2 | 3 | import com.baomidou.mybatisplus.service.IService; 4 | import com.gjxx.system.entity.UserRoleRel; 5 | 6 | /** 7 | * 用户角色关系表操作相关 8 | */ 9 | public interface UserRoleRelService extends IService{ 10 | 11 | } 12 | -------------------------------------------------------------------------------- /ftd-system-service/src/main/java/com/gjxx/system/dao/DictDefineMapper.java: -------------------------------------------------------------------------------- 1 | package com.gjxx.system.dao; 2 | 3 | import com.baomidou.mybatisplus.mapper.BaseMapper; 4 | import com.gjxx.system.entity.DictDefine; 5 | 6 | /** 7 | * 数据字典定义操作相关 8 | */ 9 | public interface DictDefineMapper extends BaseMapper{ 10 | 11 | } 12 | -------------------------------------------------------------------------------- /ftd-system-service/src/main/java/com/gjxx/system/dao/DictDetailMapper.java: -------------------------------------------------------------------------------- 1 | package com.gjxx.system.dao; 2 | 3 | import com.baomidou.mybatisplus.mapper.BaseMapper; 4 | import com.gjxx.system.entity.DictDetail; 5 | 6 | /** 7 | * 数据字典参数操作相关 8 | */ 9 | public interface DictDetailMapper extends BaseMapper{ 10 | 11 | } 12 | -------------------------------------------------------------------------------- /ftd-system-service/src/main/java/com/gjxx/system/dao/MenuMapper.java: -------------------------------------------------------------------------------- 1 | package com.gjxx.system.dao; 2 | 3 | import com.baomidou.mybatisplus.mapper.BaseMapper; 4 | import com.gjxx.system.entity.Menu; 5 | 6 | import java.util.List; 7 | 8 | /** 9 | * 菜单信息表操作相关 10 | */ 11 | public interface MenuMapper extends BaseMapper{ 12 | /** 13 | * 根据用户ID查询系统菜单列表 14 | * @param id 15 | * @return 16 | */ 17 | List getAllowedMenu(Integer id); 18 | } 19 | -------------------------------------------------------------------------------- /ftd-system-service/src/main/java/com/gjxx/system/dao/OperateLogMapper.java: -------------------------------------------------------------------------------- 1 | package com.gjxx.system.dao; 2 | 3 | import com.baomidou.mybatisplus.mapper.BaseMapper; 4 | import com.gjxx.system.entity.OperateLog; 5 | 6 | /** 7 | * 操作日志表操作相关 8 | */ 9 | public interface OperateLogMapper extends BaseMapper{ 10 | 11 | } 12 | -------------------------------------------------------------------------------- /ftd-system-service/src/main/java/com/gjxx/system/dao/RoleMapper.java: -------------------------------------------------------------------------------- 1 | package com.gjxx.system.dao; 2 | 3 | import com.baomidou.mybatisplus.mapper.BaseMapper; 4 | import com.gjxx.system.entity.Role; 5 | 6 | /** 7 | * 角色信息表操作相关 8 | */ 9 | public interface RoleMapper extends BaseMapper{ 10 | 11 | } 12 | -------------------------------------------------------------------------------- /ftd-system-service/src/main/java/com/gjxx/system/dao/RoleMenuRelMapper.java: -------------------------------------------------------------------------------- 1 | package com.gjxx.system.dao; 2 | 3 | import com.baomidou.mybatisplus.mapper.BaseMapper; 4 | import com.gjxx.system.entity.RoleMenuRel; 5 | 6 | /** 7 | * 角色菜单关系表操作相关 8 | */ 9 | public interface RoleMenuRelMapper extends BaseMapper{ 10 | 11 | } 12 | -------------------------------------------------------------------------------- /ftd-system-service/src/main/java/com/gjxx/system/dao/UserBackMapper.java: -------------------------------------------------------------------------------- 1 | package com.gjxx.system.dao; 2 | 3 | import com.baomidou.mybatisplus.mapper.BaseMapper; 4 | import com.gjxx.system.entity.UserBack; 5 | 6 | /** 7 | * 后台用户操作相关 8 | */ 9 | public interface UserBackMapper extends BaseMapper{ 10 | /** 11 | * 新增 12 | * @param userBack 13 | * @return 14 | */ 15 | Integer insertSelective(UserBack userBack); 16 | } 17 | -------------------------------------------------------------------------------- /ftd-system-service/src/main/java/com/gjxx/system/dao/UserRoleRelMapper.java: -------------------------------------------------------------------------------- 1 | package com.gjxx.system.dao; 2 | 3 | import com.baomidou.mybatisplus.mapper.BaseMapper; 4 | import com.gjxx.system.entity.UserRoleRel; 5 | 6 | /** 7 | * 用户角色关系表操作相关 8 | */ 9 | public interface UserRoleRelMapper extends BaseMapper{ 10 | 11 | } 12 | -------------------------------------------------------------------------------- /ftd-system-service/src/main/java/com/gjxx/system/service/impl/DictDefineServiceImpl.java: -------------------------------------------------------------------------------- 1 | package com.gjxx.system.service.impl; 2 | 3 | import com.baomidou.mybatisplus.service.impl.ServiceImpl; 4 | import com.gjxx.system.dao.DictDefineMapper; 5 | import com.gjxx.system.entity.DictDefine; 6 | import com.gjxx.system.service.DictDefineService; 7 | import org.springframework.beans.factory.annotation.Autowired; 8 | 9 | /** 10 | * 数据字典定义操作相关 11 | */ 12 | public class DictDefineServiceImpl extends ServiceImpl implements DictDefineService { 13 | 14 | @Autowired 15 | private DictDefineMapper dictDefineMapper; 16 | 17 | } 18 | -------------------------------------------------------------------------------- /ftd-system-service/src/main/java/com/gjxx/system/service/impl/DictDetailServiceImpl.java: -------------------------------------------------------------------------------- 1 | package com.gjxx.system.service.impl; 2 | 3 | import com.baomidou.mybatisplus.service.impl.ServiceImpl; 4 | import com.gjxx.system.dao.DictDetailMapper; 5 | import com.gjxx.system.entity.DictDetail; 6 | import com.gjxx.system.service.DictDetailService; 7 | import org.springframework.beans.factory.annotation.Autowired; 8 | 9 | /** 10 | * 数据字典参数操作相关 11 | */ 12 | public class DictDetailServiceImpl extends ServiceImpl implements DictDetailService { 13 | 14 | @Autowired 15 | private DictDetailMapper dictDetailMapper; 16 | 17 | } 18 | -------------------------------------------------------------------------------- /ftd-system-service/src/main/java/com/gjxx/system/service/impl/OperateLogServiceImpl.java: -------------------------------------------------------------------------------- 1 | package com.gjxx.system.service.impl; 2 | 3 | import com.baomidou.mybatisplus.service.impl.ServiceImpl; 4 | import com.gjxx.system.dao.OperateLogMapper; 5 | import com.gjxx.system.entity.OperateLog; 6 | import com.gjxx.system.service.OperateLogService; 7 | import org.springframework.beans.factory.annotation.Autowired; 8 | 9 | /** 10 | * 操作日志表操作相关 11 | */ 12 | public class OperateLogServiceImpl extends ServiceImpl implements OperateLogService { 13 | 14 | @Autowired 15 | private OperateLogMapper operateLogMapper; 16 | 17 | } 18 | -------------------------------------------------------------------------------- /ftd-system-service/src/main/java/com/gjxx/system/service/impl/RoleMenuRelServiceImpl.java: -------------------------------------------------------------------------------- 1 | package com.gjxx.system.service.impl; 2 | 3 | import com.baomidou.mybatisplus.service.impl.ServiceImpl; 4 | import com.gjxx.system.dao.RoleMenuRelMapper; 5 | import com.gjxx.system.entity.RoleMenuRel; 6 | import com.gjxx.system.service.RoleMenuRelService; 7 | import org.springframework.beans.factory.annotation.Autowired; 8 | 9 | /** 10 | * 角色菜单关系表操作相关 11 | */ 12 | public class RoleMenuRelServiceImpl extends ServiceImpl implements RoleMenuRelService { 13 | 14 | @Autowired 15 | private RoleMenuRelMapper roleMenuRelMapper; 16 | 17 | } 18 | -------------------------------------------------------------------------------- /ftd-system-service/src/main/java/com/gjxx/system/service/impl/RoleServiceImpl.java: -------------------------------------------------------------------------------- 1 | package com.gjxx.system.service.impl; 2 | 3 | import com.baomidou.mybatisplus.service.impl.ServiceImpl; 4 | import com.gjxx.system.dao.RoleMapper; 5 | import com.gjxx.system.entity.Role; 6 | import com.gjxx.system.service.RoleService; 7 | import org.springframework.beans.factory.annotation.Autowired; 8 | 9 | /** 10 | * 角色信息表操作相关 11 | */ 12 | public class RoleServiceImpl extends ServiceImpl implements RoleService { 13 | 14 | @Autowired 15 | private RoleMapper roleMapper; 16 | 17 | } 18 | -------------------------------------------------------------------------------- /ftd-system-service/src/main/java/com/gjxx/system/service/impl/UserRoleRelServiceImpl.java: -------------------------------------------------------------------------------- 1 | package com.gjxx.system.service.impl; 2 | 3 | import com.baomidou.mybatisplus.service.impl.ServiceImpl; 4 | import com.gjxx.system.dao.UserRoleRelMapper; 5 | import com.gjxx.system.entity.UserRoleRel; 6 | import com.gjxx.system.service.UserRoleRelService; 7 | import org.springframework.beans.factory.annotation.Autowired; 8 | 9 | /** 10 | * 用户角色关系表操作相关 11 | */ 12 | public class UserRoleRelServiceImpl extends ServiceImpl implements UserRoleRelService { 13 | 14 | @Autowired 15 | private UserRoleRelMapper userRoleRelMapper; 16 | 17 | } 18 | -------------------------------------------------------------------------------- /ftd-system-service/src/main/resources/db.properties: -------------------------------------------------------------------------------- 1 | 2 | jdbc_url=jdbc:mysql://localhost:3306/ftd?useUnicode=true&characterEncoding=UTF-8 3 | jdbc_username=root 4 | jdbc_password=123456 -------------------------------------------------------------------------------- /ftd-system-service/src/main/resources/mapping/RoleMenuRelMapper.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | id,role_id,menu_id 12 | 13 | 14 | -------------------------------------------------------------------------------- /ftd-system-service/src/main/resources/mapping/UserRoleRelMapper.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | id,user_id,role_id 12 | 13 | 14 | -------------------------------------------------------------------------------- /ftd-system-service/src/test/java/com/gjxx/system/TestApp.java: -------------------------------------------------------------------------------- 1 | package com.gjxx.system; 2 | 3 | import org.springframework.context.support.ClassPathXmlApplicationContext; 4 | 5 | import java.io.IOException; 6 | 7 | public class TestApp { 8 | /** 9 | * @param args 10 | */ 11 | public static void main(String[] args) { 12 | try { 13 | ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext( 14 | "classpath:META-INF/spring/dubbo-system-provider.xml"); 15 | ctx.start(); 16 | System.out.println("服务已启动。。。"); 17 | try { 18 | System.in.read(); 19 | } catch (IOException e) { 20 | e.printStackTrace(); 21 | } 22 | } catch (Exception e) { 23 | e.printStackTrace(); 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /ftd-web/src/main/java/com/gjxx/ftd/common/AuthenInterceptor.java: -------------------------------------------------------------------------------- 1 | package com.gjxx.ftd.common; 2 | 3 | import org.slf4j.Logger; 4 | import org.slf4j.LoggerFactory; 5 | import org.springframework.web.servlet.handler.HandlerInterceptorAdapter; 6 | 7 | import javax.servlet.http.HttpServletRequest; 8 | import javax.servlet.http.HttpServletResponse; 9 | 10 | /**校验过滤器 11 | */ 12 | 13 | public class AuthenInterceptor extends HandlerInterceptorAdapter { 14 | 15 | 16 | private static Logger logger = LoggerFactory.getLogger(AuthenInterceptor.class); 17 | 18 | 19 | public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception { 20 | boolean relt = Boolean.TRUE; 21 | return relt; 22 | } 23 | } 24 | 25 | 26 | -------------------------------------------------------------------------------- /ftd-web/src/main/java/com/gjxx/ftd/common/Authentication.java: -------------------------------------------------------------------------------- 1 | package com.gjxx.ftd.common; 2 | 3 | import java.lang.annotation.*; 4 | 5 | /**鉴权注解 6 | */ 7 | 8 | @Target({ElementType.TYPE, ElementType.METHOD}) 9 | @Retention(RetentionPolicy.RUNTIME) 10 | @Documented 11 | @Inherited 12 | public @interface Authentication { 13 | 14 | // 登录验证注解 15 | // * 该注解可以标记Controller 或 Controller 中的方法 16 | // * 如果Controller 有该标记,那么这个Controller下面所有的方法都会被过滤器 17 | // * 进行验证 18 | // * 如果Controller 没有有该标记,但Controller中的某个方法拥有该标记 19 | // * 那么这个方法将被过滤器验证(其他没有被标记的不会被验证) 20 | // * 特别注意,如果一个Controller 被标记CheckLogin 需要验证 21 | 22 | } 23 | -------------------------------------------------------------------------------- /ftd-web/src/main/java/com/gjxx/ftd/common/ReturnCodeType.java: -------------------------------------------------------------------------------- 1 | package com.gjxx.ftd.common; 2 | 3 | /** 4 | * Created by mgf on 2017/9/11. 5 | */ 6 | public class ReturnCodeType { 7 | public static final String SUCCESS = "0";//成功 8 | public static final String P_FAILURE = "1";//数据异常 9 | public static final String P_VALIDATIONFAILURE = "2";//校验失败 10 | public static final String P_AUTHFAILURE = "3";//鉴权失败 11 | public static final String P_TOKENTIMEOUT = "2001";//token过期 12 | public static final String P_TOKENFAILURE = "2002";//token校验失败 13 | public static final String P_TOKENFORMATFAILURE = "2003";//token格式不合法 14 | } 15 | -------------------------------------------------------------------------------- /ftd-web/src/main/java/com/gjxx/ftd/common/Scheduler.java: -------------------------------------------------------------------------------- 1 | package com.gjxx.ftd.common; 2 | 3 | import org.slf4j.Logger; 4 | import org.slf4j.LoggerFactory; 5 | import org.springframework.stereotype.Controller; 6 | 7 | /** 8 | * Created by Administrator on 2018/4/28 0028. 9 | */ 10 | @Controller 11 | public class Scheduler { 12 | 13 | private static Logger logger= LoggerFactory.getLogger(Scheduler.class); 14 | /** 15 | * 定时任务,每个整点统计一次 16 | */ 17 | public void timingCountJob(){ 18 | System.out.println("定时任务,每个整点统计一次"); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /ftd-web/src/main/resources/config/oss.properties: -------------------------------------------------------------------------------- 1 | oss.ep=http://oss-cn-hangzhou.aliyuncs.com 2 | oss.ak=123 3 | oss.aks=123 4 | oss.bucket=123 5 | oss.picpath=file/{0}/{1}/FILE.{2} 6 | oss.trackpath=track/{0}/{1}.txt 7 | oss.url=http://avoss.oss-cn-hangzhou.aliyuncs.com -------------------------------------------------------------------------------- /ftd-web/src/main/resources/config/redis.properties: -------------------------------------------------------------------------------- 1 | 2 | master.redis.ip=127.0.0.1 3 | master.redis.port=6379 4 | master.redis.author=123456 5 | master.redis.database_index=7 6 | 7 | master.redis.timeout=5000 8 | master.redis.max_idle=300 9 | master.redis.max_active=600 10 | master.redis.max_wait=3000 11 | 12 | testOnBorrow=false 13 | testOnReturn=false 14 | testOnCreate=false 15 | testWhileIdle=false 16 | 17 | -------------------------------------------------------------------------------- /ftd-web/src/main/resources/spring/scheduler.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/WEB-INF/mvc-dispatcher-servlet.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/WEB-INF/pages/ftd/common/footer.jsp: -------------------------------------------------------------------------------- 1 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> 2 | 3 | 4 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/WEB-INF/pages/ftd/common/header.jsp: -------------------------------------------------------------------------------- 1 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/WEB-INF/pages/ftd/common/tag.jsp: -------------------------------------------------------------------------------- 1 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 3 | <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> 4 | 5 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/WEB-INF/pages/ftd/common/teFooter.jsp: -------------------------------------------------------------------------------- 1 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> 2 | 3 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/WEB-INF/pages/sys/common/footer.jsp: -------------------------------------------------------------------------------- 1 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> 2 | 3 | 4 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/WEB-INF/pages/sys/common/tag.jsp: -------------------------------------------------------------------------------- 1 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 3 | <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> 4 | 5 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/css/more_inf/more_inf.css: -------------------------------------------------------------------------------- 1 | /*用户功能模块公共样式*/ 2 | .layui-tab fieldset{margin-top: 20px;} 3 | /*coach_car_look页面样式*/ 4 | .layui-tab .layui-tab-title button{float: right; margin-right: 45px;margin-top: -5px;} 5 | .layui-tab .layui-tab-title button a{color: #fff;} 6 | .layui-table tbody tr .popup{text-decoration: none;text-align:right;} 7 | .layui-table tbody tr .popup .popup_more{}/*查看更多*/ 8 | .layui-table tbody tr .popup .popup_del{margin-left: 130px;}/*删除*/ 9 | .layui-table tbody tr .popup .popup_up{margin-left: 10px;}/*上传*/ 10 | .layui-table tbody tr .popup .popup_alter{}/*修改*/ 11 | .layui-table tbody tr .popup .popup_redact{margin-left: 100px;}/*编辑*/ 12 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/img/QQ截图20170309101302.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/assets/img/QQ截图20170309101302.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/img/close_def.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/assets/img/close_def.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/img/close_hov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/assets/img/close_hov.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/img/downs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/assets/img/downs.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/img/duihao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/assets/img/duihao.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/img/fengcai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/assets/img/fengcai.jpg -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/img/gjxxca.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/assets/img/gjxxca.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/img/gjxxca0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/assets/img/gjxxca0.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/img/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/assets/img/header.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/img/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/assets/img/icon2.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/img/login/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/assets/img/login/bg.jpg -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/img/login/bgGps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/assets/img/login/bgGps.jpg -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/img/login/freshen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/assets/img/login/freshen2.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/img/login/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/assets/img/login/lock.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/img/login/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/assets/img/login/login.jpg -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/img/login/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/assets/img/login/logo.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/img/login/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/assets/img/login/password.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/img/login/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/assets/img/login/user.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/img/login/username.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/assets/img/login/username.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/img/login/yanzheng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/assets/img/login/yanzheng.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/img/logo.bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/assets/img/logo.bg.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/img/logo_favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/assets/img/logo_favicon.ico -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/img/map-car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/assets/img/map-car.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/img/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/assets/img/play.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/img/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/assets/img/top.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/img/tu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/assets/img/tu.jpg -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/img/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/assets/img/video.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/js/index/IpConfig.js: -------------------------------------------------------------------------------- 1 | //var IP="http://120.27.151.140:8680" 2 | //var IP="http://localhost:8080" 3 | //var IP="http://192.168.100.95:8080" 4 | //var IP="http://192.168.100.34:8080" 5 | var IP = ""; 6 | //ajax全局设置 7 | $(document).ajaxStart(function() { 8 | $("#TableLoading").show(); 9 | }).ajaxStop(function() { 10 | $("#TableLoading").hide(); 11 | $("#TableLoading > img").show(); 12 | }); 13 | 14 | //全局变量 15 | var color = "*"; //必填标志 16 | var _tiphtml = "生成排班时服务器将自动过滤已过期的时间段!"; 17 | 18 | //cookie 19 | if(window.top.cookie!=undefined){ 20 | var _cookie=window.top.cookie; 21 | } 22 | 23 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/js/index/getUrlValue.js: -------------------------------------------------------------------------------- 1 | function UrlValue(name) { //获取页面URL地址参数方法 2 | var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i"); //声明正则表达式 3 | var r = window.location.search.substr(1).match(reg); //用正则表达式匹配URL地址参数 4 | if (r != null) return decodeURI(r[2]); return null; //如果匹配到参数,返回参数结果,如果没有匹配到,返回null 5 | } 6 | 7 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/js/index/initSet/Extern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/assets/js/index/initSet/Extern.js -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/js/index/initSet/IpConfig.js: -------------------------------------------------------------------------------- 1 | //var IP="http://120.27.151.140:8680" 2 | //var IP="http://localhost:8080" 3 | //var IP="http://192.168.100.95:8080" 4 | //var IP="http://192.168.100.34:8080" 5 | var IP = ""; 6 | //ajax全局设置 7 | $(document).ajaxStart(function() { 8 | $("#TableLoading").show(); 9 | }).ajaxStop(function() { 10 | $("#TableLoading").hide(); 11 | $("#TableLoading > img").show(); 12 | }); 13 | 14 | //全局变量 15 | var color = "*"; //必填标志 16 | var _tiphtml = "生成排班时服务器将自动过滤已过期的时间段!"; 17 | 18 | //cookie 19 | if(window.top.cookie!=undefined){ 20 | var _cookie=window.top.cookie; 21 | } 22 | 23 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/js/index/initSet/acquiesce.js: -------------------------------------------------------------------------------- 1 | function acquiesce(usual, id, groupname) { 2 | var type = UrlValue("v"); 3 | var modal; 4 | type == "SchScheduleModel" ? modal = 0 : modal = 1; 5 | var _acquiesce_call = function() { 6 | var obj = { 7 | ajaxurl: IP + "/rmwebapp/templet/defualt?type=" + modal + "&id=" + id, 8 | type: "GET", 9 | sucessmsg: "设置成功", 10 | errormsg: "设置失败" 11 | } 12 | ajax_any(obj); 13 | }; 14 | usual == "0" ? modal_confirm("是否设置\"" + groupname + "\"为默认模板?", _acquiesce_call) : ""; 15 | } -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/js/index/initSet/tableconSet.js: -------------------------------------------------------------------------------- 1 | function getTableConObj() { 2 | var type = UrlValue("v"); 3 | switch(type) { 4 | case "EnrolStudentStatistical": 5 | return window.top[type + "_Table_Con"](); 6 | default: 7 | if(window.top[type + "_Table_Con"] != undefined) { 8 | return window.top[type + "_Table_Con"]; 9 | } else { 10 | return { 11 | "title": "未设定", 12 | "data": [] 13 | } 14 | } 15 | } 16 | } -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/js/index/login/loginout.js: -------------------------------------------------------------------------------- 1 | function loginout() { 2 | $.ajax({ 3 | url: IP + "/rmwebapp/school/logout", 4 | type: "get", 5 | async: true, 6 | success: function(data) { 7 | if (data.errorcode == 0) { 8 | cleanCookie(); 9 | } else { 10 | cleanCookie(); 11 | } 12 | }, 13 | cache: false, 14 | timeout: 50000, 15 | error: function(errObj, resu) { 16 | cleanCookie(); 17 | } 18 | }); 19 | } 20 | 21 | //清理coookice并重新登陆 22 | function cleanCookie() { 23 | $.cookie(UrlValue("tk"),null); 24 | location.href = "login.html"; 25 | } -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/js/index/loginout.js: -------------------------------------------------------------------------------- 1 | function loginout() { 2 | $.ajax({ 3 | url: IP + "user/logout", 4 | type: "get", 5 | async: true, 6 | success: function(data) { 7 | if (data.errorcode == 0) { 8 | cleanCookie(); 9 | } else { 10 | cleanCookie(); 11 | } 12 | }, 13 | cache: false, 14 | timeout: 50000, 15 | error: function(errObj, resu) { 16 | cleanCookie(); 17 | } 18 | }); 19 | } 20 | 21 | //清理coookice并重新登陆 22 | function cleanCookie() { 23 | $.cookie(UrlValue("tk"),null); 24 | location.href = "login.jsp"; 25 | } -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/js/index/urlvalue/getUrlValue.js: -------------------------------------------------------------------------------- 1 | function UrlValue(name) { //获取页面URL地址参数方法 2 | var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i"); //声明正则表达式 3 | var r = window.location.search.substr(1).match(reg); //用正则表达式匹配URL地址参数 4 | if (r != null) return decodeURI(r[2]); return null; //如果匹配到参数,返回参数结果,如果没有匹配到,返回null 5 | } 6 | 7 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/assets/js/system_par/system_par.js: -------------------------------------------------------------------------------- 1 | //单击显示与隐藏功能而引用jquery-1.11.2.min.js插件 2 | $(".custom-box").click(function(){ 3 | if($(".custom-on").css("display")=="none"){ 4 | $(".custom-on").show(); 5 | }else{ 6 | $(".custom-on").hide(); 7 | } 8 | }); 9 | 10 | //列表全选或全不选功能,也引用jquery-1.11.2.min.js插件 11 | $("#all").click(function(){ 12 | if(this.checked){ 13 | $("#list :checkbox").prop("checked", true); 14 | }else{ 15 | $("#list :checkbox").prop("checked", false); 16 | } 17 | }); -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/ckplayer/ckplayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/ckplayer/ckplayer.swf -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/component/calendar/images/btn-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/component/calendar/images/btn-next.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/component/calendar/images/btn-prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/component/calendar/images/btn-prev.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/component/calendar/images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/component/calendar/images/info.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/component/calendar/themes/grace/skins/default/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/component/calendar/themes/grace/skins/default/skin.css -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/css/gps/device/device.css: -------------------------------------------------------------------------------- 1 | .device-form{ 2 | background-color: #fff; 3 | padding-left: 50px; 4 | padding-top: 40px; 5 | } 6 | .device-item{ 7 | margin-bottom: 25px; 8 | } 9 | .device-label{ 10 | width: 130px; 11 | } 12 | .device-block{ 13 | margin-left: 150px; 14 | } 15 | .device-inline{ 16 | margin-left: 30px; 17 | } -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/css/gps/videoPlayback/videoPlayback.css: -------------------------------------------------------------------------------- 1 | 2 | body{ 3 | padding: 0px; 4 | } 5 | 6 | .top-img{ 7 | width: 20px;float: right;margin-top: 6px;margin-right: 10px;cursor: pointer; 8 | } 9 | .more-inf{ 10 | position: absolute; 11 | bottom: 30px; 12 | width: 100%; 13 | max-height: 410px; 14 | overflow: auto; 15 | } 16 | .more-inf .layui-table{ 17 | margin-top: 0px; 18 | } 19 | .more-inf .layui-table img{ 20 | cursor: pointer; 21 | } 22 | .custom-ons{ 23 | display: none; 24 | } 25 | .calendar-dates{ 26 | /*background: #333;*/ 27 | } 28 | .date-text-succe{ 29 | background-color: #00CED1; 30 | color: #fff; 31 | } 32 | 33 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/css/metroStyle/img/line_conn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/css/metroStyle/img/line_conn.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/css/metroStyle/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/css/metroStyle/img/loading.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/css/metroStyle/img/metro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/css/metroStyle/img/metro.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/css/metroStyle/img/metro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/css/metroStyle/img/metro.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/css/ops/vehicle/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/css/ops/vehicle/fonts/icomoon.eot -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/css/ops/vehicle/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/css/ops/vehicle/fonts/icomoon.ttf -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/css/ops/vehicle/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/css/ops/vehicle/fonts/icomoon.woff -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/css/ops/vehicle/pagerows.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/css/ops/vehicle/pagerows.css -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/css/system/updatePassword.css: -------------------------------------------------------------------------------- 1 | .wrapper { 2 | width: 1000px; 3 | height: 300px; 4 | margin: 0 auto; 5 | margin-top: 50px; 6 | margin-bottom: 50px; 7 | } 8 | 9 | .wrapper-content { 10 | width: 900px; 11 | height: 280px; 12 | margin: auto; 13 | margin-top: 20px; 14 | } 15 | 16 | .wrapper-header { 17 | width: 200px; 18 | height: 50px; 19 | border-radius: 0px 50px 0px 0px; 20 | background-color: #1aa194; 21 | } 22 | 23 | .wrapper-body { 24 | margin-top: -10px; 25 | } 26 | 27 | .modifyPassword { 28 | display: block; 29 | font-family: "microsoft yahei"; 30 | font-size: 20px; 31 | color: white; 32 | font-weight: 700; 33 | line-height: 50px; 34 | text-align: center; 35 | } 36 | 37 | .passwordButton { 38 | text-decoration: none; 39 | text-align: center; 40 | } -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/css/tools/Hui-iconfont_v1.0.8/1.0.8/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/css/tools/Hui-iconfont_v1.0.8/1.0.8/iconfont.eot -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/css/tools/Hui-iconfont_v1.0.8/1.0.8/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/css/tools/Hui-iconfont_v1.0.8/1.0.8/iconfont.ttf -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/css/tools/Hui-iconfont_v1.0.8/1.0.8/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/css/tools/Hui-iconfont_v1.0.8/1.0.8/iconfont.woff -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/css/zTreeStyle/img/diy/1_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/css/zTreeStyle/img/diy/1_close.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/css/zTreeStyle/img/diy/1_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/css/zTreeStyle/img/diy/1_open.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/css/zTreeStyle/img/diy/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/css/zTreeStyle/img/diy/2.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/css/zTreeStyle/img/diy/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/css/zTreeStyle/img/diy/3.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/css/zTreeStyle/img/diy/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/css/zTreeStyle/img/diy/4.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/css/zTreeStyle/img/diy/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/css/zTreeStyle/img/diy/5.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/css/zTreeStyle/img/diy/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/css/zTreeStyle/img/diy/6.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/css/zTreeStyle/img/diy/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/css/zTreeStyle/img/diy/7.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/css/zTreeStyle/img/diy/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/css/zTreeStyle/img/diy/8.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/css/zTreeStyle/img/diy/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/css/zTreeStyle/img/diy/9.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/css/zTreeStyle/img/diy/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/css/zTreeStyle/img/diy/car.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/css/zTreeStyle/img/diy/carNo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/css/zTreeStyle/img/diy/carNo.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/css/zTreeStyle/img/diy/carWarning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/css/zTreeStyle/img/diy/carWarning.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/css/zTreeStyle/img/diy/map-car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/css/zTreeStyle/img/diy/map-car.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/css/zTreeStyle/img/line_conn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/css/zTreeStyle/img/line_conn.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/css/zTreeStyle/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/css/zTreeStyle/img/loading.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/css/zTreeStyle/img/zTreeStandard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/css/zTreeStyle/img/zTreeStandard.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/css/zTreeStyle/img/zTreeStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/css/zTreeStyle/img/zTreeStandard.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/flowplayer/flowplayer-3.2.18.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/flowplayer/flowplayer-3.2.18.swf -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/flowplayer/flowplayer.controls-3.2.16.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/flowplayer/flowplayer.controls-3.2.16.swf -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/flowplayer/flowplayer.rtmp-3.2.8.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/flowplayer/flowplayer.rtmp-3.2.8.swf -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/fonts/fontawesome-webfont93e3.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/fonts/fontawesome-webfont93e3.eot -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/fonts/fontawesome-webfont93e3.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/fonts/fontawesome-webfont93e3.ttf -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/fonts/fontawesome-webfont93e3.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/fonts/fontawesome-webfont93e3.woff -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/fonts/fontawesome-webfont93e3.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/fonts/fontawesome-webfont93e3.woff2 -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/fonts/fontawesome-webfontd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/fonts/fontawesome-webfontd41d.eot -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/area/cbl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/area/cbl.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/area/cfwyy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/area/cfwyy.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/area/dt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/area/dt.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/area/gc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/area/gc.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/area/hc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/area/hc.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/area/qc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/area/qc.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/area/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/area/sc.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/area/wzyy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/area/wzyy.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/area/ycjj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/area/ycjj.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/b.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/bian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/bian.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/bianji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/bianji.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/bu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/bu.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/capacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/capacity.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/chakan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/chakan.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/chakanditu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/chakanditu.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/circle1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/circle1.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/circle2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/circle2.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/dright-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/dright-img.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/driver19_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/driver19_19.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/header.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/arrow-down.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/arrow-up.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/bg.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/capacity-car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/capacity-car.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/capacity-plaza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/capacity-plaza.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/capacity-train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/capacity-train.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/carNum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/carNum.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/carRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/carRed.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/carWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/carWhite.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/clock.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/companyNum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/companyNum.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/dot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/dot1.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/dot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/dot2.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/dot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/dot3.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/dot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/dot4.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/driverNum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/driverNum.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/emphasisareaicon/capacity-airport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/emphasisareaicon/capacity-airport.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/emphasisareaicon/capacity-car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/emphasisareaicon/capacity-car.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/emphasisareaicon/capacity-harbor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/emphasisareaicon/capacity-harbor.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/emphasisareaicon/capacity-plaza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/emphasisareaicon/capacity-plaza.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/emphasisareaicon/capacity-scenicarea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/emphasisareaicon/capacity-scenicarea.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/emphasisareaicon/capacity-school.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/emphasisareaicon/capacity-school.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/emphasisareaicon/capacity-themall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/emphasisareaicon/capacity-themall.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/emphasisareaicon/capacity-train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/emphasisareaicon/capacity-train.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/gif/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/gif/loading.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/gif/police-alarm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/gif/police-alarm.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/hArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/hArea.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/hCompany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/hCompany.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/hDriver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/hDriver.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/hHotmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/hHotmap.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/hLiner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/hLiner.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/hNetcar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/hNetcar.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/hNote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/hNote.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/hOrder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/hOrder.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/hPlain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/hPlain.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/hRealTim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/hRealTim.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/hTime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/hTime.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/hWaring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/hWaring.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/header.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/htodo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/htodo.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/logo.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/order-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/order-1.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/order-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/order-2.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/order.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/taxiRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/taxiRed.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/taxiWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/taxiWhite.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/home/waring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/home/waring.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/hr.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/huan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/huan.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/icon/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/icon/arrow.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/icon/contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/icon/contrast.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/icon/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/icon/delete.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/icon/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/icon/edit.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/icon/licence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/icon/licence.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/icon/notice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/icon/notice.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/icon/orderInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/icon/orderInfo.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/icon/query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/icon/query.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/icon/receive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/icon/receive.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/icon/rehear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/icon/rehear.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/icon/t_jiankong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/icon/t_jiankong.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/icon/time_16x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/icon/time_16x14.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/icon/top_arr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/icon/top_arr.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/icon/trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/icon/trace.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/icon/trial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/icon/trial.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/jia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/jia.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/jian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/jian.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/jzx.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/jzx.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/kc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/kc.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/login.jpg -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/login/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/login/login.jpg -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/login/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/login/password.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/login/username.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/login/username.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/login/yanzheng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/login/yanzheng.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/logo.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/logo_L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/logo_L.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/map/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/map/2.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/map/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/map/3.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/map/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/map/4.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/map/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/map/5.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/map/asyicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/map/asyicon.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/map/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/map/blue.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/map/bluecar_16_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/map/bluecar_16_20.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/map/blueline_16x20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/map/blueline_16x20.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/map/blueperson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/map/blueperson.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/map/mapend_26x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/map/mapend_26x36.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/map/mapstart_26x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/map/mapstart_26x36.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/map/none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/map/none.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/map/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/map/red.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/map/redline_16x20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/map/redline_16x20.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/map/redperson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/map/redperson.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/map/redprson_16x20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/map/redprson_16x20.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/map/startmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/map/startmap.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/map/vehicle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/map/vehicle.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/map/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/map/yellow.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/poi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/poi.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/police-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/police-green.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/police-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/police-red.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/police-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/police-yellow.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/police.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/police.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/printtemplate/business_license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/printtemplate/business_license.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/printtemplate/driverlicense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/printtemplate/driverlicense.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/printtemplate/photoshop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/printtemplate/photoshop.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/printtemplate/print-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/printtemplate/print-1.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/printtemplate/print-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/printtemplate/print-2.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/printtemplate/transport.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/printtemplate/transport.jpg -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/readme/company.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/readme/company.jpg -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/readme/index.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/readme/index.jpg -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/readme/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/readme/login.jpg -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/readme/tableCDM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/readme/tableCDM.jpg -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/readme/参数明细.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/readme/参数明细.jpg -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/readme/系统参数.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/readme/系统参数.jpg -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/readme/系统子菜单.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/readme/系统子菜单.jpg -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/readme/系统菜单管理.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/readme/系统菜单管理.jpg -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/readme/角色信息.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/readme/角色信息.jpg -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/readme/角色权限设置.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/readme/角色权限设置.jpg -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/shenpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/shenpi.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/sortUp23_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/sortUp23_21.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/sortUpHover23_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/sortUpHover23_21.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/sortdown23_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/sortdown23_21.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/sortdownHover23_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/sortdownHover23_21.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/sta/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/sta/clock.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/sta/money16_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/sta/money16_18.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/sta/note12_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/sta/note12_18.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/sta/tableTime_12x12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/sta/tableTime_12x12.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/sta/topImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/sta/topImg.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/t_guiji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/t_guiji.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/t_jiankong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/t_jiankong.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/t_xiangqing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/t_xiangqing.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/timg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/timg.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/timg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/timg2.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/topscoll.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/topscoll.jpg -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/xiangqing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/xiangqing.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/img/zc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/img/zc.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/js/common/IDcardtype.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * @author chendb 4 | * @date 2017/9/12 5 | * @sin 身份证号码权威验证规则 6 | * 7 | */ 8 | //身份证号合法性验证 9 | //支持15位和18位身份证号 10 | //支持地址编码、出生日期、校验位验证 11 | /** 第二代身份证*/ 12 | var aCity={11:"北京",12:"天津",13:"河北",14:"山西",15:"内蒙古",21:"辽宁",22:"吉林",23:"黑龙江",31:"上海",32:"江苏",33:"浙江",34:"安徽",35:"福建",36:"江西",37:"山东",41:"河南",42:"湖北",43:"湖南",44:"广东",45:"广西",46:"海南",50:"重庆",51:"四川",52:"贵州",53:"云南",54:"西藏",61:"陕西",62:"甘肃",63:"青海",64:"宁夏",65:"新疆",71:"台湾",81:"香港",82:"澳门",91:"国外"}; -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/js/common/btnRes.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by zha on 2017/10/31. 3 | * 按钮控制 4 | */ 5 | $(function() { 6 | btnRes.initial(); 7 | }); 8 | 9 | var btnRes = { 10 | 11 | initial : function initial() { 12 | this.filterBtn(); 13 | }, 14 | 15 | filterBtn : function filterBtn(btnId) { 16 | var inArray = $.inArray(btnId,global.resList); 17 | if (inArray == -1) { 18 | $("#" + btnId).css("display","none"); 19 | } 20 | } 21 | 22 | }; -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/js/common/commonpage.js: -------------------------------------------------------------------------------- 1 | ;(function ($) { 2 | $.fn.extend({ 3 | PageBar: function (table, paramData, url, addhtml) { 4 | var tableId = $("#" + table + ""); 5 | var url = url; 6 | var addHtmlMthod = addhtml; 7 | /** 8 | * 分页查询 9 | */ 10 | queryPage = function () { 11 | var p = $.post(url, paramData, function (json) { 12 | if (json.errorcode == 0) { 13 | var html = addHtmlMthod(json); 14 | tableId.html(html); 15 | }else if(json.errorcode == "P_OVERTIME"){ 16 | window.location.href = 'studentCoaInfo'; 17 | } 18 | }, "json"); 19 | p.success(function () { 20 | }); 21 | p.error(function () { 22 | layer.alert('加载数据失败请重试!!'); 23 | }) 24 | } 25 | } 26 | }); 27 | }(jQuery)); 28 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/js/common/layui.date.js: -------------------------------------------------------------------------------- 1 | /** 2 | * LayUI 日期组件 3 | */ 4 | layui.use('laydate', 5 | function() { 6 | var laydate = layui.laydate; 7 | 8 | var start = { 9 | min: laydate.time, 10 | max: '2099-06-16 23:59:59', 11 | istoday: false, 12 | choose: function(datas) { 13 | end.min = datas; //开始日选好后,重置结束日的最小日期 14 | end.start = datas //将结束日的初始值设定为开始日 15 | } 16 | }; 17 | 18 | var end = { 19 | min: laydate.time, 20 | max: '2099-06-16 23:59:59', 21 | istoday: false, 22 | choose: function(datas) { 23 | start.max = datas; //结束日选好后,重置开始日的最大日期 24 | } 25 | }; 26 | }); -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/js/index/loginout.js: -------------------------------------------------------------------------------- 1 | function loginout() { 2 | $.ajax({ 3 | url: IP + "/rmwebapp/school/logout", 4 | type: "get", 5 | async: true, 6 | success: function(data) { 7 | if (data.errorcode == 0) { 8 | cleanCookie(); 9 | } else { 10 | cleanCookie(); 11 | } 12 | }, 13 | cache: false, 14 | timeout: 50000, 15 | error: function(errObj, resu) { 16 | cleanCookie(); 17 | } 18 | }); 19 | } 20 | 21 | //清理coookice并重新登陆 22 | function cleanCookie() { 23 | $.cookie(UrlValue("tk"),null); 24 | location.href = "login.html"; 25 | } -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/js/kit/tree.js: -------------------------------------------------------------------------------- 1 | 2 | function loadTree(url,myCallback){ 3 | layer.open({ 4 | type: 1 5 | ,title: "请选择" //不显示标题栏 6 | ,closeBtn: "1" 7 | ,area: ['300px', '400px'] 8 | ,shade: 0.2 9 | ,maxmin:true 10 | ,id: 'LAY_layuipro' //设定一个id,防止重复弹出 11 | ,moveType: 1 //拖拽模式,0或者1 12 | ,content: "
    " 13 | ,success: function(layero, index){ 14 | var setting = { 15 | async: { 16 | enable: true, 17 | url:url, 18 | autoParam:["id"] 19 | }, 20 | callback: { 21 | onClick: function(event, treeId, treeNode){ 22 | myCallback(treeNode); 23 | layer.close(index); 24 | } 25 | } 26 | }; 27 | $.fn.zTree.init($("#zTree"), setting); 28 | } 29 | }); 30 | } -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/bootstrap-select/js/i18n/defaults-cs_CZ.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2017 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nic není vybráno",noneResultsText:"Žádné výsledky {0}",countSelectedText:"Označeno {0} z {1}",maxOptionsText:["Limit překročen ({n} {var} max)","Limit skupiny překročen ({n} {var} max)",["položek","položka"]],multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/bootstrap-select/js/i18n/defaults-es_CL.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2017 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"No hay selección",noneResultsText:"No hay resultados {0}",countSelectedText:"Seleccionados {0} de {1}",maxOptionsText:["Límite alcanzado ({n} {var} max)","Límite del grupo alcanzado({n} {var} max)",["elementos","element"]],multipleSeparator:", ",selectAllText:"Seleccionar Todos",deselectAllText:"Desmarcar Todos"}}(a)}); -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/bootstrap-select/js/i18n/defaults-es_ES.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2017 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"No hay selección",noneResultsText:"No hay resultados {0}",countSelectedText:"Seleccionados {0} de {1}",maxOptionsText:["Límite alcanzado ({n} {var} max)","Límite del grupo alcanzado({n} {var} max)",["elementos","element"]],multipleSeparator:", ",selectAllText:"Seleccionar Todos",deselectAllText:"Desmarcar Todos"}}(a)}); -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/bootstrap-select/js/i18n/defaults-eu.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2017 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Hautapenik ez",noneResultsText:"Emaitzarik ez {0}",countSelectedText:"{1}(e)tik {0} hautatuta",maxOptionsText:["Mugara iritsita ({n} {var} gehienez)","Taldearen mugara iritsita ({n} {var} gehienez)",["elementu","elementu"]],multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/bootstrap-select/js/i18n/defaults-fa_IR.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2017 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"چیزی انتخاب نشده است",noneResultsText:"هیج مشابهی برای {0} پیدا نشد",countSelectedText:"{0} از {1} مورد انتخاب شده",maxOptionsText:["بیشتر ممکن نیست {حداکثر {n} عدد}","بیشتر ممکن نیست {حداکثر {n} عدد}"],selectAllText:"انتخاب همه",deselectAllText:"انتخاب هیچ کدام",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/bootstrap-select/js/i18n/defaults-hu_HU.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2017 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Válasszon!",noneResultsText:"Nincs találat {0}",countSelectedText:function(a,b){return"{0} elem kiválasztva"},maxOptionsText:function(a,b){return["Legfeljebb {n} elem választható","A csoportban legfeljebb {n} elem választható"]},selectAllText:"Mind",deselectAllText:"Egyik sem",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/bootstrap-select/js/i18n/defaults-id_ID.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2017 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Tidak ada yang dipilih",noneResultsText:"Tidak ada yang cocok {0}",countSelectedText:"{0} terpilih",maxOptionsText:["Mencapai batas (maksimum {n})","Mencapai batas grup (maksimum {n})"],selectAllText:"Pilih Semua",deselectAllText:"Hapus Semua",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/bootstrap-select/js/i18n/defaults-ko_KR.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2017 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"항목을 선택해주세요",noneResultsText:"{0} 검색 결과가 없습니다",countSelectedText:function(a,b){return"{0}개를 선택하였습니다"},maxOptionsText:function(a,b){return["{n}개까지 선택 가능합니다","해당 그룹은 {n}개까지 선택 가능합니다"]},selectAllText:"전체선택",deselectAllText:"전체해제",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/bootstrap-select/js/i18n/defaults-nl_NL.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2017 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Niets geselecteerd",noneResultsText:"Geen resultaten gevonden voor {0}",countSelectedText:"{0} van {1} geselecteerd",maxOptionsText:["Limiet bereikt ({n} {var} max)","Groep limiet bereikt ({n} {var} max)",["items","item"]],multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/bootstrap-select/js/i18n/defaults-pl_PL.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2017 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nic nie zaznaczono",noneResultsText:"Brak wyników wyszukiwania {0}",countSelectedText:"Zaznaczono {0} z {1}",maxOptionsText:["Osiągnięto limit ({n} {var} max)","Limit grupy osiągnięty ({n} {var} max)",["elementy","element"]],selectAll:"Zaznacz wszystkie",deselectAll:"Odznacz wszystkie",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/bootstrap-select/js/i18n/defaults-pt_BR.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2017 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nada selecionado",noneResultsText:"Nada encontrado contendo {0}",countSelectedText:"Selecionado {0} de {1}",maxOptionsText:["Limite excedido (máx. {n} {var})","Limite do grupo excedido (máx. {n} {var})",["itens","item"]],multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/bootstrap-select/js/i18n/defaults-pt_PT.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2017 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nenhum seleccionado",noneResultsText:"Sem resultados contendo {0}",countSelectedText:"Selecionado {0} de {1}",maxOptionsText:["Limite ultrapassado (máx. {n} {var})","Limite de seleções ultrapassado (máx. {n} {var})",["itens","item"]],multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/bootstrap-select/js/i18n/defaults-ro_RO.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2017 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nu a fost selectat nimic",noneResultsText:"Nu exista niciun rezultat {0}",countSelectedText:"{0} din {1} selectat(e)",maxOptionsText:["Limita a fost atinsa ({n} {var} max)","Limita de grup a fost atinsa ({n} {var} max)",["iteme","item"]],multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/bootstrap-select/js/i18n/defaults-sk_SK.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2017 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Vyberte zo zoznamu",noneResultsText:"Pre výraz {0} neboli nájdené žiadne výsledky",countSelectedText:"Vybrané {0} z {1}",maxOptionsText:["Limit prekročený ({n} {var} max)","Limit skupiny prekročený ({n} {var} max)",["položiek","položka"]],selectAllText:"Vybrať všetky",deselectAllText:"Zrušiť výber",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/bootstrap-select/js/i18n/defaults-sl_SI.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2017 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nič izbranega",noneResultsText:"Ni zadetkov za {0}",countSelectedText:function(a,b){"Število izbranih: {0}"},maxOptionsText:function(a,b){return["Omejitev dosežena (max. izbranih: {n})","Omejitev skupine dosežena (max. izbranih: {n})"]},selectAllText:"Izberi vse",deselectAllText:"Počisti izbor",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/bootstrap-select/js/i18n/defaults-ua_UA.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2017 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Нічого не вибрано",noneResultsText:"Збігів не знайдено {0}",countSelectedText:"Вибрано {0} із {1}",maxOptionsText:["Досягнута межа ({n} {var} максимум)","Досягнута межа в групі ({n} {var} максимум)",["items","item"]],multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/bootstrap-select/js/i18n/defaults-zh_CN.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2017 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"没有选中任何项",noneResultsText:"没有找到匹配项",countSelectedText:"选中{1}中的{0}项",maxOptionsText:["超出限制 (最多选择{n}项)","组选择超出限制(最多选择{n}组)"],multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/bootstrap-select/js/i18n/defaults-zh_TW.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) 3 | * 4 | * Copyright 2013-2017 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"沒有選取任何項目",noneResultsText:"沒有找到符合的結果",countSelectedText:"已經選取{0}個項目",maxOptionsText:["超過限制 (最多選擇{n}項)","超過限制(最多選擇{n}組)"],selectAllText:"選取全部",deselectAllText:"全部取消",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/bootstrap/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/city-picker/dist/images/drop-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/city-picker/dist/images/drop-arrow.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/M2Jd71oPJhLKp0zdtTvoM40tgx99jmYGv_xzYuwd1rU.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/M2Jd71oPJhLKp0zdtTvoM40tgx99jmYGv_xzYuwd1rU.woff2 -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/M2Jd71oPJhLKp0zdtTvoM7YHq4FgHI02B8rPccK0FJQ.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/M2Jd71oPJhLKp0zdtTvoM7YHq4FgHI02B8rPccK0FJQ.woff2 -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/M2Jd71oPJhLKp0zdtTvoMxgy2Fsj5sj3EzlXpqVXRKo.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/M2Jd71oPJhLKp0zdtTvoMxgy2Fsj5sj3EzlXpqVXRKo.woff2 -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/ODelI1aHBYDBqgeIAH2zlC2Q8seG17bfDXYR_jUsrzg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/ODelI1aHBYDBqgeIAH2zlC2Q8seG17bfDXYR_jUsrzg.woff2 -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/ODelI1aHBYDBqgeIAH2zlNOAHFN6BivSraYkjhveRHY.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/ODelI1aHBYDBqgeIAH2zlNOAHFN6BivSraYkjhveRHY.woff2 -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/ODelI1aHBYDBqgeIAH2zlNV_2ngZ8dMf8fLgjYEouxg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/ODelI1aHBYDBqgeIAH2zlNV_2ngZ8dMf8fLgjYEouxg.woff2 -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/fpTVHK8qsXbIeTHTrnQH6CzM2XYAq8cDhaXsrN8WXcA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/fpTVHK8qsXbIeTHTrnQH6CzM2XYAq8cDhaXsrN8WXcA.woff2 -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/fpTVHK8qsXbIeTHTrnQH6E78GtRp3lhchupCJNw8t58.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/fpTVHK8qsXbIeTHTrnQH6E78GtRp3lhchupCJNw8t58.woff2 -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/fpTVHK8qsXbIeTHTrnQH6GQKuzMuncr0JB710wa2dPI.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/fpTVHK8qsXbIeTHTrnQH6GQKuzMuncr0JB710wa2dPI.woff2 -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/fpTVHK8qsXbIeTHTrnQH6Lpx497t94oDua8KfAL9f-E.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/fpTVHK8qsXbIeTHTrnQH6Lpx497t94oDua8KfAL9f-E.woff2 -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/fpTVHK8qsXbIeTHTrnQH6MAjkyiewWYrWZc50I8hK7I.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/fpTVHK8qsXbIeTHTrnQH6MAjkyiewWYrWZc50I8hK7I.woff2 -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/fpTVHK8qsXbIeTHTrnQH6OXKTZYPNtG1yMB_YJSqlic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/fpTVHK8qsXbIeTHTrnQH6OXKTZYPNtG1yMB_YJSqlic.woff2 -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/toadOcfmlt9b38dHJxOBGCOFnW3Jk0f09zW_Yln67Ac.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/toadOcfmlt9b38dHJxOBGCOFnW3Jk0f09zW_Yln67Ac.woff2 -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/toadOcfmlt9b38dHJxOBGClYwVOhDRq2vbpGRTZ7bbs.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/toadOcfmlt9b38dHJxOBGClYwVOhDRq2vbpGRTZ7bbs.woff2 -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/toadOcfmlt9b38dHJxOBGDRVvBvQIc1z78c__uoBcyI.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/toadOcfmlt9b38dHJxOBGDRVvBvQIc1z78c__uoBcyI.woff2 -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/toadOcfmlt9b38dHJxOBGD_j0nMiB9fPhg_k1wdK2h0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/toadOcfmlt9b38dHJxOBGD_j0nMiB9fPhg_k1wdK2h0.woff2 -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/toadOcfmlt9b38dHJxOBGDovqjS_dXPZszO_XltPdNg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/toadOcfmlt9b38dHJxOBGDovqjS_dXPZszO_XltPdNg.woff2 -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/toadOcfmlt9b38dHJxOBGEo0As1BFRXtCDhS66znb_k.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/toadOcfmlt9b38dHJxOBGEo0As1BFRXtCDhS66znb_k.woff2 -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/toadOcfmlt9b38dHJxOBGFKFh1TDTPrUZWzVp6FtpG8.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/toadOcfmlt9b38dHJxOBGFKFh1TDTPrUZWzVp6FtpG8.woff2 -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/toadOcfmlt9b38dHJxOBGFxe-GPfKKFmiXaJ_Q0GFr8.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/toadOcfmlt9b38dHJxOBGFxe-GPfKKFmiXaJ_Q0GFr8.woff2 -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/toadOcfmlt9b38dHJxOBGOode0-EuMkY--TSyExeINg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/css/googleapis-fonts/toadOcfmlt9b38dHJxOBGOode0-EuMkY--TSyExeINg.woff2 -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/font-awesome-4.7.0/HELP-US-OUT.txt: -------------------------------------------------------------------------------- 1 | I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project, 2 | Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome, 3 | comprehensive icon sets or copy and paste your own. 4 | 5 | Please. Check it out. 6 | 7 | -Dave Gandy 8 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/font-awesome-4.7.0/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/font-awesome-4.7.0/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/font-awesome-4.7.0/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/font-awesome-4.7.0/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/font-awesome-4.7.0/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/font-awesome-4.7.0/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/font-awesome-4.7.0/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .@{fa-css-prefix}-pull-left { float: left; } 11 | .@{fa-css-prefix}-pull-right { float: right; } 12 | 13 | .@{fa-css-prefix} { 14 | &.@{fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.@{fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .@{fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/font-awesome-4.7.0/less/core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/font-awesome-4.7.0/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/font-awesome-4.7.0/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables.less"; 7 | @import "mixins.less"; 8 | @import "path.less"; 9 | @import "core.less"; 10 | @import "larger.less"; 11 | @import "fixed-width.less"; 12 | @import "list.less"; 13 | @import "bordered-pulled.less"; 14 | @import "animated.less"; 15 | @import "rotated-flipped.less"; 16 | @import "stacked.less"; 17 | @import "icons.less"; 18 | @import "screen-reader.less"; 19 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/font-awesome-4.7.0/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/font-awesome-4.7.0/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: (-@fa-li-width + (4em / 14)); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/font-awesome-4.7.0/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .@{fa-css-prefix}-rotate-90, 15 | :root .@{fa-css-prefix}-rotate-180, 16 | :root .@{fa-css-prefix}-rotate-270, 17 | :root .@{fa-css-prefix}-flip-horizontal, 18 | :root .@{fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/font-awesome-4.7.0/less/screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/font-awesome-4.7.0/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/font-awesome-4.7.0/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .#{$fa-css-prefix}-pull-left { float: left; } 11 | .#{$fa-css-prefix}-pull-right { float: right; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .#{$fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/font-awesome-4.7.0/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/font-awesome-4.7.0/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/font-awesome-4.7.0/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/font-awesome-4.7.0/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/font-awesome-4.7.0/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .#{$fa-css-prefix}-rotate-90, 15 | :root .#{$fa-css-prefix}-rotate-180, 16 | :root .#{$fa-css-prefix}-rotate-270, 17 | :root .#{$fa-css-prefix}-flip-horizontal, 18 | :root .#{$fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/font-awesome-4.7.0/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only(); } 5 | .sr-only-focusable { @include sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/font-awesome-4.7.0/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/font-awesome-4.7.0/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "animated"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | @import "screen-reader"; 19 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/fontIconPicker-2.0.0/css/iconpicker.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/fontIconPicker-2.0.0/css/iconpicker.eot -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/fontIconPicker-2.0.0/css/iconpicker.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/fontIconPicker-2.0.0/css/iconpicker.ttf -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/fontIconPicker-2.0.0/css/iconpicker.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/fontIconPicker-2.0.0/css/iconpicker.woff -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/fonts/typicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/fonts/typicons.eot -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/fonts/typicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/fonts/typicons.ttf -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/fonts/typicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/fonts/typicons.woff -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/fonts/weathericons-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/fonts/weathericons-regular-webfont.eot -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/fonts/weathericons-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/fonts/weathericons-regular-webfont.ttf -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/fonts/weathericons-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/fonts/weathericons-regular-webfont.woff -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/gaodemap/addToolbar.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created with WebStorm && Sublime Text 3 3 | * Date: 2015/10/29 14:04 4 | */ 5 | window.onload = function() { 6 | mapObj.plugin(["AMap.ToolBar"], function() { 7 | mapObj.addControl(new AMap.ToolBar()); 8 | }); 9 | if(location.href.indexOf('&guide=1')!==-1){ 10 | mapObj.setStatus({scrollWheel:false}) 11 | } 12 | } -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/gaodemap/css/main1119.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/gaodemap/css/main1119.css -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/css/modules/layer/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/css/modules/layer/default/icon-ext.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/css/modules/layer/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/css/modules/layer/default/icon.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/css/modules/layer/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/css/modules/layer/default/loading-0.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/css/modules/layer/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/css/modules/layer/default/loading-1.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/css/modules/layer/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/css/modules/layer/default/loading-2.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/font/iconfont.eot -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/font/iconfont.woff -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/0.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/1.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/10.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/11.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/12.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/13.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/14.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/15.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/16.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/17.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/18.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/19.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/2.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/20.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/21.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/22.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/23.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/24.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/25.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/26.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/27.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/28.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/29.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/3.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/30.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/31.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/32.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/33.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/34.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/35.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/36.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/37.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/38.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/39.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/4.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/40.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/41.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/42.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/43.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/44.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/45.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/46.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/47.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/48.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/49.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/5.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/50.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/51.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/52.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/53.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/54.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/55.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/56.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/57.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/58.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/59.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/6.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/60.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/61.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/62.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/63.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/64.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/65.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/66.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/67.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/68.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/69.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/7.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/70.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/71.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/8.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/layui/images/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/layui/images/face/9.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/nice-validator/dist/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/nice-validator/dist/images/loading.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/nice-validator/dist/images/validator_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/nice-validator/dist/images/validator_default.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/nice-validator/dist/images/validator_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/nice-validator/dist/images/validator_simple.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicker/css/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicker/css/images/Thumbs.db -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicker/css/images/icon_calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicker/css/images/icon_calendar.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicker/css/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicker/css/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicker/css/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicker/css/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicker/css/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicker/css/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicker/css/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicker/css/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicker/css/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicker/css/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicker/css/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicker/css/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicker/css/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicker/css/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicker/css/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicker/css/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicker/css/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicker/css/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicker/css/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicker/css/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicker/css/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicker/css/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicker/css/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicker/css/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicker/css/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicker/css/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicker/css/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicker/css/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicker/css/jquery-ui-timepicker-addon.css: -------------------------------------------------------------------------------- 1 | .ui-timepicker-div .ui-widget-header { margin-bottom: 8px; } 2 | .ui-timepicker-div dl { text-align: left; } 3 | .ui-timepicker-div dl dt { height: 25px; margin-bottom: -25px; } 4 | .ui-timepicker-div dl dd { margin: 0 10px 10px 65px; } 5 | .ui-timepicker-div td { font-size: 90%; } 6 | .ui-tpicker-grid-label { background: none; border: none; margin: 0; padding: 0; } 7 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/animated-overlay.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/js/jquery-ui-timepicker-addon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/timepicki/jquery-time-v0.9.7/js/jquery-ui-timepicker-addon.js -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/Thumbs.db -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_cb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_cb.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_cb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_cb.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_closebtn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_closebtn.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_closebtn_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_closebtn_over.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_ct.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_ct.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_ct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_ct.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_lb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_lb.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_lb.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_lt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_lt.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_lt.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_mlm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_mlm.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_mlm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_mlm.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_mrm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_mrm.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_mrm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_mrm.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_rb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_rb.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_rb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_rb.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_rt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_rt.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_rt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dialog_rt.png -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/dir.txt: -------------------------------------------------------------------------------- 1 | dialog_bg.jpg 2 | dialog_cb.gif 3 | dialog_cb.png 4 | dialog_closebtn.gif 5 | dialog_closebtn_over.gif 6 | dialog_ct.gif 7 | dialog_ct.png 8 | dialog_lb.gif 9 | dialog_lb.png 10 | dialog_lt.gif 11 | dialog_lt.png 12 | dialog_mlm.gif 13 | dialog_mlm.png 14 | dialog_mrm.gif 15 | dialog_mrm.png 16 | dialog_rb.gif 17 | dialog_rb.png 18 | dialog_rt.gif 19 | dialog_rt.png 20 | dir.txt 21 | icon_alert.gif 22 | icon_dialog.gif 23 | icon_query.gif 24 | window.gif 25 | -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/icon_alert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/icon_alert.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/icon_dialog.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/icon_dialog.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/icon_query.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/icon_query.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/window.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/plugins/zDialog/skins/blue/window.gif -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/uploads/img/1492674107462_493869.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/uploads/img/1492674107462_493869.jpg -------------------------------------------------------------------------------- /ftd-web/src/main/webapp/static/uploads/img/1493081111294_499401.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfshut/ftd/5a0914ff4efe99c33c15627df98cfe0a35accc78/ftd-web/src/main/webapp/static/uploads/img/1493081111294_499401.jpg --------------------------------------------------------------------------------