├── WebRoot ├── easyui.jsp ├── META-INF │ └── MANIFEST.MF ├── js │ ├── jscharts.js │ └── common.js ├── WEB-INF │ └── lib │ │ ├── asm-3.3.1.jar │ │ ├── c3p0-0.9.jar │ │ ├── cglib-2.2.2.jar │ │ ├── log4j-1.2.17.jar │ │ ├── mybatis-3.2.2.jar │ │ ├── slf4j-api-1.7.5.jar │ │ ├── asm-3.2.0.RELEASE.jar │ │ ├── javassist-3.17.1-GA.jar │ │ ├── mybatis-spring-1.2.0.jar │ │ ├── slf4j-log4j12-1.7.5.jar │ │ ├── jackson-core-asl-1.7.2.jar │ │ ├── jackson-mapper-asl-1.7.2.jar │ │ ├── spring-aop-3.2.0.RELEASE.jar │ │ ├── spring-core-3.2.0.RELEASE.jar │ │ ├── spring-jdbc-3.2.0.RELEASE.jar │ │ ├── spring-orm-3.2.0.RELEASE.jar │ │ ├── spring-test-3.2.0.RELEASE.jar │ │ ├── spring-web-3.2.0.RELEASE.jar │ │ ├── spring-beans-3.2.0.RELEASE.jar │ │ ├── spring-webmvc-3.2.0.RELEASE.jar │ │ ├── spring-context-3.2.0.RELEASE.jar │ │ ├── mysql-connector-java-5.1.26-bin.jar │ │ ├── spring-expression-3.2.0.RELEASE.jar │ │ ├── com.springsource.net.sf.cglib-2.2.0.jar │ │ ├── com.springsource.org.aopalliance-1.0.0.jar │ │ ├── org.springframework.transaction-3.2.2.RELEASE.jar │ │ ├── com.springsource.org.apache.commons.logging-1.1.1.jar │ │ └── com.springsource.org.aspectj.weaver-1.6.8.RELEASE.jar ├── jquery-easyui-1.3.5 │ ├── themes │ │ ├── icons │ │ │ ├── back.png │ │ │ ├── cut.png │ │ │ ├── help.png │ │ │ ├── no.png │ │ │ ├── ok.png │ │ │ ├── redo.png │ │ │ ├── sum.png │ │ │ ├── tip.png │ │ │ ├── undo.png │ │ │ ├── blank.gif │ │ │ ├── cancel.png │ │ │ ├── filter.png │ │ │ ├── pencil.png │ │ │ ├── print.png │ │ │ ├── reload.png │ │ │ ├── search.png │ │ │ ├── edit_add.png │ │ │ ├── filesave.png │ │ │ ├── mini_add.png │ │ │ ├── mini_edit.png │ │ │ ├── edit_remove.png │ │ │ └── mini_refresh.png │ │ ├── gray │ │ │ ├── images │ │ │ │ ├── Thumbs.db │ │ │ │ ├── blank.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── tabs_icons.png │ │ │ │ ├── tree_icons.png │ │ │ │ ├── combo_arrow.png │ │ │ │ ├── datebox_arrow.png │ │ │ │ ├── layout_arrows.png │ │ │ │ ├── linkbutton_bg.png │ │ │ │ ├── menu_arrows.png │ │ │ │ ├── panel_tools.png │ │ │ │ ├── slider_handle.png │ │ │ │ ├── calendar_arrows.png │ │ │ │ ├── datagrid_icons.png │ │ │ │ ├── messager_icons.png │ │ │ │ ├── spinner_arrows.png │ │ │ │ ├── accordion_arrows.png │ │ │ │ ├── pagination_icons.png │ │ │ │ ├── searchbox_button.png │ │ │ │ └── validatebox_warning.png │ │ │ ├── validatebox.css │ │ │ ├── combobox.css │ │ │ ├── dialog.css │ │ │ ├── datebox.css │ │ │ ├── progressbar.css │ │ │ ├── menubutton.css │ │ │ ├── propertygrid.css │ │ │ ├── messager.css │ │ │ ├── accordion.css │ │ │ ├── splitbutton.css │ │ │ ├── combo.css │ │ │ └── spinner.css │ │ ├── black │ │ │ ├── images │ │ │ │ ├── Thumbs.db │ │ │ │ ├── blank.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── combo_arrow.png │ │ │ │ ├── menu_arrows.png │ │ │ │ ├── panel_tools.png │ │ │ │ ├── tabs_icons.png │ │ │ │ ├── tree_icons.png │ │ │ │ ├── datagrid_icons.png │ │ │ │ ├── datebox_arrow.png │ │ │ │ ├── layout_arrows.png │ │ │ │ ├── linkbutton_bg.png │ │ │ │ ├── messager_icons.png │ │ │ │ ├── slider_handle.png │ │ │ │ ├── spinner_arrows.png │ │ │ │ ├── accordion_arrows.png │ │ │ │ ├── calendar_arrows.png │ │ │ │ ├── pagination_icons.png │ │ │ │ ├── searchbox_button.png │ │ │ │ └── validatebox_warning.png │ │ │ ├── validatebox.css │ │ │ ├── combobox.css │ │ │ ├── dialog.css │ │ │ ├── datebox.css │ │ │ ├── progressbar.css │ │ │ ├── menubutton.css │ │ │ ├── propertygrid.css │ │ │ ├── messager.css │ │ │ ├── accordion.css │ │ │ ├── splitbutton.css │ │ │ ├── combo.css │ │ │ └── spinner.css │ │ ├── default │ │ │ ├── images │ │ │ │ ├── Thumbs.db │ │ │ │ ├── blank.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── tabs_icons.png │ │ │ │ ├── tree_icons.png │ │ │ │ ├── combo_arrow.png │ │ │ │ ├── menu_arrows.png │ │ │ │ ├── panel_tools.png │ │ │ │ ├── calendar_arrows.png │ │ │ │ ├── datagrid_icons.png │ │ │ │ ├── datebox_arrow.png │ │ │ │ ├── layout_arrows.png │ │ │ │ ├── linkbutton_bg.png │ │ │ │ ├── messager_icons.png │ │ │ │ ├── slider_handle.png │ │ │ │ ├── spinner_arrows.png │ │ │ │ ├── accordion_arrows.png │ │ │ │ ├── pagination_icons.png │ │ │ │ ├── searchbox_button.png │ │ │ │ └── validatebox_warning.png │ │ │ ├── validatebox.css │ │ │ ├── combobox.css │ │ │ ├── dialog.css │ │ │ ├── datebox.css │ │ │ ├── progressbar.css │ │ │ ├── menubutton.css │ │ │ ├── propertygrid.css │ │ │ ├── messager.css │ │ │ ├── accordion.css │ │ │ ├── splitbutton.css │ │ │ ├── combo.css │ │ │ └── spinner.css │ │ ├── metro │ │ │ ├── images │ │ │ │ ├── Thumbs.db │ │ │ │ ├── blank.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── combo_arrow.png │ │ │ │ ├── menu_arrows.png │ │ │ │ ├── panel_tools.png │ │ │ │ ├── tabs_icons.png │ │ │ │ ├── tree_icons.png │ │ │ │ ├── datagrid_icons.png │ │ │ │ ├── datebox_arrow.png │ │ │ │ ├── layout_arrows.png │ │ │ │ ├── linkbutton_bg.png │ │ │ │ ├── messager_icons.png │ │ │ │ ├── slider_handle.png │ │ │ │ ├── spinner_arrows.png │ │ │ │ ├── accordion_arrows.png │ │ │ │ ├── calendar_arrows.png │ │ │ │ ├── pagination_icons.png │ │ │ │ ├── searchbox_button.png │ │ │ │ └── validatebox_warning.png │ │ │ ├── validatebox.css │ │ │ ├── combobox.css │ │ │ ├── dialog.css │ │ │ ├── datebox.css │ │ │ ├── progressbar.css │ │ │ ├── menubutton.css │ │ │ ├── propertygrid.css │ │ │ ├── messager.css │ │ │ ├── accordion.css │ │ │ ├── splitbutton.css │ │ │ ├── combo.css │ │ │ └── spinner.css │ │ └── bootstrap │ │ │ ├── images │ │ │ ├── Thumbs.db │ │ │ ├── blank.gif │ │ │ ├── loading.gif │ │ │ ├── tabs_icons.png │ │ │ ├── tree_icons.png │ │ │ ├── combo_arrow.png │ │ │ ├── datebox_arrow.png │ │ │ ├── layout_arrows.png │ │ │ ├── linkbutton_bg.png │ │ │ ├── menu_arrows.png │ │ │ ├── panel_tools.png │ │ │ ├── slider_handle.png │ │ │ ├── calendar_arrows.png │ │ │ ├── datagrid_icons.png │ │ │ ├── messager_icons.png │ │ │ ├── spinner_arrows.png │ │ │ ├── accordion_arrows.png │ │ │ ├── pagination_icons.png │ │ │ ├── searchbox_button.png │ │ │ └── validatebox_warning.png │ │ │ ├── validatebox.css │ │ │ ├── combobox.css │ │ │ ├── dialog.css │ │ │ ├── datebox.css │ │ │ ├── progressbar.css │ │ │ ├── menubutton.css │ │ │ ├── propertygrid.css │ │ │ ├── messager.css │ │ │ ├── accordion.css │ │ │ ├── splitbutton.css │ │ │ ├── combo.css │ │ │ └── spinner.css │ ├── demo │ │ ├── tabs │ │ │ ├── images │ │ │ │ ├── modem.png │ │ │ │ ├── pda.png │ │ │ │ ├── scanner.png │ │ │ │ └── tablet.png │ │ │ ├── _content.html │ │ │ └── tree_data1.json │ │ ├── form │ │ │ └── form_data1.json │ │ ├── datagrid │ │ │ ├── products.json │ │ │ └── datagrid_data2.json │ │ ├── demo.css │ │ ├── combobox │ │ │ ├── combobox_data1.json │ │ │ ├── remotedata.html │ │ │ ├── group.html │ │ │ ├── multiple.html │ │ │ ├── dynamicdata.html │ │ │ ├── combobox_data2.json │ │ │ └── customformat.html │ │ ├── tooltip │ │ │ ├── _dialog.html │ │ │ ├── _content.html │ │ │ ├── basic.html │ │ │ ├── customcontent.html │ │ │ └── ajax.html │ │ ├── panel │ │ │ ├── _content.html │ │ │ ├── loadcontent.html │ │ │ └── nestedpanel.html │ │ ├── accordion │ │ │ └── _content.html │ │ ├── layout │ │ │ ├── _content.html │ │ │ ├── propertygrid_data1.json │ │ │ ├── tree_data1.json │ │ │ └── full.html │ │ ├── datebox │ │ │ ├── basic.html │ │ │ ├── events.html │ │ │ ├── buttons.html │ │ │ └── validate.html │ │ ├── propertygrid │ │ │ ├── propertygrid_data1.json │ │ │ ├── groupformat.html │ │ │ └── customcolumns.html │ │ ├── calendar │ │ │ ├── basic.html │ │ │ └── firstday.html │ │ ├── timespinner │ │ │ ├── basic.html │ │ │ └── range.html │ │ ├── datetimebox │ │ │ ├── basic.html │ │ │ ├── initvalue.html │ │ │ └── showseconds.html │ │ ├── numberbox │ │ │ ├── range.html │ │ │ └── basic.html │ │ ├── tree │ │ │ ├── lines.html │ │ │ ├── icons.html │ │ │ ├── animation.html │ │ │ ├── dnd.html │ │ │ ├── tree_data1.json │ │ │ ├── editable.html │ │ │ ├── tree_data2.json │ │ │ └── formatting.html │ │ ├── treegrid │ │ │ ├── treegrid_data2.json │ │ │ ├── treegrid_data3.json │ │ │ └── basic.html │ │ ├── slider │ │ │ ├── basic.html │ │ │ ├── rule.html │ │ │ ├── vertical.html │ │ │ └── formattip.html │ │ ├── pagination │ │ │ ├── basic.html │ │ │ ├── simple.html │ │ │ ├── links.html │ │ │ ├── custombuttons.html │ │ │ └── attaching.html │ │ ├── numberspinner │ │ │ ├── range.html │ │ │ ├── increment.html │ │ │ └── basic.html │ │ ├── combotree │ │ │ ├── basic.html │ │ │ ├── tree_data1.json │ │ │ ├── initvalue.html │ │ │ └── multiple.html │ │ ├── searchbox │ │ │ ├── basic.html │ │ │ └── category.html │ │ ├── draggable │ │ │ ├── basic.html │ │ │ └── snap.html │ │ ├── window │ │ │ ├── basic.html │ │ │ ├── modalwindow.html │ │ │ └── inlinewindow.html │ │ ├── dialog │ │ │ └── basic.html │ │ ├── progressbar │ │ │ └── basic.html │ │ ├── linkbutton │ │ │ ├── basic.html │ │ │ └── toggle.html │ │ ├── resizable │ │ │ └── basic.html │ │ └── messager │ │ │ └── interactive.html │ ├── readme.txt │ └── license_commercial.txt ├── jsp │ └── main.jsp ├── temp.jsp ├── index.jsp ├── json.jsp └── common │ └── common.jspf ├── .gitattributes ├── src └── cn │ └── mobile │ └── scm │ ├── dao │ ├── BuyOrderMapper.java │ ├── AccountRecordsMapper.java │ ├── GoodsMapper.java │ ├── AccountMapper.java │ ├── BuyOrderDetailMapper.java │ ├── SysParamMapper.java │ ├── SupplierMapper.java │ ├── AccountMapper.xml │ ├── BaseMapper.java │ └── SysParamMapper.xml │ ├── service │ ├── GoodsService.java │ ├── AccountService.java │ ├── BuyOrderService.java │ ├── SysParamService.java │ ├── impl │ │ └── GoodsServiceImpl.java │ ├── SupplierService.java │ └── BaseService.java │ └── action │ ├── BaseAction.java │ ├── GoodsAction.java │ └── AccountAction.java ├── config ├── myBatis-config.xml ├── log4j.properties └── spring-mvc.xml ├── readme.md └── test └── cn └── mobile └── scm └── test └── TestDeptDao.java /WebRoot/easyui.jsp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /WebRoot/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /WebRoot/js/jscharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/js/jscharts.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js linguist-language=Java 2 | *.css linguist-language=Java 3 | *.html linguist-language=Java 4 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/asm-3.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/WEB-INF/lib/asm-3.3.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/c3p0-0.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/WEB-INF/lib/c3p0-0.9.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/cglib-2.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/WEB-INF/lib/cglib-2.2.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/log4j-1.2.17.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/WEB-INF/lib/log4j-1.2.17.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/mybatis-3.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/WEB-INF/lib/mybatis-3.2.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/slf4j-api-1.7.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/WEB-INF/lib/slf4j-api-1.7.5.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/asm-3.2.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/WEB-INF/lib/asm-3.2.0.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/javassist-3.17.1-GA.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/WEB-INF/lib/javassist-3.17.1-GA.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/mybatis-spring-1.2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/WEB-INF/lib/mybatis-spring-1.2.0.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/slf4j-log4j12-1.7.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/WEB-INF/lib/slf4j-log4j12-1.7.5.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jackson-core-asl-1.7.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/WEB-INF/lib/jackson-core-asl-1.7.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jackson-mapper-asl-1.7.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/WEB-INF/lib/jackson-mapper-asl-1.7.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-aop-3.2.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/WEB-INF/lib/spring-aop-3.2.0.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-core-3.2.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/WEB-INF/lib/spring-core-3.2.0.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-jdbc-3.2.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/WEB-INF/lib/spring-jdbc-3.2.0.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-orm-3.2.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/WEB-INF/lib/spring-orm-3.2.0.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-test-3.2.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/WEB-INF/lib/spring-test-3.2.0.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-web-3.2.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/WEB-INF/lib/spring-web-3.2.0.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/icons/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/icons/back.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/icons/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/icons/cut.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/icons/help.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/icons/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/icons/no.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/icons/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/icons/ok.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/icons/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/icons/redo.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/icons/sum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/icons/sum.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/icons/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/icons/tip.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/icons/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/icons/undo.png -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-beans-3.2.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/WEB-INF/lib/spring-beans-3.2.0.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-webmvc-3.2.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/WEB-INF/lib/spring-webmvc-3.2.0.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/icons/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/icons/blank.gif -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/icons/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/icons/cancel.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/icons/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/icons/filter.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/icons/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/icons/pencil.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/icons/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/icons/print.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/icons/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/icons/reload.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/icons/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/icons/search.png -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-context-3.2.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/WEB-INF/lib/spring-context-3.2.0.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/tabs/images/modem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/demo/tabs/images/modem.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/tabs/images/pda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/demo/tabs/images/pda.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/icons/edit_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/icons/edit_add.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/icons/filesave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/icons/filesave.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/icons/mini_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/icons/mini_add.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/icons/mini_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/icons/mini_edit.png -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/mysql-connector-java-5.1.26-bin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/WEB-INF/lib/mysql-connector-java-5.1.26-bin.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-expression-3.2.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/WEB-INF/lib/spring-expression-3.2.0.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/tabs/images/scanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/demo/tabs/images/scanner.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/tabs/images/tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/demo/tabs/images/tablet.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/gray/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/gray/images/Thumbs.db -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/gray/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/gray/images/blank.gif -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/icons/edit_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/icons/edit_remove.png -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/com.springsource.net.sf.cglib-2.2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/WEB-INF/lib/com.springsource.net.sf.cglib-2.2.0.jar -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/black/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/black/images/Thumbs.db -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/black/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/black/images/blank.gif -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/black/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/black/images/loading.gif -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/default/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/default/images/Thumbs.db -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/default/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/default/images/blank.gif -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/gray/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/gray/images/loading.gif -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/icons/mini_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/icons/mini_refresh.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/metro/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/metro/images/Thumbs.db -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/metro/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/metro/images/blank.gif -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/metro/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/metro/images/loading.gif -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/Thumbs.db -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/blank.gif -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/default/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/default/images/loading.gif -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/gray/images/tabs_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/gray/images/tabs_icons.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/gray/images/tree_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/gray/images/tree_icons.png -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/com.springsource.org.aopalliance-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/WEB-INF/lib/com.springsource.org.aopalliance-1.0.0.jar -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/black/images/combo_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/black/images/combo_arrow.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/black/images/menu_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/black/images/menu_arrows.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/black/images/panel_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/black/images/panel_tools.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/black/images/tabs_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/black/images/tabs_icons.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/black/images/tree_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/black/images/tree_icons.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/loading.gif -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/default/images/tabs_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/default/images/tabs_icons.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/default/images/tree_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/default/images/tree_icons.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/gray/images/combo_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/gray/images/combo_arrow.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/gray/images/datebox_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/gray/images/datebox_arrow.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/gray/images/layout_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/gray/images/layout_arrows.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/gray/images/linkbutton_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/gray/images/linkbutton_bg.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/gray/images/menu_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/gray/images/menu_arrows.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/gray/images/panel_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/gray/images/panel_tools.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/gray/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/gray/images/slider_handle.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/metro/images/combo_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/metro/images/combo_arrow.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/metro/images/menu_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/metro/images/menu_arrows.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/metro/images/panel_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/metro/images/panel_tools.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/metro/images/tabs_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/metro/images/tabs_icons.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/metro/images/tree_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/metro/images/tree_icons.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/black/images/datagrid_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/black/images/datagrid_icons.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/black/images/datebox_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/black/images/datebox_arrow.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/black/images/layout_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/black/images/layout_arrows.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/black/images/linkbutton_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/black/images/linkbutton_bg.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/black/images/messager_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/black/images/messager_icons.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/black/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/black/images/slider_handle.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/black/images/spinner_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/black/images/spinner_arrows.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/tabs_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/tabs_icons.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/tree_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/tree_icons.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/default/images/combo_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/default/images/combo_arrow.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/default/images/menu_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/default/images/menu_arrows.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/default/images/panel_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/default/images/panel_tools.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/gray/images/calendar_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/gray/images/calendar_arrows.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/gray/images/datagrid_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/gray/images/datagrid_icons.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/gray/images/messager_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/gray/images/messager_icons.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/gray/images/spinner_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/gray/images/spinner_arrows.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/metro/images/datagrid_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/metro/images/datagrid_icons.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/metro/images/datebox_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/metro/images/datebox_arrow.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/metro/images/layout_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/metro/images/layout_arrows.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/metro/images/linkbutton_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/metro/images/linkbutton_bg.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/metro/images/messager_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/metro/images/messager_icons.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/metro/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/metro/images/slider_handle.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/metro/images/spinner_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/metro/images/spinner_arrows.png -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.transaction-3.2.2.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/WEB-INF/lib/org.springframework.transaction-3.2.2.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/black/images/accordion_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/black/images/accordion_arrows.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/black/images/calendar_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/black/images/calendar_arrows.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/black/images/pagination_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/black/images/pagination_icons.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/black/images/searchbox_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/black/images/searchbox_button.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/combo_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/combo_arrow.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/datebox_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/datebox_arrow.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/layout_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/layout_arrows.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/linkbutton_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/linkbutton_bg.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/menu_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/menu_arrows.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/panel_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/panel_tools.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/slider_handle.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/default/images/calendar_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/default/images/calendar_arrows.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/default/images/datagrid_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/default/images/datagrid_icons.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/default/images/datebox_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/default/images/datebox_arrow.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/default/images/layout_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/default/images/layout_arrows.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/default/images/linkbutton_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/default/images/linkbutton_bg.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/default/images/messager_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/default/images/messager_icons.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/default/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/default/images/slider_handle.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/default/images/spinner_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/default/images/spinner_arrows.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/gray/images/accordion_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/gray/images/accordion_arrows.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/gray/images/pagination_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/gray/images/pagination_icons.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/gray/images/searchbox_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/gray/images/searchbox_button.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/metro/images/accordion_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/metro/images/accordion_arrows.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/metro/images/calendar_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/metro/images/calendar_arrows.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/metro/images/pagination_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/metro/images/pagination_icons.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/metro/images/searchbox_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/metro/images/searchbox_button.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/black/images/validatebox_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/black/images/validatebox_warning.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/calendar_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/calendar_arrows.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/datagrid_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/datagrid_icons.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/messager_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/messager_icons.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/spinner_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/spinner_arrows.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/default/images/accordion_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/default/images/accordion_arrows.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/default/images/pagination_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/default/images/pagination_icons.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/default/images/searchbox_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/default/images/searchbox_button.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/gray/images/validatebox_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/gray/images/validatebox_warning.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/metro/images/validatebox_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/metro/images/validatebox_warning.png -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/com.springsource.org.apache.commons.logging-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/WEB-INF/lib/com.springsource.org.apache.commons.logging-1.1.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/com.springsource.org.aspectj.weaver-1.6.8.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/WEB-INF/lib/com.springsource.org.aspectj.weaver-1.6.8.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/accordion_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/accordion_arrows.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/pagination_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/pagination_icons.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/searchbox_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/searchbox_button.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/default/images/validatebox_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/default/images/validatebox_warning.png -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/form/form_data1.json: -------------------------------------------------------------------------------- 1 | { 2 | "name":"easyui", 3 | "email":"easyui@gmail.com", 4 | "subject":"Subject Title", 5 | "message":"Message Content", 6 | "language":"en" 7 | } -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/validatebox_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcoolish/scm32/HEAD/WebRoot/jquery-easyui-1.3.5/themes/bootstrap/images/validatebox_warning.png -------------------------------------------------------------------------------- /src/cn/mobile/scm/dao/BuyOrderMapper.java: -------------------------------------------------------------------------------- 1 | package cn.mobile.scm.dao; 2 | 3 | import cn.mobile.scm.entity.BuyOrder; 4 | 5 | public interface BuyOrderMapper extends BaseMapper { 6 | 7 | } -------------------------------------------------------------------------------- /src/cn/mobile/scm/service/GoodsService.java: -------------------------------------------------------------------------------- 1 | package cn.mobile.scm.service; 2 | 3 | import cn.mobile.scm.entity.Goods; 4 | 5 | public interface GoodsService extends BaseService { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /WebRoot/jsp/main.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | 3 | 4 | 5 | 6 | 这是一个测试页面。 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/cn/mobile/scm/dao/AccountRecordsMapper.java: -------------------------------------------------------------------------------- 1 | package cn.mobile.scm.dao; 2 | 3 | import cn.mobile.scm.entity.AccountRecords; 4 | 5 | 6 | public interface AccountRecordsMapper extends BaseMapper { 7 | 8 | } -------------------------------------------------------------------------------- /src/cn/mobile/scm/service/AccountService.java: -------------------------------------------------------------------------------- 1 | package cn.mobile.scm.service; 2 | 3 | import cn.mobile.scm.entity.Account; 4 | 5 | public interface AccountService extends BaseService{ 6 | 7 | public Account login(Account account); 8 | } 9 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/readme.txt: -------------------------------------------------------------------------------- 1 | Current Version: 1.3.5 2 | ====================== 3 | This software is allowed to use under GPL or you need to buy commercial license for better support or other purpose. 4 | Please contact us at info@jeasyui.com 5 | -------------------------------------------------------------------------------- /src/cn/mobile/scm/dao/GoodsMapper.java: -------------------------------------------------------------------------------- 1 | package cn.mobile.scm.dao; 2 | 3 | import cn.mobile.scm.entity.Goods; 4 | import java.util.List; 5 | import org.apache.ibatis.annotations.Param; 6 | 7 | public interface GoodsMapper extends BaseMapper { 8 | 9 | } -------------------------------------------------------------------------------- /src/cn/mobile/scm/service/BuyOrderService.java: -------------------------------------------------------------------------------- 1 | package cn.mobile.scm.service; 2 | 3 | import cn.mobile.scm.entity.BuyOrder; 4 | 5 | public interface BuyOrderService extends BaseService { 6 | 7 | public int insertBuyOrder(BuyOrder buyOrder) throws Exception; 8 | 9 | } 10 | -------------------------------------------------------------------------------- /WebRoot/temp.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 3 | <%@include file="common/common.jspf" %> 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/cn/mobile/scm/service/SysParamService.java: -------------------------------------------------------------------------------- 1 | package cn.mobile.scm.service; 2 | 3 | import java.util.Map; 4 | 5 | import cn.mobile.scm.entity.SysParam; 6 | 7 | public interface SysParamService extends BaseService { 8 | public MapselectList(); 9 | 10 | } 11 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/black/validatebox.css: -------------------------------------------------------------------------------- 1 | .validatebox-invalid { 2 | background-image: url('images/validatebox_warning.png'); 3 | background-repeat: no-repeat; 4 | background-position: right center; 5 | border-color: #ffa8a8; 6 | background-color: #fff3f3; 7 | color: #000; 8 | } 9 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/default/validatebox.css: -------------------------------------------------------------------------------- 1 | .validatebox-invalid { 2 | background-image: url('images/validatebox_warning.png'); 3 | background-repeat: no-repeat; 4 | background-position: right center; 5 | border-color: #ffa8a8; 6 | background-color: #fff3f3; 7 | color: #000; 8 | } 9 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/gray/validatebox.css: -------------------------------------------------------------------------------- 1 | .validatebox-invalid { 2 | background-image: url('images/validatebox_warning.png'); 3 | background-repeat: no-repeat; 4 | background-position: right center; 5 | border-color: #ffa8a8; 6 | background-color: #fff3f3; 7 | color: #000; 8 | } 9 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/metro/validatebox.css: -------------------------------------------------------------------------------- 1 | .validatebox-invalid { 2 | background-image: url('images/validatebox_warning.png'); 3 | background-repeat: no-repeat; 4 | background-position: right center; 5 | border-color: #ffa8a8; 6 | background-color: #fff3f3; 7 | color: #000; 8 | } 9 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/bootstrap/validatebox.css: -------------------------------------------------------------------------------- 1 | .validatebox-invalid { 2 | background-image: url('images/validatebox_warning.png'); 3 | background-repeat: no-repeat; 4 | background-position: right center; 5 | border-color: #ffa8a8; 6 | background-color: #fff3f3; 7 | color: #000; 8 | } 9 | -------------------------------------------------------------------------------- /src/cn/mobile/scm/dao/AccountMapper.java: -------------------------------------------------------------------------------- 1 | package cn.mobile.scm.dao; 2 | 3 | import cn.mobile.scm.entity.Account; 4 | 5 | import java.util.List; 6 | import org.apache.ibatis.annotations.Param; 7 | 8 | public interface AccountMapper extends BaseMapper{ 9 | 10 | public Account login(Account account); 11 | } -------------------------------------------------------------------------------- /src/cn/mobile/scm/dao/BuyOrderDetailMapper.java: -------------------------------------------------------------------------------- 1 | package cn.mobile.scm.dao; 2 | 3 | import cn.mobile.scm.entity.BuyOrderDetail; 4 | import java.util.List; 5 | import org.apache.ibatis.annotations.Param; 6 | 7 | public interface BuyOrderDetailMapper extends BaseMapper { 8 | public int insertList(List buyOrderDetails); 9 | 10 | } -------------------------------------------------------------------------------- /src/cn/mobile/scm/service/impl/GoodsServiceImpl.java: -------------------------------------------------------------------------------- 1 | package cn.mobile.scm.service.impl; 2 | 3 | import org.springframework.stereotype.Service; 4 | 5 | import cn.mobile.scm.entity.Goods; 6 | import cn.mobile.scm.service.GoodsService; 7 | 8 | @Service("goodsService") 9 | public class GoodsServiceImpl extends BaseServiceImpl implements GoodsService { 10 | 11 | } 12 | -------------------------------------------------------------------------------- /src/cn/mobile/scm/dao/SysParamMapper.java: -------------------------------------------------------------------------------- 1 | package cn.mobile.scm.dao; 2 | 3 | import cn.mobile.scm.entity.SysParam; 4 | import java.util.List; 5 | import org.apache.ibatis.annotations.Param; 6 | 7 | public interface SysParamMapper extends BaseMapper { 8 | public List selectList(String type); 9 | public List selectOthreTable(String sql); 10 | 11 | } -------------------------------------------------------------------------------- /src/cn/mobile/scm/service/SupplierService.java: -------------------------------------------------------------------------------- 1 | package cn.mobile.scm.service; 2 | 3 | import java.util.List; 4 | import java.util.Map; 5 | 6 | import cn.mobile.scm.entity.Page; 7 | import cn.mobile.scm.entity.Supplier; 8 | 9 | public interface SupplierService extends BaseService{ 10 | 11 | List> selectSupplier(Map paramMap); 12 | 13 | 14 | } 15 | -------------------------------------------------------------------------------- /src/cn/mobile/scm/dao/SupplierMapper.java: -------------------------------------------------------------------------------- 1 | package cn.mobile.scm.dao; 2 | 3 | 4 | import java.util.List; 5 | import java.util.Map; 6 | 7 | import cn.mobile.scm.entity.Supplier; 8 | 9 | public interface SupplierMapper extends BaseMapper{ 10 | 11 | //public int insertSupplier(Supplier supplier) throws Exception; 12 | List> selectSupplier(Map paramMap); 13 | } -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/datagrid/products.json: -------------------------------------------------------------------------------- 1 | [ 2 | {"productid":"FI-SW-01","productname":"Koi"}, 3 | {"productid":"K9-DL-01","productname":"Dalmation"}, 4 | {"productid":"RP-SN-01","productname":"Rattlesnake"}, 5 | {"productid":"RP-LI-02","productname":"Iguana"}, 6 | {"productid":"FL-DSH-01","productname":"Manx"}, 7 | {"productid":"FL-DLH-02","productname":"Persian"}, 8 | {"productid":"AV-CB-01","productname":"Amazon Parrot"} 9 | ] 10 | -------------------------------------------------------------------------------- /WebRoot/js/common.js: -------------------------------------------------------------------------------- 1 | function valueToText(str, value) { 2 | //alert(str); 3 | str = str.substring(1, str.length - 1); 4 | //alert(str); 5 | var array = str.split(","); 6 | for ( var i = 0; i < array.length; i++) { 7 | //alert(array[i]); 8 | var array2 = array[i].split("="); 9 | //alert("array2[0]" + array2[0]); 10 | //alert("value" + value); 11 | if ($.trim(array2[0]) == $.trim(value)) { 12 | return array2[1]; 13 | } 14 | } 15 | 16 | return "类型没有定义"; 17 | } -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/demo.css: -------------------------------------------------------------------------------- 1 | *{ 2 | font-size:12px; 3 | } 4 | body { 5 | font-family:helvetica,tahoma,verdana,sans-serif; 6 | padding:20px; 7 | font-size:13px; 8 | margin:0; 9 | } 10 | h2 { 11 | font-size:18px; 12 | font-weight:bold; 13 | margin:0; 14 | margin-bottom:15px; 15 | } 16 | .demo-info{ 17 | background:#FFFEE6; 18 | color:#8F5700; 19 | padding:12px; 20 | } 21 | .demo-tip{ 22 | width:16px; 23 | height:16px; 24 | margin-right:8px; 25 | float:left; 26 | } 27 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/black/combobox.css: -------------------------------------------------------------------------------- 1 | .combobox-item, 2 | .combobox-group { 3 | font-size: 12px; 4 | padding: 3px; 5 | padding-right: 0px; 6 | } 7 | .combobox-item-disabled { 8 | opacity: 0.5; 9 | filter: alpha(opacity=50); 10 | } 11 | .combobox-gitem { 12 | padding-left: 10px; 13 | } 14 | .combobox-group { 15 | font-weight: bold; 16 | } 17 | .combobox-item-hover { 18 | background-color: #777; 19 | color: #fff; 20 | } 21 | .combobox-item-selected { 22 | background-color: #0052A3; 23 | color: #fff; 24 | } 25 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/gray/combobox.css: -------------------------------------------------------------------------------- 1 | .combobox-item, 2 | .combobox-group { 3 | font-size: 12px; 4 | padding: 3px; 5 | padding-right: 0px; 6 | } 7 | .combobox-item-disabled { 8 | opacity: 0.5; 9 | filter: alpha(opacity=50); 10 | } 11 | .combobox-gitem { 12 | padding-left: 10px; 13 | } 14 | .combobox-group { 15 | font-weight: bold; 16 | } 17 | .combobox-item-hover { 18 | background-color: #e2e2e2; 19 | color: #000000; 20 | } 21 | .combobox-item-selected { 22 | background-color: #0092DC; 23 | color: #fff; 24 | } 25 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/metro/combobox.css: -------------------------------------------------------------------------------- 1 | .combobox-item, 2 | .combobox-group { 3 | font-size: 12px; 4 | padding: 3px; 5 | padding-right: 0px; 6 | } 7 | .combobox-item-disabled { 8 | opacity: 0.5; 9 | filter: alpha(opacity=50); 10 | } 11 | .combobox-gitem { 12 | padding-left: 10px; 13 | } 14 | .combobox-group { 15 | font-weight: bold; 16 | } 17 | .combobox-item-hover { 18 | background-color: #E6E6E6; 19 | color: #444; 20 | } 21 | .combobox-item-selected { 22 | background-color: #CCE6FF; 23 | color: #000; 24 | } 25 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/bootstrap/combobox.css: -------------------------------------------------------------------------------- 1 | .combobox-item, 2 | .combobox-group { 3 | font-size: 12px; 4 | padding: 3px; 5 | padding-right: 0px; 6 | } 7 | .combobox-item-disabled { 8 | opacity: 0.5; 9 | filter: alpha(opacity=50); 10 | } 11 | .combobox-gitem { 12 | padding-left: 10px; 13 | } 14 | .combobox-group { 15 | font-weight: bold; 16 | } 17 | .combobox-item-hover { 18 | background-color: #e6e6e6; 19 | color: #00438a; 20 | } 21 | .combobox-item-selected { 22 | background-color: #0081c2; 23 | color: #fff; 24 | } 25 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/default/combobox.css: -------------------------------------------------------------------------------- 1 | .combobox-item, 2 | .combobox-group { 3 | font-size: 12px; 4 | padding: 3px; 5 | padding-right: 0px; 6 | } 7 | .combobox-item-disabled { 8 | opacity: 0.5; 9 | filter: alpha(opacity=50); 10 | } 11 | .combobox-gitem { 12 | padding-left: 10px; 13 | } 14 | .combobox-group { 15 | font-weight: bold; 16 | } 17 | .combobox-item-hover { 18 | background-color: #eaf2ff; 19 | color: #000000; 20 | } 21 | .combobox-item-selected { 22 | background-color: #FBEC88; 23 | color: #000000; 24 | } 25 | -------------------------------------------------------------------------------- /WebRoot/index.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 16 |
17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /WebRoot/json.jsp: -------------------------------------------------------------------------------- 1 | 2 | 3 | this is a test page./title> 4 | <script type="text/javascript"> 5 | $( 6 | function(){ 7 | $("#bt1").click( 8 | function(){ 9 | $.post( 10 | "supplier/doAjax.action", 11 | {supId:1001,supName:"name1001"}, 12 | function(json){alert(json.supId+"||"+json.supName);}, 13 | "json" 14 | ); 15 | } 16 | ); 17 | } 18 | ); 19 | 20 | </script> 21 | 22 | </head> 23 | <body> 24 | <button id="bt1" >testJson</button> 25 | </body> 26 | </html> 27 | 28 | -------------------------------------------------------------------------------- /config/myBatis-config.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8" ?> 2 | <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" 3 | "http://mybatis.org/dtd/mybatis-3-config.dtd"> 4 | <configuration> 5 | <!-- 通过别名简化对类的使用 --> 6 | <typeAliases> 7 | <!-- <typeAlias type="cn.mobile.scm.entity.Dept" alias="Dept" /> --> 8 | 9 | <!-- 10 | 通过package, 可以直接指定package的名字, mybatis会自动扫描你指定包下面的javabean, 11 | --> 12 | 13 | <package name="cn.mobile.scm.entity"/> 14 | </typeAliases> 15 | <!-- 16 | <mappers> 17 | <mapper resource="cn/mobile/scm/entity/DeptMapper.xml" /> 18 | </mappers> --> 19 | 20 | </configuration> -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/black/dialog.css: -------------------------------------------------------------------------------- 1 | .dialog-content { 2 | overflow: auto; 3 | } 4 | .dialog-toolbar { 5 | padding: 2px 5px; 6 | } 7 | .dialog-tool-separator { 8 | float: left; 9 | height: 24px; 10 | border-left: 1px solid #444; 11 | border-right: 1px solid #777; 12 | margin: 2px 1px; 13 | } 14 | .dialog-button { 15 | padding: 5px; 16 | text-align: right; 17 | } 18 | .dialog-button .l-btn { 19 | margin-left: 5px; 20 | } 21 | .dialog-toolbar, 22 | .dialog-button { 23 | background: #555; 24 | } 25 | .dialog-toolbar { 26 | border-bottom: 1px solid #222; 27 | } 28 | .dialog-button { 29 | border-top: 1px solid #222; 30 | } 31 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/gray/dialog.css: -------------------------------------------------------------------------------- 1 | .dialog-content { 2 | overflow: auto; 3 | } 4 | .dialog-toolbar { 5 | padding: 2px 5px; 6 | } 7 | .dialog-tool-separator { 8 | float: left; 9 | height: 24px; 10 | border-left: 1px solid #ccc; 11 | border-right: 1px solid #fff; 12 | margin: 2px 1px; 13 | } 14 | .dialog-button { 15 | padding: 5px; 16 | text-align: right; 17 | } 18 | .dialog-button .l-btn { 19 | margin-left: 5px; 20 | } 21 | .dialog-toolbar, 22 | .dialog-button { 23 | background: #fafafa; 24 | } 25 | .dialog-toolbar { 26 | border-bottom: 1px solid #ddd; 27 | } 28 | .dialog-button { 29 | border-top: 1px solid #ddd; 30 | } 31 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/metro/dialog.css: -------------------------------------------------------------------------------- 1 | .dialog-content { 2 | overflow: auto; 3 | } 4 | .dialog-toolbar { 5 | padding: 2px 5px; 6 | } 7 | .dialog-tool-separator { 8 | float: left; 9 | height: 24px; 10 | border-left: 1px solid #ddd; 11 | border-right: 1px solid #fff; 12 | margin: 2px 1px; 13 | } 14 | .dialog-button { 15 | padding: 5px; 16 | text-align: right; 17 | } 18 | .dialog-button .l-btn { 19 | margin-left: 5px; 20 | } 21 | .dialog-toolbar, 22 | .dialog-button { 23 | background: #fff; 24 | } 25 | .dialog-toolbar { 26 | border-bottom: 1px solid #ddd; 27 | } 28 | .dialog-button { 29 | border-top: 1px solid #ddd; 30 | } 31 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/bootstrap/dialog.css: -------------------------------------------------------------------------------- 1 | .dialog-content { 2 | overflow: auto; 3 | } 4 | .dialog-toolbar { 5 | padding: 2px 5px; 6 | } 7 | .dialog-tool-separator { 8 | float: left; 9 | height: 24px; 10 | border-left: 1px solid #ccc; 11 | border-right: 1px solid #fff; 12 | margin: 2px 1px; 13 | } 14 | .dialog-button { 15 | padding: 5px; 16 | text-align: right; 17 | } 18 | .dialog-button .l-btn { 19 | margin-left: 5px; 20 | } 21 | .dialog-toolbar, 22 | .dialog-button { 23 | background: #F5F5F5; 24 | } 25 | .dialog-toolbar { 26 | border-bottom: 1px solid #e6e6e6; 27 | } 28 | .dialog-button { 29 | border-top: 1px solid #e6e6e6; 30 | } 31 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/default/dialog.css: -------------------------------------------------------------------------------- 1 | .dialog-content { 2 | overflow: auto; 3 | } 4 | .dialog-toolbar { 5 | padding: 2px 5px; 6 | } 7 | .dialog-tool-separator { 8 | float: left; 9 | height: 24px; 10 | border-left: 1px solid #ccc; 11 | border-right: 1px solid #fff; 12 | margin: 2px 1px; 13 | } 14 | .dialog-button { 15 | padding: 5px; 16 | text-align: right; 17 | } 18 | .dialog-button .l-btn { 19 | margin-left: 5px; 20 | } 21 | .dialog-toolbar, 22 | .dialog-button { 23 | background: #F4F4F4; 24 | } 25 | .dialog-toolbar { 26 | border-bottom: 1px solid #dddddd; 27 | } 28 | .dialog-button { 29 | border-top: 1px solid #dddddd; 30 | } 31 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/combobox/combobox_data1.json: -------------------------------------------------------------------------------- 1 | [{ 2 | "id":1, 3 | "text":"Java", 4 | "desc":"Write once, run anywhere" 5 | },{ 6 | "id":2, 7 | "text":"C#", 8 | "desc":"One of the programming languages designed for the Common Language Infrastructure" 9 | },{ 10 | "id":3, 11 | "text":"Ruby", 12 | "selected":true, 13 | "desc":"A dynamic, reflective, general-purpose object-oriented programming language" 14 | },{ 15 | "id":4, 16 | "text":"Perl", 17 | "desc":"A high-level, general-purpose, interpreted, dynamic programming language" 18 | },{ 19 | "id":5, 20 | "text":"Basic", 21 | "desc":"A family of general-purpose, high-level programming languages" 22 | }] -------------------------------------------------------------------------------- /src/cn/mobile/scm/service/BaseService.java: -------------------------------------------------------------------------------- 1 | package cn.mobile.scm.service; 2 | 3 | import cn.mobile.scm.entity.Page; 4 | 5 | public interface BaseService<T> { 6 | //添加单个对象 7 | public int insert (T entity) throws Exception; 8 | 9 | //修改单个对象 10 | public int update(T entity) throws Exception; 11 | 12 | //删除单个对象 13 | public int delete(T entity) throws Exception; 14 | 15 | //通过主键(数组)批量删除数据 16 | public int deleteList(String [] pks) throws Exception; 17 | 18 | 19 | //查询单个对象 20 | public T select(T entity); 21 | 22 | //通过关键字分页查询 23 | public Page<T> selectPage(Page<T> page); 24 | 25 | 26 | //通过多条件分页查询 27 | public Page<T> selectPageUseDyc(Page<T> page); 28 | } 29 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/tooltip/_dialog.html: -------------------------------------------------------------------------------- 1 | <!DOCTYPE html> 2 | <html> 3 | <head> 4 | <meta charset="UTF-8"> 5 | <title>Dialog Content 6 | 7 | 8 |
9 |
10 |
User Name:
11 | 12 |
13 |
14 |
Password:
15 | 16 |
17 |
18 | Login 19 | Cancel 20 |
21 |
22 | 23 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | ## 进销存管理系统 2 | 3 | 4 | 5 | 开发环境:Windows7、MyEclipse+Tomcat7.0、Mysql5.7等开发工具。 6 | 7 | 项目描述:SCM手机进销存管理系统是一款通专业的手机进销存管理系统,该系统是集采购、销售及库存管理于一体,囊括了企业日常经营管理的全过程。 8 | 系统主要包括以下各个模块:(本项目主要是完成基础通用模块的设计和编写) 9 | 10 | 1.系统管理与维护 11 | 可以提供:公司信息设置、用户与权限设置、登入与退出、软件帮助、年终结算、查看日志 12 | 13 | 备份/恢复数据库、同时实现前端界面及与服务端交互、Jscharts:前端图形报表工具,无需安装第三方插件、有柱状、饼状、线形等多种图形,支持二维三维图形展现。 14 | 15 | 2.基础数据管理: 在基本设置中可以对数据字典(系统参数)、商品信息、供货商、客户、员工、仓库、操作员、会员等基本信息进行管理。 16 | 17 | 3.进货管理:可以进行采购进货、采购退货及相关单据和账务查询。 18 | 19 | 4.销售管理 :可以进行商品销售、顾客退货及相关单据、账务查询。 20 | 21 | 5.库存管理 :可以进行库存调拔、报损报溢、库存盘点、库存报警查询。 22 | 23 | 6.价保返利:可以进行供应商价保、供应商返利、供应商价保返利查询,客户价保、返利及相关查询 24 | 25 | 7.统计与分析:提供商品采购统计、业务员采购统计、库存成本统计、商品销售统计、业务员销售统计、商品销售排行、供应商供货统计、商品销售统计等。 26 | 27 | 8.日常管理 28 | 提供对供应商供货情况及合同等信息、客户的消费及合同等、营业费用、换班等进行管理。 29 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/panel/_content.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AJAX Content 6 | 7 | 8 |

Here is the content loaded via AJAX.

9 |
    10 |
  • easyui is a collection of user-interface plugin based on jQuery.
  • 11 |
  • easyui provides essential functionality for building modern, interactive, javascript applications.
  • 12 |
  • using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.
  • 13 |
  • complete framework for HTML5 web page.
  • 14 |
  • easyui save your time and scales while developing your products.
  • 15 |
  • easyui is very easy but powerful.
  • 16 |
17 | 18 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/tabs/_content.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AJAX Content 6 | 7 | 8 |

Here is the content loaded via AJAX.

9 |
    10 |
  • easyui is a collection of user-interface plugin based on jQuery.
  • 11 |
  • easyui provides essential functionality for building modern, interactive, javascript applications.
  • 12 |
  • using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.
  • 13 |
  • complete framework for HTML5 web page.
  • 14 |
  • easyui save your time and scales while developing your products.
  • 15 |
  • easyui is very easy but powerful.
  • 16 |
17 | 18 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/accordion/_content.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AJAX Content 6 | 7 | 8 |

Here is the content loaded via AJAX.

9 |
    10 |
  • easyui is a collection of user-interface plugin based on jQuery.
  • 11 |
  • easyui provides essential functionality for building modern, interactive, javascript applications.
  • 12 |
  • using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.
  • 13 |
  • complete framework for HTML5 web page.
  • 14 |
  • easyui save your time and scales while developing your products.
  • 15 |
  • easyui is very easy but powerful.
  • 16 |
17 | 18 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/tooltip/_content.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AJAX Content 6 | 7 | 8 |

Here is the content loaded via AJAX.

9 |
    10 |
  • easyui is a collection of user-interface plugin based on jQuery.
  • 11 |
  • easyui provides essential functionality for building modern, interactive, javascript applications.
  • 12 |
  • using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.
  • 13 |
  • complete framework for HTML5 web page.
  • 14 |
  • easyui save your time and scales while developing your products.
  • 15 |
  • easyui is very easy but powerful.
  • 16 |
17 | 18 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/layout/_content.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AJAX Content 6 | 7 | 8 |

jQuery EasyUI framework help you build your web page easily.

9 |
    10 |
  • easyui is a collection of user-interface plugin based on jQuery.
  • 11 |
  • easyui provides essential functionality for building modern, interactive, javascript applications.
  • 12 |
  • using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.
  • 13 |
  • complete framework for HTML5 web page.
  • 14 |
  • easyui save your time and scales while developing your products.
  • 15 |
  • easyui is very easy but powerful.
  • 16 |
17 | 18 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/black/datebox.css: -------------------------------------------------------------------------------- 1 | .datebox-calendar-inner { 2 | height: 180px; 3 | } 4 | .datebox-button { 5 | height: 18px; 6 | padding: 2px 5px; 7 | text-align: center; 8 | } 9 | .datebox-button a { 10 | font-size: 12px; 11 | font-weight: bold; 12 | text-decoration: none; 13 | opacity: 0.6; 14 | filter: alpha(opacity=60); 15 | } 16 | .datebox-button a:hover { 17 | opacity: 1.0; 18 | filter: alpha(opacity=100); 19 | } 20 | .datebox-current, 21 | .datebox-close { 22 | float: left; 23 | } 24 | .datebox-close { 25 | float: right; 26 | } 27 | .datebox .combo-arrow { 28 | background-image: url('images/datebox_arrow.png'); 29 | background-position: center center; 30 | } 31 | .datebox-button { 32 | background-color: #555; 33 | } 34 | .datebox-button a { 35 | color: #fff; 36 | } 37 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/gray/datebox.css: -------------------------------------------------------------------------------- 1 | .datebox-calendar-inner { 2 | height: 180px; 3 | } 4 | .datebox-button { 5 | height: 18px; 6 | padding: 2px 5px; 7 | text-align: center; 8 | } 9 | .datebox-button a { 10 | font-size: 12px; 11 | font-weight: bold; 12 | text-decoration: none; 13 | opacity: 0.6; 14 | filter: alpha(opacity=60); 15 | } 16 | .datebox-button a:hover { 17 | opacity: 1.0; 18 | filter: alpha(opacity=100); 19 | } 20 | .datebox-current, 21 | .datebox-close { 22 | float: left; 23 | } 24 | .datebox-close { 25 | float: right; 26 | } 27 | .datebox .combo-arrow { 28 | background-image: url('images/datebox_arrow.png'); 29 | background-position: center center; 30 | } 31 | .datebox-button { 32 | background-color: #fafafa; 33 | } 34 | .datebox-button a { 35 | color: #444; 36 | } 37 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/metro/datebox.css: -------------------------------------------------------------------------------- 1 | .datebox-calendar-inner { 2 | height: 180px; 3 | } 4 | .datebox-button { 5 | height: 18px; 6 | padding: 2px 5px; 7 | text-align: center; 8 | } 9 | .datebox-button a { 10 | font-size: 12px; 11 | font-weight: bold; 12 | text-decoration: none; 13 | opacity: 0.6; 14 | filter: alpha(opacity=60); 15 | } 16 | .datebox-button a:hover { 17 | opacity: 1.0; 18 | filter: alpha(opacity=100); 19 | } 20 | .datebox-current, 21 | .datebox-close { 22 | float: left; 23 | } 24 | .datebox-close { 25 | float: right; 26 | } 27 | .datebox .combo-arrow { 28 | background-image: url('images/datebox_arrow.png'); 29 | background-position: center center; 30 | } 31 | .datebox-button { 32 | background-color: #fff; 33 | } 34 | .datebox-button a { 35 | color: #777; 36 | } 37 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/bootstrap/datebox.css: -------------------------------------------------------------------------------- 1 | .datebox-calendar-inner { 2 | height: 180px; 3 | } 4 | .datebox-button { 5 | height: 18px; 6 | padding: 2px 5px; 7 | text-align: center; 8 | } 9 | .datebox-button a { 10 | font-size: 12px; 11 | font-weight: bold; 12 | text-decoration: none; 13 | opacity: 0.6; 14 | filter: alpha(opacity=60); 15 | } 16 | .datebox-button a:hover { 17 | opacity: 1.0; 18 | filter: alpha(opacity=100); 19 | } 20 | .datebox-current, 21 | .datebox-close { 22 | float: left; 23 | } 24 | .datebox-close { 25 | float: right; 26 | } 27 | .datebox .combo-arrow { 28 | background-image: url('images/datebox_arrow.png'); 29 | background-position: center center; 30 | } 31 | .datebox-button { 32 | background-color: #F5F5F5; 33 | } 34 | .datebox-button a { 35 | color: #444; 36 | } 37 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/default/datebox.css: -------------------------------------------------------------------------------- 1 | .datebox-calendar-inner { 2 | height: 180px; 3 | } 4 | .datebox-button { 5 | height: 18px; 6 | padding: 2px 5px; 7 | text-align: center; 8 | } 9 | .datebox-button a { 10 | font-size: 12px; 11 | font-weight: bold; 12 | text-decoration: none; 13 | opacity: 0.6; 14 | filter: alpha(opacity=60); 15 | } 16 | .datebox-button a:hover { 17 | opacity: 1.0; 18 | filter: alpha(opacity=100); 19 | } 20 | .datebox-current, 21 | .datebox-close { 22 | float: left; 23 | } 24 | .datebox-close { 25 | float: right; 26 | } 27 | .datebox .combo-arrow { 28 | background-image: url('images/datebox_arrow.png'); 29 | background-position: center center; 30 | } 31 | .datebox-button { 32 | background-color: #F4F4F4; 33 | } 34 | .datebox-button a { 35 | color: #444; 36 | } 37 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/black/progressbar.css: -------------------------------------------------------------------------------- 1 | .progressbar { 2 | border-width: 1px; 3 | border-style: solid; 4 | -moz-border-radius: 5px 5px 5px 5px; 5 | -webkit-border-radius: 5px 5px 5px 5px; 6 | border-radius: 5px 5px 5px 5px; 7 | overflow: hidden; 8 | position: relative; 9 | } 10 | .progressbar-text { 11 | text-align: center; 12 | position: absolute; 13 | } 14 | .progressbar-value { 15 | position: relative; 16 | overflow: hidden; 17 | width: 0; 18 | -moz-border-radius: 5px 0 0 5px; 19 | -webkit-border-radius: 5px 0 0 5px; 20 | border-radius: 5px 0 0 5px; 21 | } 22 | .progressbar { 23 | border-color: #000; 24 | } 25 | .progressbar-text { 26 | color: #fff; 27 | font-size: 12px; 28 | } 29 | .progressbar-value .progressbar-text { 30 | background-color: #0052A3; 31 | color: #fff; 32 | } 33 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/metro/progressbar.css: -------------------------------------------------------------------------------- 1 | .progressbar { 2 | border-width: 1px; 3 | border-style: solid; 4 | -moz-border-radius: 0px 0px 0px 0px; 5 | -webkit-border-radius: 0px 0px 0px 0px; 6 | border-radius: 0px 0px 0px 0px; 7 | overflow: hidden; 8 | position: relative; 9 | } 10 | .progressbar-text { 11 | text-align: center; 12 | position: absolute; 13 | } 14 | .progressbar-value { 15 | position: relative; 16 | overflow: hidden; 17 | width: 0; 18 | -moz-border-radius: 0px 0 0 0px; 19 | -webkit-border-radius: 0px 0 0 0px; 20 | border-radius: 0px 0 0 0px; 21 | } 22 | .progressbar { 23 | border-color: #ddd; 24 | } 25 | .progressbar-text { 26 | color: #444; 27 | font-size: 12px; 28 | } 29 | .progressbar-value .progressbar-text { 30 | background-color: #CCE6FF; 31 | color: #000; 32 | } 33 | -------------------------------------------------------------------------------- /src/cn/mobile/scm/action/BaseAction.java: -------------------------------------------------------------------------------- 1 | package cn.mobile.scm.action; 2 | 3 | import javax.annotation.Resource; 4 | import javax.servlet.ServletContext; 5 | 6 | import org.springframework.stereotype.Controller; 7 | import org.springframework.web.bind.annotation.PathVariable; 8 | import org.springframework.web.bind.annotation.RequestMapping; 9 | 10 | @Controller 11 | @RequestMapping("/base") 12 | public class BaseAction { 13 | @Resource 14 | ServletContext application; 15 | 16 | //方法参数folder通过@PathVariable指定其值可以从@RequestMapping的{folder}获取,同理file也一样 17 | @RequestMapping("/goURL/{folder}/{file}") 18 | public String goURL(@PathVariable String folder,@PathVariable String file) { 19 | System.out.println("goURL.folder|file===" + folder+"/"+file); 20 | return "forward:/WEB-INF/"+folder+"/"+file+".jsp"; 21 | } 22 | 23 | } 24 | -------------------------------------------------------------------------------- /src/cn/mobile/scm/dao/AccountMapper.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/layout/propertygrid_data1.json: -------------------------------------------------------------------------------- 1 | {"total":7,"rows":[ 2 | {"name":"Name","value":"Bill Smith","group":"ID Settings","editor":"text"}, 3 | {"name":"Address","value":"","group":"ID Settings","editor":"text"}, 4 | {"name":"Age","value":"40","group":"ID Settings","editor":"numberbox"}, 5 | {"name":"Birthday","value":"01/02/2012","group":"ID Settings","editor":"datebox"}, 6 | {"name":"SSN","value":"123-456-7890","group":"ID Settings","editor":"text"}, 7 | {"name":"Email","value":"bill@gmail.com","group":"Marketing Settings","editor":{ 8 | "type":"validatebox", 9 | "options":{ 10 | "validType":"email" 11 | } 12 | }}, 13 | {"name":"FrequentBuyer","value":"false","group":"Marketing Settings","editor":{ 14 | "type":"checkbox", 15 | "options":{ 16 | "on":true, 17 | "off":false 18 | } 19 | }} 20 | ]} -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/bootstrap/progressbar.css: -------------------------------------------------------------------------------- 1 | .progressbar { 2 | border-width: 1px; 3 | border-style: solid; 4 | -moz-border-radius: 5px 5px 5px 5px; 5 | -webkit-border-radius: 5px 5px 5px 5px; 6 | border-radius: 5px 5px 5px 5px; 7 | overflow: hidden; 8 | position: relative; 9 | } 10 | .progressbar-text { 11 | text-align: center; 12 | position: absolute; 13 | } 14 | .progressbar-value { 15 | position: relative; 16 | overflow: hidden; 17 | width: 0; 18 | -moz-border-radius: 5px 0 0 5px; 19 | -webkit-border-radius: 5px 0 0 5px; 20 | border-radius: 5px 0 0 5px; 21 | } 22 | .progressbar { 23 | border-color: #D4D4D4; 24 | } 25 | .progressbar-text { 26 | color: #333; 27 | font-size: 12px; 28 | } 29 | .progressbar-value .progressbar-text { 30 | background-color: #0081c2; 31 | color: #fff; 32 | } 33 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/gray/progressbar.css: -------------------------------------------------------------------------------- 1 | .progressbar { 2 | border-width: 1px; 3 | border-style: solid; 4 | -moz-border-radius: 5px 5px 5px 5px; 5 | -webkit-border-radius: 5px 5px 5px 5px; 6 | border-radius: 5px 5px 5px 5px; 7 | overflow: hidden; 8 | position: relative; 9 | } 10 | .progressbar-text { 11 | text-align: center; 12 | position: absolute; 13 | } 14 | .progressbar-value { 15 | position: relative; 16 | overflow: hidden; 17 | width: 0; 18 | -moz-border-radius: 5px 0 0 5px; 19 | -webkit-border-radius: 5px 0 0 5px; 20 | border-radius: 5px 0 0 5px; 21 | } 22 | .progressbar { 23 | border-color: #D3D3D3; 24 | } 25 | .progressbar-text { 26 | color: #000000; 27 | font-size: 12px; 28 | } 29 | .progressbar-value .progressbar-text { 30 | background-color: #0092DC; 31 | color: #fff; 32 | } 33 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/datebox/basic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Basic DateBox - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Basic DateBox

14 |
15 |
16 |
Click the calendar image on the right side.
17 |
18 |
19 | 20 | 21 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/default/progressbar.css: -------------------------------------------------------------------------------- 1 | .progressbar { 2 | border-width: 1px; 3 | border-style: solid; 4 | -moz-border-radius: 5px 5px 5px 5px; 5 | -webkit-border-radius: 5px 5px 5px 5px; 6 | border-radius: 5px 5px 5px 5px; 7 | overflow: hidden; 8 | position: relative; 9 | } 10 | .progressbar-text { 11 | text-align: center; 12 | position: absolute; 13 | } 14 | .progressbar-value { 15 | position: relative; 16 | overflow: hidden; 17 | width: 0; 18 | -moz-border-radius: 5px 0 0 5px; 19 | -webkit-border-radius: 5px 0 0 5px; 20 | border-radius: 5px 0 0 5px; 21 | } 22 | .progressbar { 23 | border-color: #95B8E7; 24 | } 25 | .progressbar-text { 26 | color: #000000; 27 | font-size: 12px; 28 | } 29 | .progressbar-value .progressbar-text { 30 | background-color: #FBEC88; 31 | color: #000000; 32 | } 33 | -------------------------------------------------------------------------------- /config/log4j.properties: -------------------------------------------------------------------------------- 1 | # Rules reminder: 2 | # DEBUG < INFO < WARN < ERROR < FATAL 3 | 4 | # Global logging configuration 5 | log4j.rootLogger=debug,stdout 6 | 7 | # My logging configuration... 8 | log4j.logger.cn.jbit.mybatisdemo=DEBUG 9 | 10 | 11 | ## Console output... 12 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 13 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 14 | log4j.appender.stdout.layout.ConversionPattern=%5p %d %C: %m%n 15 | 16 | log4j.logger.org.apache.ibatis=DEBUG 17 | ## log4j.logger.org.apache.jdbc.SimpleDataSource=DEBUG 18 | log4j.logger.org.apache.ibatis.jdbc.ScriptRunner=DEBUG 19 | ## log4j.logger.com.ibatis.sqlmap.engine.impl.SqlMapclientDelegate=DEBUG 20 | log4j.logger.java.sql.Connection=DEBUG 21 | log4j.logger.java.sql.Statement=DEBUG 22 | log4j.logger.java.sql.PreparedStatement=DEBUG 23 | 24 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/propertygrid/propertygrid_data1.json: -------------------------------------------------------------------------------- 1 | {"total":7,"rows":[ 2 | {"name":"Name","value":"Bill Smith","group":"ID Settings","editor":"text"}, 3 | {"name":"Address","value":"","group":"ID Settings","editor":"text"}, 4 | {"name":"Age","value":"40","group":"ID Settings","editor":"numberbox"}, 5 | {"name":"Birthday","value":"01/02/2012","group":"ID Settings","editor":"datebox"}, 6 | {"name":"SSN","value":"123-456-7890","group":"ID Settings","editor":"text"}, 7 | {"name":"Email","value":"bill@gmail.com","group":"Marketing Settings","editor":{ 8 | "type":"validatebox", 9 | "options":{ 10 | "validType":"email" 11 | } 12 | }}, 13 | {"name":"FrequentBuyer","value":"false","group":"Marketing Settings","editor":{ 14 | "type":"checkbox", 15 | "options":{ 16 | "on":true, 17 | "off":false 18 | } 19 | }} 20 | ]} -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/calendar/basic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Basic Calendar - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Basic Calendar

14 |
15 |
16 |
Click to select date.
17 |
18 | 19 |
20 | 21 | 22 | -------------------------------------------------------------------------------- /src/cn/mobile/scm/dao/BaseMapper.java: -------------------------------------------------------------------------------- 1 | package cn.mobile.scm.dao; 2 | 3 | import java.util.List; 4 | 5 | import cn.mobile.scm.entity.Page; 6 | 7 | public interface BaseMapper{ 8 | 9 | 10 | //添加单个对象 11 | public int insert(T entity); 12 | 13 | //修改单个对象 14 | public int update(T entity); 15 | 16 | //删除 17 | public int delete (T entity); 18 | 19 | //通过主键(数组)批量删除数据 20 | public int deleteList(String pks[])throws Exception; 21 | 22 | //查询单个对象 23 | public T select(T entity); 24 | 25 | //通过关键字分页查询 26 | public ListselectPageList(Page page); 27 | 28 | 29 | //通过关键字分页查询返回记录数 30 | public Integer selectPageCount(Page page); 31 | 32 | //通过多条件关键字分页查询 33 | public ListselectPageListUseDyc(Page page); 34 | 35 | 36 | //通过多条件关键字分页查询返回记录数 37 | public Integer selectPageCountUseDyc(Page page); 38 | 39 | 40 | } 41 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/timespinner/basic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Basic TimeSpinner - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Basic TimeSpinner

14 |
15 |
16 |
Click spin button to adjust time.
17 |
18 |
19 | 20 | 21 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/black/menubutton.css: -------------------------------------------------------------------------------- 1 | .m-btn-downarrow { 2 | display: inline-block; 3 | width: 16px; 4 | height: 16px; 5 | line-height: 16px; 6 | font-size: 12px; 7 | _vertical-align: middle; 8 | } 9 | a.m-btn-active { 10 | background-position: bottom right; 11 | } 12 | a.m-btn-active span.l-btn-left { 13 | background-position: bottom left; 14 | } 15 | a.m-btn-plain-active { 16 | background: transparent; 17 | padding: 0 5px 0 0; 18 | border-width: 1px; 19 | border-style: solid; 20 | -moz-border-radius: 5px 5px 5px 5px; 21 | -webkit-border-radius: 5px 5px 5px 5px; 22 | border-radius: 5px 5px 5px 5px; 23 | } 24 | .m-btn-downarrow { 25 | background: url('images/menu_arrows.png') no-repeat 2px center; 26 | } 27 | a.m-btn-plain-active { 28 | border-color: #555; 29 | background-color: #777; 30 | color: #fff; 31 | } 32 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/metro/menubutton.css: -------------------------------------------------------------------------------- 1 | .m-btn-downarrow { 2 | display: inline-block; 3 | width: 16px; 4 | height: 16px; 5 | line-height: 16px; 6 | font-size: 12px; 7 | _vertical-align: middle; 8 | } 9 | a.m-btn-active { 10 | background-position: bottom right; 11 | } 12 | a.m-btn-active span.l-btn-left { 13 | background-position: bottom left; 14 | } 15 | a.m-btn-plain-active { 16 | background: transparent; 17 | padding: 0 5px 0 0; 18 | border-width: 1px; 19 | border-style: solid; 20 | -moz-border-radius: 0px 0px 0px 0px; 21 | -webkit-border-radius: 0px 0px 0px 0px; 22 | border-radius: 0px 0px 0px 0px; 23 | } 24 | .m-btn-downarrow { 25 | background: url('images/menu_arrows.png') no-repeat 2px center; 26 | } 27 | a.m-btn-plain-active { 28 | border-color: #ddd; 29 | background-color: #E6E6E6; 30 | color: #444; 31 | } 32 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/gray/menubutton.css: -------------------------------------------------------------------------------- 1 | .m-btn-downarrow { 2 | display: inline-block; 3 | width: 16px; 4 | height: 16px; 5 | line-height: 16px; 6 | font-size: 12px; 7 | _vertical-align: middle; 8 | } 9 | a.m-btn-active { 10 | background-position: bottom right; 11 | } 12 | a.m-btn-active span.l-btn-left { 13 | background-position: bottom left; 14 | } 15 | a.m-btn-plain-active { 16 | background: transparent; 17 | padding: 0 5px 0 0; 18 | border-width: 1px; 19 | border-style: solid; 20 | -moz-border-radius: 5px 5px 5px 5px; 21 | -webkit-border-radius: 5px 5px 5px 5px; 22 | border-radius: 5px 5px 5px 5px; 23 | } 24 | .m-btn-downarrow { 25 | background: url('images/menu_arrows.png') no-repeat 2px center; 26 | } 27 | a.m-btn-plain-active { 28 | border-color: #ccc; 29 | background-color: #e2e2e2; 30 | color: #000000; 31 | } 32 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/bootstrap/menubutton.css: -------------------------------------------------------------------------------- 1 | .m-btn-downarrow { 2 | display: inline-block; 3 | width: 16px; 4 | height: 16px; 5 | line-height: 16px; 6 | font-size: 12px; 7 | _vertical-align: middle; 8 | } 9 | a.m-btn-active { 10 | background-position: bottom right; 11 | } 12 | a.m-btn-active span.l-btn-left { 13 | background-position: bottom left; 14 | } 15 | a.m-btn-plain-active { 16 | background: transparent; 17 | padding: 0 5px 0 0; 18 | border-width: 1px; 19 | border-style: solid; 20 | -moz-border-radius: 5px 5px 5px 5px; 21 | -webkit-border-radius: 5px 5px 5px 5px; 22 | border-radius: 5px 5px 5px 5px; 23 | } 24 | .m-btn-downarrow { 25 | background: url('images/menu_arrows.png') no-repeat 2px center; 26 | } 27 | a.m-btn-plain-active { 28 | border-color: #ddd; 29 | background-color: #e6e6e6; 30 | color: #00438a; 31 | } 32 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/default/menubutton.css: -------------------------------------------------------------------------------- 1 | .m-btn-downarrow { 2 | display: inline-block; 3 | width: 16px; 4 | height: 16px; 5 | line-height: 16px; 6 | font-size: 12px; 7 | _vertical-align: middle; 8 | } 9 | a.m-btn-active { 10 | background-position: bottom right; 11 | } 12 | a.m-btn-active span.l-btn-left { 13 | background-position: bottom left; 14 | } 15 | a.m-btn-plain-active { 16 | background: transparent; 17 | padding: 0 5px 0 0; 18 | border-width: 1px; 19 | border-style: solid; 20 | -moz-border-radius: 5px 5px 5px 5px; 21 | -webkit-border-radius: 5px 5px 5px 5px; 22 | border-radius: 5px 5px 5px 5px; 23 | } 24 | .m-btn-downarrow { 25 | background: url('images/menu_arrows.png') no-repeat 2px center; 26 | } 27 | a.m-btn-plain-active { 28 | border-color: #b7d2ff; 29 | background-color: #eaf2ff; 30 | color: #000000; 31 | } 32 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/datetimebox/basic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Basic DateTimeBox - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Basic DateTimeBox

14 |
15 |
16 |
Click the calendar image on the right side.
17 |
18 |
19 | 20 | 21 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/black/propertygrid.css: -------------------------------------------------------------------------------- 1 | .propertygrid .datagrid-view1 .datagrid-body td { 2 | padding-bottom: 1px; 3 | border-width: 0 1px 0 0; 4 | } 5 | .propertygrid .datagrid-group { 6 | height: 21px; 7 | overflow: hidden; 8 | border-width: 0 0 1px 0; 9 | border-style: solid; 10 | } 11 | .propertygrid .datagrid-group span { 12 | font-weight: bold; 13 | } 14 | .propertygrid .datagrid-view1 .datagrid-body td { 15 | border-color: #222; 16 | } 17 | .propertygrid .datagrid-view1 .datagrid-group { 18 | border-color: #3d3d3d; 19 | } 20 | .propertygrid .datagrid-view2 .datagrid-group { 21 | border-color: #222; 22 | } 23 | .propertygrid .datagrid-group, 24 | .propertygrid .datagrid-view1 .datagrid-body, 25 | .propertygrid .datagrid-view1 .datagrid-row-over, 26 | .propertygrid .datagrid-view1 .datagrid-row-selected { 27 | background: #3d3d3d; 28 | } 29 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/gray/propertygrid.css: -------------------------------------------------------------------------------- 1 | .propertygrid .datagrid-view1 .datagrid-body td { 2 | padding-bottom: 1px; 3 | border-width: 0 1px 0 0; 4 | } 5 | .propertygrid .datagrid-group { 6 | height: 21px; 7 | overflow: hidden; 8 | border-width: 0 0 1px 0; 9 | border-style: solid; 10 | } 11 | .propertygrid .datagrid-group span { 12 | font-weight: bold; 13 | } 14 | .propertygrid .datagrid-view1 .datagrid-body td { 15 | border-color: #ddd; 16 | } 17 | .propertygrid .datagrid-view1 .datagrid-group { 18 | border-color: #f3f3f3; 19 | } 20 | .propertygrid .datagrid-view2 .datagrid-group { 21 | border-color: #ddd; 22 | } 23 | .propertygrid .datagrid-group, 24 | .propertygrid .datagrid-view1 .datagrid-body, 25 | .propertygrid .datagrid-view1 .datagrid-row-over, 26 | .propertygrid .datagrid-view1 .datagrid-row-selected { 27 | background: #f3f3f3; 28 | } 29 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/metro/propertygrid.css: -------------------------------------------------------------------------------- 1 | .propertygrid .datagrid-view1 .datagrid-body td { 2 | padding-bottom: 1px; 3 | border-width: 0 1px 0 0; 4 | } 5 | .propertygrid .datagrid-group { 6 | height: 21px; 7 | overflow: hidden; 8 | border-width: 0 0 1px 0; 9 | border-style: solid; 10 | } 11 | .propertygrid .datagrid-group span { 12 | font-weight: bold; 13 | } 14 | .propertygrid .datagrid-view1 .datagrid-body td { 15 | border-color: #ddd; 16 | } 17 | .propertygrid .datagrid-view1 .datagrid-group { 18 | border-color: #ffffff; 19 | } 20 | .propertygrid .datagrid-view2 .datagrid-group { 21 | border-color: #ddd; 22 | } 23 | .propertygrid .datagrid-group, 24 | .propertygrid .datagrid-view1 .datagrid-body, 25 | .propertygrid .datagrid-view1 .datagrid-row-over, 26 | .propertygrid .datagrid-view1 .datagrid-row-selected { 27 | background: #ffffff; 28 | } 29 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/bootstrap/propertygrid.css: -------------------------------------------------------------------------------- 1 | .propertygrid .datagrid-view1 .datagrid-body td { 2 | padding-bottom: 1px; 3 | border-width: 0 1px 0 0; 4 | } 5 | .propertygrid .datagrid-group { 6 | height: 21px; 7 | overflow: hidden; 8 | border-width: 0 0 1px 0; 9 | border-style: solid; 10 | } 11 | .propertygrid .datagrid-group span { 12 | font-weight: bold; 13 | } 14 | .propertygrid .datagrid-view1 .datagrid-body td { 15 | border-color: #e6e6e6; 16 | } 17 | .propertygrid .datagrid-view1 .datagrid-group { 18 | border-color: #F2F2F2; 19 | } 20 | .propertygrid .datagrid-view2 .datagrid-group { 21 | border-color: #e6e6e6; 22 | } 23 | .propertygrid .datagrid-group, 24 | .propertygrid .datagrid-view1 .datagrid-body, 25 | .propertygrid .datagrid-view1 .datagrid-row-over, 26 | .propertygrid .datagrid-view1 .datagrid-row-selected { 27 | background: #F2F2F2; 28 | } 29 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/default/propertygrid.css: -------------------------------------------------------------------------------- 1 | .propertygrid .datagrid-view1 .datagrid-body td { 2 | padding-bottom: 1px; 3 | border-width: 0 1px 0 0; 4 | } 5 | .propertygrid .datagrid-group { 6 | height: 21px; 7 | overflow: hidden; 8 | border-width: 0 0 1px 0; 9 | border-style: solid; 10 | } 11 | .propertygrid .datagrid-group span { 12 | font-weight: bold; 13 | } 14 | .propertygrid .datagrid-view1 .datagrid-body td { 15 | border-color: #dddddd; 16 | } 17 | .propertygrid .datagrid-view1 .datagrid-group { 18 | border-color: #E0ECFF; 19 | } 20 | .propertygrid .datagrid-view2 .datagrid-group { 21 | border-color: #dddddd; 22 | } 23 | .propertygrid .datagrid-group, 24 | .propertygrid .datagrid-view1 .datagrid-body, 25 | .propertygrid .datagrid-view1 .datagrid-row-over, 26 | .propertygrid .datagrid-view1 .datagrid-row-selected { 27 | background: #E0ECFF; 28 | } 29 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/numberbox/range.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Number Range - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Number Range

14 |
15 |
16 |
The value is constrained to a range between 10 and 90.
17 |
18 |
19 | 20 | 21 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/tree/lines.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Tree Lines - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Tree Lines

14 |
15 |
16 |
This sample shows how to show tree lines.
17 |
18 |
19 |
20 |
    21 | 22 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/treegrid/treegrid_data2.json: -------------------------------------------------------------------------------- 1 | {"total":7,"rows":[ 2 | {"id":1,"name":"All Tasks","begin":"3/4/2010","end":"3/20/2010","progress":60,"iconCls":"icon-ok"}, 3 | {"id":2,"name":"Designing","begin":"3/4/2010","end":"3/10/2010","progress":100,"_parentId":1,"state":"closed"}, 4 | {"id":21,"name":"Database","persons":2,"begin":"3/4/2010","end":"3/6/2010","progress":100,"_parentId":2}, 5 | {"id":22,"name":"UML","persons":1,"begin":"3/7/2010","end":"3/8/2010","progress":100,"_parentId":2}, 6 | {"id":23,"name":"Export Document","persons":1,"begin":"3/9/2010","end":"3/10/2010","progress":100,"_parentId":2}, 7 | {"id":3,"name":"Coding","persons":2,"begin":"3/11/2010","end":"3/18/2010","progress":80}, 8 | {"id":4,"name":"Testing","persons":1,"begin":"3/19/2010","end":"3/20/2010","progress":20} 9 | ],"footer":[ 10 | {"name":"Total Persons:","persons":7,"iconCls":"icon-sum"} 11 | ]} 12 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/tree/icons.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Tree Node Icons - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

    Tree Node Icons

    14 |
    15 |
    16 |
    This sample illustrates how to add icons to tree node.
    17 |
    18 |
    19 |
      20 | 21 | 22 | -------------------------------------------------------------------------------- /WebRoot/common/common.jspf: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 3 | 4 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/slider/basic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Basic Slider - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

      Basic Slider

      14 |
      15 |
      16 |
      Drag the slider to change value.
      17 |
      18 |
      19 |
      20 | 21 |
      22 | 23 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/tree/animation.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Animation Tree - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

      Animation Tree

      14 |
      15 |
      16 |
      Apply 'animate' property to true to enable animation effect.
      17 |
      18 |
      19 |
        20 | 21 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/pagination/basic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Basic Pagination - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

        Basic Pagination

        14 |
        15 |
        16 |
        The user can change page number and page size on page bar.
        17 |
        18 |
        19 |
        20 | 21 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/numberspinner/range.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Number Range - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

        Number Range

        14 |
        15 |
        16 |
        The value is constrained to a range between 10 and 100.
        17 |
        18 |
        19 | 20 | 21 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/tree/dnd.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Drag Drop Tree Nodes - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

        Drag Drop Tree Nodes

        14 |
        15 |
        16 |
        Press mouse down and drag a node to another position.
        17 |
        18 |
        19 |
          20 | 21 | 22 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/numberspinner/increment.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Increment Number - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

          Increment Number

          14 |
          15 |
          16 |
          The sample shows how to set the increment step.
          17 |
          18 |
          19 | 20 | 21 | -------------------------------------------------------------------------------- /test/cn/mobile/scm/test/TestDeptDao.java: -------------------------------------------------------------------------------- 1 | package cn.mobile.scm.test; 2 | 3 | 4 | public class TestDeptDao { 5 | 6 | /*//@Resource //这里没法使用,后继版本有其它方式可以注入 7 | static private DeptDaoImpl deptDao; 8 | @BeforeClass 9 | public static void setUpBeforeClass() throws Exception { 10 | ApplicationContext context =new ClassPathXmlApplicationContext("applicationContext.xml"); 11 | deptDao=(DeptDaoImpl) context.getBean("deptDao"); 12 | } 13 | 14 | @AfterClass 15 | public static void tearDownAfterClass() throws Exception { 16 | } 17 | 18 | @Test 19 | public void testSelectDept() { 20 | System.out.println(deptDao.selectDept(1)); 21 | } 22 | 23 | @Test 24 | public void testInsertDept() { 25 | Dept dept=new Dept(); 26 | //dept.setDeptId(117); 27 | dept.setDeptName("name117"); 28 | dept.setDeptAddress("address117"); 29 | System.out.println("受影响行数:"+deptDao.insertDept(dept)); 30 | } 31 | */ 32 | } 33 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/tabs/tree_data1.json: -------------------------------------------------------------------------------- 1 | [{ 2 | "id":1, 3 | "text":"My Documents", 4 | "children":[{ 5 | "id":11, 6 | "text":"Photos", 7 | "state":"closed", 8 | "children":[{ 9 | "id":111, 10 | "text":"Friend" 11 | },{ 12 | "id":112, 13 | "text":"Wife" 14 | },{ 15 | "id":113, 16 | "text":"Company" 17 | }] 18 | },{ 19 | "id":12, 20 | "text":"Program Files", 21 | "children":[{ 22 | "id":121, 23 | "text":"Intel" 24 | },{ 25 | "id":122, 26 | "text":"Java", 27 | "attributes":{ 28 | "p1":"Custom Attribute1", 29 | "p2":"Custom Attribute2" 30 | } 31 | },{ 32 | "id":123, 33 | "text":"Microsoft Office" 34 | },{ 35 | "id":124, 36 | "text":"Games", 37 | "checked":true 38 | }] 39 | },{ 40 | "id":13, 41 | "text":"index.html" 42 | },{ 43 | "id":14, 44 | "text":"about.html" 45 | },{ 46 | "id":15, 47 | "text":"welcome.html" 48 | }] 49 | }] 50 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/tree/tree_data1.json: -------------------------------------------------------------------------------- 1 | [{ 2 | "id":1, 3 | "text":"My Documents", 4 | "children":[{ 5 | "id":11, 6 | "text":"Photos", 7 | "state":"closed", 8 | "children":[{ 9 | "id":111, 10 | "text":"Friend" 11 | },{ 12 | "id":112, 13 | "text":"Wife" 14 | },{ 15 | "id":113, 16 | "text":"Company" 17 | }] 18 | },{ 19 | "id":12, 20 | "text":"Program Files", 21 | "children":[{ 22 | "id":121, 23 | "text":"Intel" 24 | },{ 25 | "id":122, 26 | "text":"Java", 27 | "attributes":{ 28 | "p1":"Custom Attribute1", 29 | "p2":"Custom Attribute2" 30 | } 31 | },{ 32 | "id":123, 33 | "text":"Microsoft Office" 34 | },{ 35 | "id":124, 36 | "text":"Games", 37 | "checked":true 38 | }] 39 | },{ 40 | "id":13, 41 | "text":"index.html" 42 | },{ 43 | "id":14, 44 | "text":"about.html" 45 | },{ 46 | "id":15, 47 | "text":"welcome.html" 48 | }] 49 | }] 50 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/combotree/basic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Basic ComboTree - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

          Basic ComboTree

          14 |
          15 |
          16 |
          Click the right arrow button to show the tree panel.
          17 |
          18 |
          19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/combotree/tree_data1.json: -------------------------------------------------------------------------------- 1 | [{ 2 | "id":1, 3 | "text":"My Documents", 4 | "children":[{ 5 | "id":11, 6 | "text":"Photos", 7 | "state":"closed", 8 | "children":[{ 9 | "id":111, 10 | "text":"Friend" 11 | },{ 12 | "id":112, 13 | "text":"Wife" 14 | },{ 15 | "id":113, 16 | "text":"Company" 17 | }] 18 | },{ 19 | "id":12, 20 | "text":"Program Files", 21 | "children":[{ 22 | "id":121, 23 | "text":"Intel" 24 | },{ 25 | "id":122, 26 | "text":"Java", 27 | "attributes":{ 28 | "p1":"Custom Attribute1", 29 | "p2":"Custom Attribute2" 30 | } 31 | },{ 32 | "id":123, 33 | "text":"Microsoft Office" 34 | },{ 35 | "id":124, 36 | "text":"Games", 37 | "checked":true 38 | }] 39 | },{ 40 | "id":13, 41 | "text":"index.html" 42 | },{ 43 | "id":14, 44 | "text":"about.html" 45 | },{ 46 | "id":15, 47 | "text":"welcome.html" 48 | }] 49 | }] 50 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/layout/tree_data1.json: -------------------------------------------------------------------------------- 1 | [{ 2 | "id":1, 3 | "text":"My Documents", 4 | "children":[{ 5 | "id":11, 6 | "text":"Photos", 7 | "state":"closed", 8 | "children":[{ 9 | "id":111, 10 | "text":"Friend" 11 | },{ 12 | "id":112, 13 | "text":"Wife" 14 | },{ 15 | "id":113, 16 | "text":"Company" 17 | }] 18 | },{ 19 | "id":12, 20 | "text":"Program Files", 21 | "children":[{ 22 | "id":121, 23 | "text":"Intel" 24 | },{ 25 | "id":122, 26 | "text":"Java", 27 | "attributes":{ 28 | "p1":"Custom Attribute1", 29 | "p2":"Custom Attribute2" 30 | } 31 | },{ 32 | "id":123, 33 | "text":"Microsoft Office" 34 | },{ 35 | "id":124, 36 | "text":"Games", 37 | "checked":true 38 | }] 39 | },{ 40 | "id":13, 41 | "text":"index.html" 42 | },{ 43 | "id":14, 44 | "text":"about.html" 45 | },{ 46 | "id":15, 47 | "text":"welcome.html" 48 | }] 49 | }] 50 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/datetimebox/initvalue.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Initialize Value for DateTime - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

          Initialize Value for DateTime

          14 |
          15 |
          16 |
          The value is initialized when DateTimeBox has been created.
          17 |
          18 |
          19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/timespinner/range.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Time Range - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

          Time Range

          14 |
          15 |
          16 |
          The time value is constrained in specified range.
          17 |
          18 |
          19 | From 08:30 to 18:00 20 |
          21 | 22 | 23 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/black/messager.css: -------------------------------------------------------------------------------- 1 | .messager-body { 2 | padding: 10px; 3 | overflow: hidden; 4 | } 5 | .messager-button { 6 | text-align: center; 7 | padding-top: 10px; 8 | } 9 | .messager-icon { 10 | float: left; 11 | width: 32px; 12 | height: 32px; 13 | margin: 0 10px 10px 0; 14 | } 15 | .messager-error { 16 | background: url('images/messager_icons.png') no-repeat scroll -64px 0; 17 | } 18 | .messager-info { 19 | background: url('images/messager_icons.png') no-repeat scroll 0 0; 20 | } 21 | .messager-question { 22 | background: url('images/messager_icons.png') no-repeat scroll -32px 0; 23 | } 24 | .messager-warning { 25 | background: url('images/messager_icons.png') no-repeat scroll -96px 0; 26 | } 27 | .messager-progress { 28 | padding: 10px; 29 | } 30 | .messager-p-msg { 31 | margin-bottom: 5px; 32 | } 33 | .messager-body .messager-input { 34 | width: 100%; 35 | padding: 1px 0; 36 | border: 1px solid #000; 37 | } 38 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/metro/messager.css: -------------------------------------------------------------------------------- 1 | .messager-body { 2 | padding: 10px; 3 | overflow: hidden; 4 | } 5 | .messager-button { 6 | text-align: center; 7 | padding-top: 10px; 8 | } 9 | .messager-icon { 10 | float: left; 11 | width: 32px; 12 | height: 32px; 13 | margin: 0 10px 10px 0; 14 | } 15 | .messager-error { 16 | background: url('images/messager_icons.png') no-repeat scroll -64px 0; 17 | } 18 | .messager-info { 19 | background: url('images/messager_icons.png') no-repeat scroll 0 0; 20 | } 21 | .messager-question { 22 | background: url('images/messager_icons.png') no-repeat scroll -32px 0; 23 | } 24 | .messager-warning { 25 | background: url('images/messager_icons.png') no-repeat scroll -96px 0; 26 | } 27 | .messager-progress { 28 | padding: 10px; 29 | } 30 | .messager-p-msg { 31 | margin-bottom: 5px; 32 | } 33 | .messager-body .messager-input { 34 | width: 100%; 35 | padding: 1px 0; 36 | border: 1px solid #ddd; 37 | } 38 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/default/messager.css: -------------------------------------------------------------------------------- 1 | .messager-body { 2 | padding: 10px; 3 | overflow: hidden; 4 | } 5 | .messager-button { 6 | text-align: center; 7 | padding-top: 10px; 8 | } 9 | .messager-icon { 10 | float: left; 11 | width: 32px; 12 | height: 32px; 13 | margin: 0 10px 10px 0; 14 | } 15 | .messager-error { 16 | background: url('images/messager_icons.png') no-repeat scroll -64px 0; 17 | } 18 | .messager-info { 19 | background: url('images/messager_icons.png') no-repeat scroll 0 0; 20 | } 21 | .messager-question { 22 | background: url('images/messager_icons.png') no-repeat scroll -32px 0; 23 | } 24 | .messager-warning { 25 | background: url('images/messager_icons.png') no-repeat scroll -96px 0; 26 | } 27 | .messager-progress { 28 | padding: 10px; 29 | } 30 | .messager-p-msg { 31 | margin-bottom: 5px; 32 | } 33 | .messager-body .messager-input { 34 | width: 100%; 35 | padding: 1px 0; 36 | border: 1px solid #95B8E7; 37 | } 38 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/gray/messager.css: -------------------------------------------------------------------------------- 1 | .messager-body { 2 | padding: 10px; 3 | overflow: hidden; 4 | } 5 | .messager-button { 6 | text-align: center; 7 | padding-top: 10px; 8 | } 9 | .messager-icon { 10 | float: left; 11 | width: 32px; 12 | height: 32px; 13 | margin: 0 10px 10px 0; 14 | } 15 | .messager-error { 16 | background: url('images/messager_icons.png') no-repeat scroll -64px 0; 17 | } 18 | .messager-info { 19 | background: url('images/messager_icons.png') no-repeat scroll 0 0; 20 | } 21 | .messager-question { 22 | background: url('images/messager_icons.png') no-repeat scroll -32px 0; 23 | } 24 | .messager-warning { 25 | background: url('images/messager_icons.png') no-repeat scroll -96px 0; 26 | } 27 | .messager-progress { 28 | padding: 10px; 29 | } 30 | .messager-p-msg { 31 | margin-bottom: 5px; 32 | } 33 | .messager-body .messager-input { 34 | width: 100%; 35 | padding: 1px 0; 36 | border: 1px solid #D3D3D3; 37 | } 38 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/combotree/initvalue.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Initialize Value for ComboTree - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

          Initialize Value for ComboTree

          14 |
          15 |
          16 |
          Initialize Value when ComboTree is created.
          17 |
          18 |
          19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/tooltip/basic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Basic Tooltip - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

          Basic Tooltip

          14 |
          15 |
          16 |
          Hover the links to display tooltip message.
          17 |
          18 |
          19 |

          The tooltip can use each elements title attribute. 20 | Hover me to display tooltip. 21 |

          22 | 23 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/bootstrap/messager.css: -------------------------------------------------------------------------------- 1 | .messager-body { 2 | padding: 10px; 3 | overflow: hidden; 4 | } 5 | .messager-button { 6 | text-align: center; 7 | padding-top: 10px; 8 | } 9 | .messager-icon { 10 | float: left; 11 | width: 32px; 12 | height: 32px; 13 | margin: 0 10px 10px 0; 14 | } 15 | .messager-error { 16 | background: url('images/messager_icons.png') no-repeat scroll -64px 0; 17 | } 18 | .messager-info { 19 | background: url('images/messager_icons.png') no-repeat scroll 0 0; 20 | } 21 | .messager-question { 22 | background: url('images/messager_icons.png') no-repeat scroll -32px 0; 23 | } 24 | .messager-warning { 25 | background: url('images/messager_icons.png') no-repeat scroll -96px 0; 26 | } 27 | .messager-progress { 28 | padding: 10px; 29 | } 30 | .messager-p-msg { 31 | margin-bottom: 5px; 32 | } 33 | .messager-body .messager-input { 34 | width: 100%; 35 | padding: 1px 0; 36 | border: 1px solid #D4D4D4; 37 | } 38 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/slider/rule.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Slider Rule - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

          Slider Rule

          14 |
          15 |
          16 |
          This sample shows how to define slider rule.
          17 |
          18 |
          19 |
          20 | 24 |
          25 | 26 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/numberbox/basic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Basic NumberBox - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

          Basic NumberBox

          14 |
          15 |
          16 |
          The Box can only input number.
          17 |
          18 |
          19 | 23 |
          24 | Value: 25 |
          26 | 27 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/slider/vertical.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Vertical Slider - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

          Vertical Slider

          14 |
          15 |
          16 |
          This sample shows how to create a vertical slider.
          17 |
          18 |
          19 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/pagination/simple.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Simplify Pagination - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

          Simplify Pagination

          14 |
          15 |
          16 |
          The sample shows how to simplify pagination.
          17 |
          18 |
          19 |
          25 | 26 | 27 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/pagination/links.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Pagination Links - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

          Pagination Links

          14 |
          15 |
          16 |
          The example shows how to customize numbered pagination links.
          17 |
          18 |
          19 |
          23 | 24 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/combobox/remotedata.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Binding to Remote Data - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

          Binding to Remote Data

          14 |
          15 |
          16 |
          The ComboBox is bound to a remote data.
          17 |
          18 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/datetimebox/showseconds.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Display Seconds - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

          Display Seconds

          14 |
          15 |
          16 |
          The user can decide to display seconds part or not.
          17 |
          18 |
          19 | Show Seconds: 20 | 21 |
          22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/combobox/group.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Group ComboBox - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

          Group ComboBox

          14 |
          15 |
          16 |
          This example shows how to display combobox items in groups.
          17 |
          18 | 19 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/black/accordion.css: -------------------------------------------------------------------------------- 1 | .accordion { 2 | overflow: hidden; 3 | border-width: 1px; 4 | border-style: solid; 5 | } 6 | .accordion .accordion-header { 7 | border-width: 0 0 1px; 8 | cursor: pointer; 9 | } 10 | .accordion .accordion-body { 11 | border-width: 0 0 1px; 12 | } 13 | .accordion-noborder { 14 | border-width: 0; 15 | } 16 | .accordion-noborder .accordion-header { 17 | border-width: 0 0 1px; 18 | } 19 | .accordion-noborder .accordion-body { 20 | border-width: 0 0 1px; 21 | } 22 | .accordion-collapse { 23 | background: url('images/accordion_arrows.png') no-repeat 0 0; 24 | } 25 | .accordion-expand { 26 | background: url('images/accordion_arrows.png') no-repeat -16px 0; 27 | } 28 | .accordion { 29 | background: #666; 30 | border-color: #000; 31 | } 32 | .accordion .accordion-header { 33 | background: #3d3d3d; 34 | filter: none; 35 | } 36 | .accordion .accordion-header-selected { 37 | background: #0052A3; 38 | } 39 | .accordion .accordion-header-selected .panel-title { 40 | color: #fff; 41 | } 42 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/metro/accordion.css: -------------------------------------------------------------------------------- 1 | .accordion { 2 | overflow: hidden; 3 | border-width: 1px; 4 | border-style: solid; 5 | } 6 | .accordion .accordion-header { 7 | border-width: 0 0 1px; 8 | cursor: pointer; 9 | } 10 | .accordion .accordion-body { 11 | border-width: 0 0 1px; 12 | } 13 | .accordion-noborder { 14 | border-width: 0; 15 | } 16 | .accordion-noborder .accordion-header { 17 | border-width: 0 0 1px; 18 | } 19 | .accordion-noborder .accordion-body { 20 | border-width: 0 0 1px; 21 | } 22 | .accordion-collapse { 23 | background: url('images/accordion_arrows.png') no-repeat 0 0; 24 | } 25 | .accordion-expand { 26 | background: url('images/accordion_arrows.png') no-repeat -16px 0; 27 | } 28 | .accordion { 29 | background: #fff; 30 | border-color: #ddd; 31 | } 32 | .accordion .accordion-header { 33 | background: #ffffff; 34 | filter: none; 35 | } 36 | .accordion .accordion-header-selected { 37 | background: #CCE6FF; 38 | } 39 | .accordion .accordion-header-selected .panel-title { 40 | color: #000; 41 | } 42 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/numberspinner/basic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Basic NumberSpinner - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

          Basic NumberSpinner

          14 |
          15 |
          16 |
          Click spinner button to change value.
          17 |
          18 |
          19 | 24 |
          25 | Value: 26 |
          27 | 28 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/searchbox/basic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Basic SearchBox - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

          Basic SearchBox

          14 |
          15 |
          16 |
          Click search button or press enter key in input box to do searching.
          17 |
          18 |
          19 | 20 | 25 | 26 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/gray/accordion.css: -------------------------------------------------------------------------------- 1 | .accordion { 2 | overflow: hidden; 3 | border-width: 1px; 4 | border-style: solid; 5 | } 6 | .accordion .accordion-header { 7 | border-width: 0 0 1px; 8 | cursor: pointer; 9 | } 10 | .accordion .accordion-body { 11 | border-width: 0 0 1px; 12 | } 13 | .accordion-noborder { 14 | border-width: 0; 15 | } 16 | .accordion-noborder .accordion-header { 17 | border-width: 0 0 1px; 18 | } 19 | .accordion-noborder .accordion-body { 20 | border-width: 0 0 1px; 21 | } 22 | .accordion-collapse { 23 | background: url('images/accordion_arrows.png') no-repeat 0 0; 24 | } 25 | .accordion-expand { 26 | background: url('images/accordion_arrows.png') no-repeat -16px 0; 27 | } 28 | .accordion { 29 | background: #ffffff; 30 | border-color: #D3D3D3; 31 | } 32 | .accordion .accordion-header { 33 | background: #f3f3f3; 34 | filter: none; 35 | } 36 | .accordion .accordion-header-selected { 37 | background: #0092DC; 38 | } 39 | .accordion .accordion-header-selected .panel-title { 40 | color: #fff; 41 | } 42 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/bootstrap/accordion.css: -------------------------------------------------------------------------------- 1 | .accordion { 2 | overflow: hidden; 3 | border-width: 1px; 4 | border-style: solid; 5 | } 6 | .accordion .accordion-header { 7 | border-width: 0 0 1px; 8 | cursor: pointer; 9 | } 10 | .accordion .accordion-body { 11 | border-width: 0 0 1px; 12 | } 13 | .accordion-noborder { 14 | border-width: 0; 15 | } 16 | .accordion-noborder .accordion-header { 17 | border-width: 0 0 1px; 18 | } 19 | .accordion-noborder .accordion-body { 20 | border-width: 0 0 1px; 21 | } 22 | .accordion-collapse { 23 | background: url('images/accordion_arrows.png') no-repeat 0 0; 24 | } 25 | .accordion-expand { 26 | background: url('images/accordion_arrows.png') no-repeat -16px 0; 27 | } 28 | .accordion { 29 | background: #ffffff; 30 | border-color: #D4D4D4; 31 | } 32 | .accordion .accordion-header { 33 | background: #F2F2F2; 34 | filter: none; 35 | } 36 | .accordion .accordion-header-selected { 37 | background: #0081c2; 38 | } 39 | .accordion .accordion-header-selected .panel-title { 40 | color: #fff; 41 | } 42 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/default/accordion.css: -------------------------------------------------------------------------------- 1 | .accordion { 2 | overflow: hidden; 3 | border-width: 1px; 4 | border-style: solid; 5 | } 6 | .accordion .accordion-header { 7 | border-width: 0 0 1px; 8 | cursor: pointer; 9 | } 10 | .accordion .accordion-body { 11 | border-width: 0 0 1px; 12 | } 13 | .accordion-noborder { 14 | border-width: 0; 15 | } 16 | .accordion-noborder .accordion-header { 17 | border-width: 0 0 1px; 18 | } 19 | .accordion-noborder .accordion-body { 20 | border-width: 0 0 1px; 21 | } 22 | .accordion-collapse { 23 | background: url('images/accordion_arrows.png') no-repeat 0 0; 24 | } 25 | .accordion-expand { 26 | background: url('images/accordion_arrows.png') no-repeat -16px 0; 27 | } 28 | .accordion { 29 | background: #ffffff; 30 | border-color: #95B8E7; 31 | } 32 | .accordion .accordion-header { 33 | background: #E0ECFF; 34 | filter: none; 35 | } 36 | .accordion .accordion-header-selected { 37 | background: #FBEC88; 38 | } 39 | .accordion .accordion-header-selected .panel-title { 40 | color: #000000; 41 | } 42 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/combobox/multiple.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Multiple Select - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

          Load Dynamic ComboBox Data

          14 |
          15 |
          16 |
          Drop down the panel and select multiple items.
          17 |
          18 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/tree/editable.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Editable Tree - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

          Editable Tree

          14 |
          15 |
          16 |
          Click the node to begin edit, press enter key to stop edit or esc key to cancel edit.
          17 |
          18 |
          19 |
            27 | 28 | 29 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/datebox/events.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DateBox Events - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

            DateBox Events

            14 |
            15 |
            16 |
            Click the calendar image on the right side.
            17 |
            18 |
            19 | 20 |
            21 | Selected Date: 22 | 23 |
            24 | 29 | 30 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/combobox/dynamicdata.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Load Dynamic ComboBox Data - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

            Load Dynamic ComboBox Data

            14 |
            15 |
            16 |
            Click the button below to load data.
            17 |
            18 |
            19 | LoadData 20 |
            21 | 22 | 24 | 25 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/combotree/multiple.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Multiple ComboTree - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

            Multiple ComboTree

            14 |
            15 |
            16 |
            Click the right arrow button to show the tree panel and select multiple nodes.
            17 |
            18 |
            19 | Cascade Check: 20 | 21 |
            22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/combobox/combobox_data2.json: -------------------------------------------------------------------------------- 1 | [{ 2 | "value":"f20", 3 | "text":"Firefox 2.0 or higher", 4 | "group":"Firefox" 5 | },{ 6 | "value":"f15", 7 | "text":"Firefox 1.5.x", 8 | "group":"Firefox" 9 | },{ 10 | "value":"f10", 11 | "text":"Firefox 1.0.x", 12 | "group":"Firefox" 13 | },{ 14 | "value":"ie7", 15 | "text":"Microsoft Internet Explorer 7.0 or higher", 16 | "group":"Microsoft Internet Explorer" 17 | },{ 18 | "value":"ie6", 19 | "text":"Microsoft Internet Explorer 6.x", 20 | "group":"Microsoft Internet Explorer" 21 | },{ 22 | "value":"ie5", 23 | "text":"Microsoft Internet Explorer 5.x", 24 | "group":"Microsoft Internet Explorer" 25 | },{ 26 | "value":"ie4", 27 | "text":"Microsoft Internet Explorer 4.x", 28 | "group":"Microsoft Internet Explorer" 29 | },{ 30 | "value":"op9", 31 | "text":"Opera 9.0 or higher", 32 | "group":"Opera" 33 | },{ 34 | "value":"op8", 35 | "text":"Opera 8.x", 36 | "group":"Opera" 37 | },{ 38 | "value":"op7", 39 | "text":"Opera 7.x", 40 | "group":"Opera" 41 | },{ 42 | "value":"Safari", 43 | "text":"Safari" 44 | },{ 45 | "value":"Other", 46 | "text":"Other" 47 | }] -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/panel/loadcontent.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Load Panel Content - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

            Load Panel Content

            14 |
            15 |
            16 |
            Click the refresh button on top right of panel to load content.
            17 |
            18 |
            19 |
            28 |
            29 | 30 | -------------------------------------------------------------------------------- /src/cn/mobile/scm/dao/SysParamMapper.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 15 | 16 | 17 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/layout/full.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Full Layout - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |
            north region
            14 |
            west content
            15 |
            east region
            16 |
            south region
            17 |
            18 | 19 | -------------------------------------------------------------------------------- /src/cn/mobile/scm/action/GoodsAction.java: -------------------------------------------------------------------------------- 1 | package cn.mobile.scm.action; 2 | 3 | import javax.annotation.Resource; 4 | 5 | import org.springframework.stereotype.Controller; 6 | import org.springframework.web.bind.annotation.RequestMapping; 7 | import org.springframework.web.bind.annotation.ResponseBody; 8 | 9 | import cn.mobile.scm.entity.Goods; 10 | import cn.mobile.scm.entity.Page; 11 | import cn.mobile.scm.service.GoodsService; 12 | 13 | @Controller 14 | @RequestMapping("/goods") 15 | public class GoodsAction extends BaseAction { 16 | @Resource 17 | private GoodsService goodsService; 18 | 19 | //通过关键字分页查询 20 | @RequestMapping("/selectPageUseDyc") 21 | @ResponseBody //如果返回json格式,需要这个注解,这里用来测试环境 22 | public Object selectPageUseDyc(Page page,Goods goods){ 23 | 24 | page.setParamEntity(goods); 25 | System.out.println("----page:"+page); 26 | 27 | Page p = goodsService.selectPageUseDyc(page); 28 | //supplier.setSupName("supName1"); 29 | /*Map map =new HashMap(); 30 | map.put("total",p.getTotalRecord()); 31 | map.put("rows",p.getList());*/ 32 | return p.getPageMap(); 33 | } 34 | 35 | 36 | } 37 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/tree/tree_data2.json: -------------------------------------------------------------------------------- 1 | [{ 2 | "id":1, 3 | "text":"My Documents", 4 | "children":[{ 5 | "id":11, 6 | "text":"Photos", 7 | "state":"closed", 8 | "children":[{ 9 | "id":111, 10 | "text":"Friend" 11 | },{ 12 | "id":112, 13 | "text":"Wife" 14 | },{ 15 | "id":113, 16 | "text":"Company" 17 | }] 18 | },{ 19 | "id":12, 20 | "text":"Program Files", 21 | "state":"closed", 22 | "children":[{ 23 | "id":121, 24 | "text":"Intel" 25 | },{ 26 | "id":122, 27 | "text":"Java" 28 | },{ 29 | "id":123, 30 | "text":"Microsoft Office" 31 | },{ 32 | "id":124, 33 | "text":"Games" 34 | }] 35 | },{ 36 | "id":16, 37 | "text":"Actions", 38 | "children":[{ 39 | "text":"Add", 40 | "iconCls":"icon-add" 41 | },{ 42 | "text":"Remove", 43 | "iconCls":"icon-remove" 44 | },{ 45 | "text":"Save", 46 | "iconCls":"icon-save" 47 | },{ 48 | "text":"Search", 49 | "iconCls":"icon-search" 50 | }] 51 | },{ 52 | "id":13, 53 | "text":"index.html" 54 | },{ 55 | "id":14, 56 | "text":"about.html" 57 | },{ 58 | "id":15, 59 | "text":"welcome.html" 60 | }] 61 | }] 62 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/treegrid/treegrid_data3.json: -------------------------------------------------------------------------------- 1 | {"total":9,"rows":[ 2 | {"id":1,"region":"Wyoming"}, 3 | {"id":11,"region":"Albin","f1":2000,"f2":1800,"f3":1903,"f4":2183,"f5":2133,"f6":1923,"f7":2018,"f8":1838,"_parentId":1}, 4 | {"id":12,"region":"Canon","f1":2000,"f2":1800,"f3":1903,"f4":2183,"f5":2133,"f6":1923,"f7":2018,"f8":1838,"_parentId":1}, 5 | {"id":13,"region":"Egbert","f1":2000,"f2":1800,"f3":1903,"f4":2183,"f5":2133,"f6":1923,"f7":2018,"f8":1838,"_parentId":1}, 6 | {"id":2,"region":"Washington"}, 7 | {"id":21,"region":"Bellingham","f1":2000,"f2":1800,"f3":1903,"f4":2183,"f5":2133,"f6":1923,"f7":2018,"f8":1838,"_parentId":2}, 8 | {"id":22,"region":"Chehalis","f1":2000,"f2":1800,"f3":1903,"f4":2183,"f5":2133,"f6":1923,"f7":2018,"f8":1838,"_parentId":2}, 9 | {"id":23,"region":"Ellensburg","f1":2000,"f2":1800,"f3":1903,"f4":2183,"f5":2133,"f6":1923,"f7":2018,"f8":1838,"_parentId":2}, 10 | {"id":24,"region":"Monroe","f1":2000,"f2":1800,"f3":1903,"f4":2183,"f5":2133,"f6":1923,"f7":2018,"f8":1838,"_parentId":2} 11 | ],"footer":[ 12 | {"region":"Total","f1":14000,"f2":12600,"f3":13321,"f4":15281,"f5":14931,"f6":13461,"f7":14126,"f8":12866} 13 | ]} -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/draggable/basic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Basic Draggable - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

            Basic Draggable

            14 |
            15 |
            16 |
            Move the boxes below by clicking on it with mouse.
            17 |
            18 |
            19 |
            20 |
            21 |
            Title
            22 |
            23 | 24 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/window/basic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Basic Window - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

            Basic Window

            14 |
            15 |
            16 |
            Window can be dragged freely on screen.
            17 |
            18 |
            19 | Open 20 | Close 21 |
            22 |
            23 | The window content. 24 |
            25 | 26 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/datebox/buttons.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DateBox Buttons - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

            DateBox Buttons

            14 |
            15 |
            16 |
            This example shows how to customize the datebox buttons underneath the calendar.
            17 |
            18 |
            19 | 20 | 21 | 30 | 31 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/dialog/basic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Basic Dialog - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

            Basic Dialog

            14 |
            15 |
            16 |
            Click below button to open or close dialog.
            17 |
            18 |
            19 | Open 20 | Close 21 |
            22 |
            23 | The dialog content. 24 |
            25 | 26 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/tree/formatting.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Formatting Tree Nodes - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

            Formatting Tree Nodes

            14 |
            15 |
            16 |
            This example shows how to display extra information on nodes.
            17 |
            18 |
            19 |
              31 |
            32 | 33 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/black/splitbutton.css: -------------------------------------------------------------------------------- 1 | .s-btn-downarrow { 2 | display: inline-block; 3 | margin: 0 0 0 4px; 4 | padding: 0 0 0 1px; 5 | width: 14px; 6 | height: 16px; 7 | line-height: 16px; 8 | border-width: 0; 9 | border-style: solid; 10 | font-size: 12px; 11 | _vertical-align: middle; 12 | } 13 | a.s-btn-active { 14 | background-position: bottom right; 15 | } 16 | a.s-btn-active span.l-btn-left { 17 | background-position: bottom left; 18 | } 19 | a.s-btn-plain-active { 20 | background: transparent; 21 | padding: 0 5px 0 0; 22 | border-width: 1px; 23 | border-style: solid; 24 | -moz-border-radius: 5px 5px 5px 5px; 25 | -webkit-border-radius: 5px 5px 5px 5px; 26 | border-radius: 5px 5px 5px 5px; 27 | } 28 | .s-btn-downarrow { 29 | background: url('images/menu_arrows.png') no-repeat 2px center; 30 | border-color: #cccccc; 31 | } 32 | a:hover.l-btn .s-btn-downarrow, 33 | a.s-btn-active .s-btn-downarrow, 34 | a.s-btn-plain-active .s-btn-downarrow { 35 | background-position: 1px center; 36 | padding: 0; 37 | border-width: 0 0 0 1px; 38 | } 39 | a.s-btn-plain-active { 40 | border-color: #555; 41 | background-color: #777; 42 | color: #fff; 43 | } 44 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/metro/splitbutton.css: -------------------------------------------------------------------------------- 1 | .s-btn-downarrow { 2 | display: inline-block; 3 | margin: 0 0 0 4px; 4 | padding: 0 0 0 1px; 5 | width: 14px; 6 | height: 16px; 7 | line-height: 16px; 8 | border-width: 0; 9 | border-style: solid; 10 | font-size: 12px; 11 | _vertical-align: middle; 12 | } 13 | a.s-btn-active { 14 | background-position: bottom right; 15 | } 16 | a.s-btn-active span.l-btn-left { 17 | background-position: bottom left; 18 | } 19 | a.s-btn-plain-active { 20 | background: transparent; 21 | padding: 0 5px 0 0; 22 | border-width: 1px; 23 | border-style: solid; 24 | -moz-border-radius: 0px 0px 0px 0px; 25 | -webkit-border-radius: 0px 0px 0px 0px; 26 | border-radius: 0px 0px 0px 0px; 27 | } 28 | .s-btn-downarrow { 29 | background: url('images/menu_arrows.png') no-repeat 2px center; 30 | border-color: #b3b3b3; 31 | } 32 | a:hover.l-btn .s-btn-downarrow, 33 | a.s-btn-active .s-btn-downarrow, 34 | a.s-btn-plain-active .s-btn-downarrow { 35 | background-position: 1px center; 36 | padding: 0; 37 | border-width: 0 0 0 1px; 38 | } 39 | a.s-btn-plain-active { 40 | border-color: #ddd; 41 | background-color: #E6E6E6; 42 | color: #444; 43 | } 44 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/bootstrap/splitbutton.css: -------------------------------------------------------------------------------- 1 | .s-btn-downarrow { 2 | display: inline-block; 3 | margin: 0 0 0 4px; 4 | padding: 0 0 0 1px; 5 | width: 14px; 6 | height: 16px; 7 | line-height: 16px; 8 | border-width: 0; 9 | border-style: solid; 10 | font-size: 12px; 11 | _vertical-align: middle; 12 | } 13 | a.s-btn-active { 14 | background-position: bottom right; 15 | } 16 | a.s-btn-active span.l-btn-left { 17 | background-position: bottom left; 18 | } 19 | a.s-btn-plain-active { 20 | background: transparent; 21 | padding: 0 5px 0 0; 22 | border-width: 1px; 23 | border-style: solid; 24 | -moz-border-radius: 5px 5px 5px 5px; 25 | -webkit-border-radius: 5px 5px 5px 5px; 26 | border-radius: 5px 5px 5px 5px; 27 | } 28 | .s-btn-downarrow { 29 | background: url('images/menu_arrows.png') no-repeat 2px center; 30 | border-color: #bbb; 31 | } 32 | a:hover.l-btn .s-btn-downarrow, 33 | a.s-btn-active .s-btn-downarrow, 34 | a.s-btn-plain-active .s-btn-downarrow { 35 | background-position: 1px center; 36 | padding: 0; 37 | border-width: 0 0 0 1px; 38 | } 39 | a.s-btn-plain-active { 40 | border-color: #ddd; 41 | background-color: #e6e6e6; 42 | color: #00438a; 43 | } 44 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/gray/splitbutton.css: -------------------------------------------------------------------------------- 1 | .s-btn-downarrow { 2 | display: inline-block; 3 | margin: 0 0 0 4px; 4 | padding: 0 0 0 1px; 5 | width: 14px; 6 | height: 16px; 7 | line-height: 16px; 8 | border-width: 0; 9 | border-style: solid; 10 | font-size: 12px; 11 | _vertical-align: middle; 12 | } 13 | a.s-btn-active { 14 | background-position: bottom right; 15 | } 16 | a.s-btn-active span.l-btn-left { 17 | background-position: bottom left; 18 | } 19 | a.s-btn-plain-active { 20 | background: transparent; 21 | padding: 0 5px 0 0; 22 | border-width: 1px; 23 | border-style: solid; 24 | -moz-border-radius: 5px 5px 5px 5px; 25 | -webkit-border-radius: 5px 5px 5px 5px; 26 | border-radius: 5px 5px 5px 5px; 27 | } 28 | .s-btn-downarrow { 29 | background: url('images/menu_arrows.png') no-repeat 2px center; 30 | border-color: #bfbfbf; 31 | } 32 | a:hover.l-btn .s-btn-downarrow, 33 | a.s-btn-active .s-btn-downarrow, 34 | a.s-btn-plain-active .s-btn-downarrow { 35 | background-position: 1px center; 36 | padding: 0; 37 | border-width: 0 0 0 1px; 38 | } 39 | a.s-btn-plain-active { 40 | border-color: #ccc; 41 | background-color: #e2e2e2; 42 | color: #000000; 43 | } 44 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/default/splitbutton.css: -------------------------------------------------------------------------------- 1 | .s-btn-downarrow { 2 | display: inline-block; 3 | margin: 0 0 0 4px; 4 | padding: 0 0 0 1px; 5 | width: 14px; 6 | height: 16px; 7 | line-height: 16px; 8 | border-width: 0; 9 | border-style: solid; 10 | font-size: 12px; 11 | _vertical-align: middle; 12 | } 13 | a.s-btn-active { 14 | background-position: bottom right; 15 | } 16 | a.s-btn-active span.l-btn-left { 17 | background-position: bottom left; 18 | } 19 | a.s-btn-plain-active { 20 | background: transparent; 21 | padding: 0 5px 0 0; 22 | border-width: 1px; 23 | border-style: solid; 24 | -moz-border-radius: 5px 5px 5px 5px; 25 | -webkit-border-radius: 5px 5px 5px 5px; 26 | border-radius: 5px 5px 5px 5px; 27 | } 28 | .s-btn-downarrow { 29 | background: url('images/menu_arrows.png') no-repeat 2px center; 30 | border-color: #aac5e7; 31 | } 32 | a:hover.l-btn .s-btn-downarrow, 33 | a.s-btn-active .s-btn-downarrow, 34 | a.s-btn-plain-active .s-btn-downarrow { 35 | background-position: 1px center; 36 | padding: 0; 37 | border-width: 0 0 0 1px; 38 | } 39 | a.s-btn-plain-active { 40 | border-color: #b7d2ff; 41 | background-color: #eaf2ff; 42 | color: #000000; 43 | } 44 | -------------------------------------------------------------------------------- /config/spring-mvc.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 15 | 16 | 17 | 18 | 20 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/propertygrid/groupformat.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Group Format - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

            Group Format

            14 |
            15 |
            16 |
            The user can change the group information.
            17 |
            18 |
            19 | 26 |
            27 | 32 | 33 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/window/modalwindow.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Modal Window - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

            Modal Window

            14 |
            15 |
            16 |
            Click the open button below to open the modal window.
            17 |
            18 |
            19 | Open 20 | Close 21 |
            22 |
            23 | The window content. 24 |
            25 | 26 | 27 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/panel/nestedpanel.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Nested Panel - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

            Nested Panel

            14 |
            15 |
            16 |
            The panel can be placed inside containers and can contain other components.
            17 |
            18 |
            19 |
            20 |
            21 |
            22 | Left Content 23 |
            24 |
            25 | Right Content 26 |
            27 |
            28 |
            29 | 30 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/tooltip/customcontent.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Custom Tooltip Content - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

            Custom Tooltip Content

            14 |
            15 |
            16 |
            Access to each elements attribute to get the tooltip content.
            17 |
            18 |
            19 |
            20 | 21 | 32 | 33 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/progressbar/basic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Basic ProgressBar - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

            Basic ProgressBar

            14 |
            15 |
            16 |
            Click the button below to show progress information.
            17 |
            18 |
            19 | Start 20 |
            21 |
            22 | 32 | 33 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/tooltip/ajax.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Ajax Tooltip - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

            Ajax Tooltip

            14 |
            15 |
            16 |
            The tooltip content can be loaded via AJAX.
            17 |
            18 |
            19 | Hove me to display tooltip content via AJAX. 34 | 35 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/calendar/firstday.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | First Day of Week - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

            First Day of Week

            14 |
            15 |
            16 |
            Choose the first day of the week.
            17 |
            18 | 19 |
            20 | 29 |
            30 | 31 |
            32 | 33 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/slider/formattip.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Format Tip Information - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

            Format Tip Information

            14 |
            15 |
            16 |
            This sample shows how to format tip information.
            17 |
            18 |
            19 |
            20 | 29 |
            30 |
            jQuery EasyUI
            31 | 32 | 33 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/linkbutton/basic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Basic LinkButton - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

            Basic LinkButton

            14 |
            15 |
            16 |
            Buttons can be created from <a/> link.
            17 |
            18 |
            19 |
            20 | Add 21 | Remove 22 | Save 23 | Cut 24 | Text Button 25 |
            26 | 27 | 28 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/propertygrid/customcolumns.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Customize Columns of PropertyGrid - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

            Customize Columns of PropertyGrid

            14 |
            15 |
            16 |
            The columns of PropertyGrid can be changed.
            17 |
            18 |
            19 | 26 |
            27 | 33 | 34 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/searchbox/category.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Search Category - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

            Search Category

            14 |
            15 |
            16 |
            Select a category and click search button or press enter key in input box to do searching.
            17 |
            18 |
            19 | 20 |
            21 |
            All News
            22 |
            Sports News
            23 |
            24 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/pagination/custombuttons.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Custom Pagination Buttons - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

            Custom Pagination Buttons

            14 |
            15 |
            16 |
            The customized buttons can be appended to page bar.
            17 |
            18 |
            19 |
            20 | 38 | 39 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/resizable/basic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Basic Resizable - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

            Basic Resizable

            14 |
            15 |
            16 |
            Click on the edge of box and move the edge to resize the box.
            17 |
            18 |
            19 |
            20 |
            Resize Me
            21 |
            22 |
            23 |
            Title
            24 |
            Drag and Resize Me
            25 |
            26 | 27 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/license_commercial.txt: -------------------------------------------------------------------------------- 1 | This license agreement refers to jQuery EasyUI software - Commercial License. 2 | 3 | jQuery EasyUI Team grants to you a limited, non-transferable and non-exclusive right to use, royalty-free, copy and modify the software. 4 | 5 | The Licensee has the right to use the software by up to 5 developers at a time. There are no limitations on the number of projects/sites you can use the software in, you can use it on any number of projects/sites you need. There is no time limit, you can use the software for any period of time you need. There is no restriction while you are developing your solution. There are no royalties of any kind involved. 6 | 7 | Modifications to the software are allowed but you may not: 8 | a) Distribute the modified software or part(s) of it as standalone application. 9 | b) Sublicense, rent, lease or lend any portion of the software. 10 | c) Modify or remove any copyright notices from any of the software files. 11 | 12 | The Licensee has the right to apply for tech support on the software within 1 year since purchasing the product and bug fixing during the same period. 13 | 14 | The Licensee has the right to get free upgrades for 1 year since purchasing the product. 15 | 16 | jQuery EasyUI Team retain all ownership rights to the software. 17 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/black/combo.css: -------------------------------------------------------------------------------- 1 | .combo { 2 | display: inline-block; 3 | white-space: nowrap; 4 | margin: 0; 5 | padding: 0; 6 | border-width: 1px; 7 | border-style: solid; 8 | overflow: hidden; 9 | vertical-align: middle; 10 | } 11 | .combo .combo-text { 12 | font-size: 12px; 13 | border: 0px; 14 | line-height: 20px; 15 | height: 20px; 16 | margin: 0; 17 | padding: 0px 2px; 18 | *margin-top: -1px; 19 | *height: 18px; 20 | *line-height: 18px; 21 | _height: 18px; 22 | _line-height: 18px; 23 | vertical-align: baseline; 24 | } 25 | .combo-arrow { 26 | width: 18px; 27 | height: 20px; 28 | overflow: hidden; 29 | display: inline-block; 30 | vertical-align: top; 31 | cursor: pointer; 32 | opacity: 0.6; 33 | filter: alpha(opacity=60); 34 | } 35 | .combo-arrow-hover { 36 | opacity: 1.0; 37 | filter: alpha(opacity=100); 38 | } 39 | .combo-panel { 40 | overflow: auto; 41 | } 42 | .combo-arrow { 43 | background: url('images/combo_arrow.png') no-repeat center center; 44 | } 45 | .combo, 46 | .combo-panel { 47 | background-color: #666; 48 | } 49 | .combo { 50 | border-color: #000; 51 | background-color: #666; 52 | } 53 | .combo-arrow { 54 | background-color: #3d3d3d; 55 | } 56 | .combo-arrow-hover { 57 | background-color: #777; 58 | } 59 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/metro/combo.css: -------------------------------------------------------------------------------- 1 | .combo { 2 | display: inline-block; 3 | white-space: nowrap; 4 | margin: 0; 5 | padding: 0; 6 | border-width: 1px; 7 | border-style: solid; 8 | overflow: hidden; 9 | vertical-align: middle; 10 | } 11 | .combo .combo-text { 12 | font-size: 12px; 13 | border: 0px; 14 | line-height: 20px; 15 | height: 20px; 16 | margin: 0; 17 | padding: 0px 2px; 18 | *margin-top: -1px; 19 | *height: 18px; 20 | *line-height: 18px; 21 | _height: 18px; 22 | _line-height: 18px; 23 | vertical-align: baseline; 24 | } 25 | .combo-arrow { 26 | width: 18px; 27 | height: 20px; 28 | overflow: hidden; 29 | display: inline-block; 30 | vertical-align: top; 31 | cursor: pointer; 32 | opacity: 0.6; 33 | filter: alpha(opacity=60); 34 | } 35 | .combo-arrow-hover { 36 | opacity: 1.0; 37 | filter: alpha(opacity=100); 38 | } 39 | .combo-panel { 40 | overflow: auto; 41 | } 42 | .combo-arrow { 43 | background: url('images/combo_arrow.png') no-repeat center center; 44 | } 45 | .combo, 46 | .combo-panel { 47 | background-color: #fff; 48 | } 49 | .combo { 50 | border-color: #ddd; 51 | background-color: #fff; 52 | } 53 | .combo-arrow { 54 | background-color: #ffffff; 55 | } 56 | .combo-arrow-hover { 57 | background-color: #E6E6E6; 58 | } 59 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/gray/combo.css: -------------------------------------------------------------------------------- 1 | .combo { 2 | display: inline-block; 3 | white-space: nowrap; 4 | margin: 0; 5 | padding: 0; 6 | border-width: 1px; 7 | border-style: solid; 8 | overflow: hidden; 9 | vertical-align: middle; 10 | } 11 | .combo .combo-text { 12 | font-size: 12px; 13 | border: 0px; 14 | line-height: 20px; 15 | height: 20px; 16 | margin: 0; 17 | padding: 0px 2px; 18 | *margin-top: -1px; 19 | *height: 18px; 20 | *line-height: 18px; 21 | _height: 18px; 22 | _line-height: 18px; 23 | vertical-align: baseline; 24 | } 25 | .combo-arrow { 26 | width: 18px; 27 | height: 20px; 28 | overflow: hidden; 29 | display: inline-block; 30 | vertical-align: top; 31 | cursor: pointer; 32 | opacity: 0.6; 33 | filter: alpha(opacity=60); 34 | } 35 | .combo-arrow-hover { 36 | opacity: 1.0; 37 | filter: alpha(opacity=100); 38 | } 39 | .combo-panel { 40 | overflow: auto; 41 | } 42 | .combo-arrow { 43 | background: url('images/combo_arrow.png') no-repeat center center; 44 | } 45 | .combo, 46 | .combo-panel { 47 | background-color: #ffffff; 48 | } 49 | .combo { 50 | border-color: #D3D3D3; 51 | background-color: #ffffff; 52 | } 53 | .combo-arrow { 54 | background-color: #f3f3f3; 55 | } 56 | .combo-arrow-hover { 57 | background-color: #e2e2e2; 58 | } 59 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/datebox/validate.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Validate DateBox - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

            Validate DateBox

            14 |
            15 |
            16 |
            When the selected date is greater than specified date. The field validator will raise an error.
            17 |
            18 |
            19 | 20 | 32 | 33 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/pagination/attaching.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Attaching Other Components - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

            Attaching Other Components

            14 |
            15 |
            16 |
            Any other components can be attached to page bar.
            17 |
            18 |
            19 |
            20 |
            21 | 22 | 23 | 26 | 29 | 30 |
            24 | 25 | 27 | 28 |
            31 |
            32 | 33 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/window/inlinewindow.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Inline Window - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

            Inline Window

            14 |
            15 |
            16 |
            The inline window stay inside its parent.
            17 |
            18 |
            19 | Open 20 | Close 21 |
            22 |
            23 |
            24 | This window stay inside its parent 25 |
            26 |
            27 | 28 | 29 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/bootstrap/combo.css: -------------------------------------------------------------------------------- 1 | .combo { 2 | display: inline-block; 3 | white-space: nowrap; 4 | margin: 0; 5 | padding: 0; 6 | border-width: 1px; 7 | border-style: solid; 8 | overflow: hidden; 9 | vertical-align: middle; 10 | } 11 | .combo .combo-text { 12 | font-size: 12px; 13 | border: 0px; 14 | line-height: 20px; 15 | height: 20px; 16 | margin: 0; 17 | padding: 0px 2px; 18 | *margin-top: -1px; 19 | *height: 18px; 20 | *line-height: 18px; 21 | _height: 18px; 22 | _line-height: 18px; 23 | vertical-align: baseline; 24 | } 25 | .combo-arrow { 26 | width: 18px; 27 | height: 20px; 28 | overflow: hidden; 29 | display: inline-block; 30 | vertical-align: top; 31 | cursor: pointer; 32 | opacity: 0.6; 33 | filter: alpha(opacity=60); 34 | } 35 | .combo-arrow-hover { 36 | opacity: 1.0; 37 | filter: alpha(opacity=100); 38 | } 39 | .combo-panel { 40 | overflow: auto; 41 | } 42 | .combo-arrow { 43 | background: url('images/combo_arrow.png') no-repeat center center; 44 | } 45 | .combo, 46 | .combo-panel { 47 | background-color: #ffffff; 48 | } 49 | .combo { 50 | border-color: #D4D4D4; 51 | background-color: #ffffff; 52 | } 53 | .combo-arrow { 54 | background-color: #F2F2F2; 55 | } 56 | .combo-arrow-hover { 57 | background-color: #e6e6e6; 58 | } 59 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/default/combo.css: -------------------------------------------------------------------------------- 1 | .combo { 2 | display: inline-block; 3 | white-space: nowrap; 4 | margin: 0; 5 | padding: 0; 6 | border-width: 1px; 7 | border-style: solid; 8 | overflow: hidden; 9 | vertical-align: middle; 10 | } 11 | .combo .combo-text { 12 | font-size: 12px; 13 | border: 0px; 14 | line-height: 20px; 15 | height: 20px; 16 | margin: 0; 17 | padding: 0px 2px; 18 | *margin-top: -1px; 19 | *height: 18px; 20 | *line-height: 18px; 21 | _height: 18px; 22 | _line-height: 18px; 23 | vertical-align: baseline; 24 | } 25 | .combo-arrow { 26 | width: 18px; 27 | height: 20px; 28 | overflow: hidden; 29 | display: inline-block; 30 | vertical-align: top; 31 | cursor: pointer; 32 | opacity: 0.6; 33 | filter: alpha(opacity=60); 34 | } 35 | .combo-arrow-hover { 36 | opacity: 1.0; 37 | filter: alpha(opacity=100); 38 | } 39 | .combo-panel { 40 | overflow: auto; 41 | } 42 | .combo-arrow { 43 | background: url('images/combo_arrow.png') no-repeat center center; 44 | } 45 | .combo, 46 | .combo-panel { 47 | background-color: #ffffff; 48 | } 49 | .combo { 50 | border-color: #95B8E7; 51 | background-color: #ffffff; 52 | } 53 | .combo-arrow { 54 | background-color: #E0ECFF; 55 | } 56 | .combo-arrow-hover { 57 | background-color: #eaf2ff; 58 | } 59 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/combobox/customformat.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Custom Format in ComboBox - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

            Custom Format in ComboBox

            14 |
            15 |
            16 |
            This sample shows how to custom the format of list item.
            17 |
            18 | 27 | 34 | 35 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/linkbutton/toggle.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Toggle Button - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

            Toggle Button

            14 |
            15 |
            16 |
            Click the button below to switch its selected state.
            17 |
            18 |
            19 |
            20 | Add 21 | Remove 22 | Save 23 | Cut 24 | Text Button 25 |
            26 | 27 | 28 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/treegrid/basic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Basic TreeGrid - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

            Basic TreeGrid

            14 |
            15 |
            16 |
            TreeGrid allows you to expand or collapse group rows.
            17 |
            18 |
            19 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 |
            NameSizeModified Date
            35 | 36 | 37 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/messager/interactive.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Interactive Messager - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

            Interactive Messager

            14 |
            15 |
            16 |
            Click on each button to display interactive message box.
            17 |
            18 |
            19 | Confirm 20 | Prompt 21 |
            22 | 38 | 39 | -------------------------------------------------------------------------------- /src/cn/mobile/scm/action/AccountAction.java: -------------------------------------------------------------------------------- 1 | package cn.mobile.scm.action; 2 | 3 | import javax.annotation.Resource; 4 | import javax.servlet.http.HttpServletRequest; 5 | import javax.servlet.http.HttpSession; 6 | 7 | import org.springframework.stereotype.Controller; 8 | import org.springframework.web.bind.annotation.RequestMapping; 9 | import org.springframework.web.bind.annotation.ResponseBody; 10 | 11 | import cn.mobile.scm.entity.Account; 12 | import cn.mobile.scm.service.AccountService; 13 | 14 | 15 | @Controller 16 | @RequestMapping(value="/account") 17 | public class AccountAction extends BaseAction{ 18 | 19 | @Resource 20 | private AccountService accountService; 21 | 22 | @RequestMapping(value="/login") 23 | public String login(Account account,HttpServletRequest request,HttpSession session) throws Exception{ 24 | System.out.println("---action.account:"+account); 25 | Account acc = accountService.login(account); 26 | if(acc!=null) 27 | { 28 | return "forward:/WEB-INF/jsp/main.jsp"; 29 | } 30 | else 31 | { 32 | request.setAttribute("msg", "用户名或密码错误!"); 33 | return "forward:/WEB-INF/jsp/login.jsp"; 34 | } 35 | } 36 | 37 | 38 | @RequestMapping("/doAjax") 39 | @ResponseBody //如果返回json格式,需要这个注解,这里用来测试环境 40 | public Object doAjax(Account account){ 41 | System.out.println("---doAjax.account:"+account); 42 | 43 | return account; 44 | } 45 | 46 | } 47 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/black/spinner.css: -------------------------------------------------------------------------------- 1 | .spinner { 2 | display: inline-block; 3 | white-space: nowrap; 4 | margin: 0; 5 | padding: 0; 6 | border-width: 1px; 7 | border-style: solid; 8 | overflow: hidden; 9 | vertical-align: middle; 10 | } 11 | .spinner .spinner-text { 12 | font-size: 12px; 13 | border: 0px; 14 | line-height: 20px; 15 | height: 20px; 16 | margin: 0; 17 | padding: 0 2px; 18 | *margin-top: -1px; 19 | *height: 18px; 20 | *line-height: 18px; 21 | _height: 18px; 22 | _line-height: 18px; 23 | vertical-align: baseline; 24 | } 25 | .spinner-arrow { 26 | display: inline-block; 27 | overflow: hidden; 28 | vertical-align: top; 29 | margin: 0; 30 | padding: 0; 31 | } 32 | .spinner-arrow-up, 33 | .spinner-arrow-down { 34 | opacity: 0.6; 35 | filter: alpha(opacity=60); 36 | display: block; 37 | font-size: 1px; 38 | width: 18px; 39 | height: 10px; 40 | } 41 | .spinner-arrow-hover { 42 | opacity: 1.0; 43 | filter: alpha(opacity=100); 44 | } 45 | .spinner-arrow-up { 46 | background: url('images/spinner_arrows.png') no-repeat 1px center; 47 | } 48 | .spinner-arrow-down { 49 | background: url('images/spinner_arrows.png') no-repeat -15px center; 50 | } 51 | .spinner { 52 | border-color: #000; 53 | } 54 | .spinner-arrow { 55 | background-color: #3d3d3d; 56 | } 57 | .spinner-arrow-hover { 58 | background-color: #777; 59 | } 60 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/datagrid/datagrid_data2.json: -------------------------------------------------------------------------------- 1 | {"total":28,"rows":[ 2 | {"productid":"FI-SW-01","unitcost":10.00,"status":"P","listprice":36.50,"attr1":"Large","itemid":"EST-1"}, 3 | {"productid":"K9-DL-01","unitcost":12.00,"status":"P","listprice":18.50,"attr1":"Spotted Adult Female","itemid":"EST-10"}, 4 | {"productid":"RP-SN-01","unitcost":12.00,"status":"P","listprice":28.50,"attr1":"Venomless","itemid":"EST-11"}, 5 | {"productid":"RP-SN-01","unitcost":12.00,"status":"P","listprice":26.50,"attr1":"Rattleless","itemid":"EST-12"}, 6 | {"productid":"RP-LI-02","unitcost":12.00,"status":"P","listprice":35.50,"attr1":"Green Adult","itemid":"EST-13"}, 7 | {"productid":"FL-DSH-01","unitcost":12.00,"status":"P","listprice":158.50,"attr1":"Tailless","itemid":"EST-14"}, 8 | {"productid":"FL-DSH-01","unitcost":12.00,"status":"P","listprice":83.50,"attr1":"With tail","itemid":"EST-15"}, 9 | {"productid":"FL-DLH-02","unitcost":12.00,"status":"P","listprice":63.50,"attr1":"Adult Female","itemid":"EST-16"}, 10 | {"productid":"FL-DLH-02","unitcost":12.00,"status":"P","listprice":89.50,"attr1":"Adult Male","itemid":"EST-17"}, 11 | {"productid":"AV-CB-01","unitcost":92.00,"status":"P","listprice":63.50,"attr1":"Adult Male","itemid":"EST-18"} 12 | ],"footer":[ 13 | {"unitcost":19.80,"listprice":60.40,"productid":"Average:"}, 14 | {"unitcost":198.00,"listprice":604.00,"productid":"Total:"} 15 | ]} 16 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/gray/spinner.css: -------------------------------------------------------------------------------- 1 | .spinner { 2 | display: inline-block; 3 | white-space: nowrap; 4 | margin: 0; 5 | padding: 0; 6 | border-width: 1px; 7 | border-style: solid; 8 | overflow: hidden; 9 | vertical-align: middle; 10 | } 11 | .spinner .spinner-text { 12 | font-size: 12px; 13 | border: 0px; 14 | line-height: 20px; 15 | height: 20px; 16 | margin: 0; 17 | padding: 0 2px; 18 | *margin-top: -1px; 19 | *height: 18px; 20 | *line-height: 18px; 21 | _height: 18px; 22 | _line-height: 18px; 23 | vertical-align: baseline; 24 | } 25 | .spinner-arrow { 26 | display: inline-block; 27 | overflow: hidden; 28 | vertical-align: top; 29 | margin: 0; 30 | padding: 0; 31 | } 32 | .spinner-arrow-up, 33 | .spinner-arrow-down { 34 | opacity: 0.6; 35 | filter: alpha(opacity=60); 36 | display: block; 37 | font-size: 1px; 38 | width: 18px; 39 | height: 10px; 40 | } 41 | .spinner-arrow-hover { 42 | opacity: 1.0; 43 | filter: alpha(opacity=100); 44 | } 45 | .spinner-arrow-up { 46 | background: url('images/spinner_arrows.png') no-repeat 1px center; 47 | } 48 | .spinner-arrow-down { 49 | background: url('images/spinner_arrows.png') no-repeat -15px center; 50 | } 51 | .spinner { 52 | border-color: #D3D3D3; 53 | } 54 | .spinner-arrow { 55 | background-color: #f3f3f3; 56 | } 57 | .spinner-arrow-hover { 58 | background-color: #e2e2e2; 59 | } 60 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/metro/spinner.css: -------------------------------------------------------------------------------- 1 | .spinner { 2 | display: inline-block; 3 | white-space: nowrap; 4 | margin: 0; 5 | padding: 0; 6 | border-width: 1px; 7 | border-style: solid; 8 | overflow: hidden; 9 | vertical-align: middle; 10 | } 11 | .spinner .spinner-text { 12 | font-size: 12px; 13 | border: 0px; 14 | line-height: 20px; 15 | height: 20px; 16 | margin: 0; 17 | padding: 0 2px; 18 | *margin-top: -1px; 19 | *height: 18px; 20 | *line-height: 18px; 21 | _height: 18px; 22 | _line-height: 18px; 23 | vertical-align: baseline; 24 | } 25 | .spinner-arrow { 26 | display: inline-block; 27 | overflow: hidden; 28 | vertical-align: top; 29 | margin: 0; 30 | padding: 0; 31 | } 32 | .spinner-arrow-up, 33 | .spinner-arrow-down { 34 | opacity: 0.6; 35 | filter: alpha(opacity=60); 36 | display: block; 37 | font-size: 1px; 38 | width: 18px; 39 | height: 10px; 40 | } 41 | .spinner-arrow-hover { 42 | opacity: 1.0; 43 | filter: alpha(opacity=100); 44 | } 45 | .spinner-arrow-up { 46 | background: url('images/spinner_arrows.png') no-repeat 1px center; 47 | } 48 | .spinner-arrow-down { 49 | background: url('images/spinner_arrows.png') no-repeat -15px center; 50 | } 51 | .spinner { 52 | border-color: #ddd; 53 | } 54 | .spinner-arrow { 55 | background-color: #ffffff; 56 | } 57 | .spinner-arrow-hover { 58 | background-color: #E6E6E6; 59 | } 60 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/bootstrap/spinner.css: -------------------------------------------------------------------------------- 1 | .spinner { 2 | display: inline-block; 3 | white-space: nowrap; 4 | margin: 0; 5 | padding: 0; 6 | border-width: 1px; 7 | border-style: solid; 8 | overflow: hidden; 9 | vertical-align: middle; 10 | } 11 | .spinner .spinner-text { 12 | font-size: 12px; 13 | border: 0px; 14 | line-height: 20px; 15 | height: 20px; 16 | margin: 0; 17 | padding: 0 2px; 18 | *margin-top: -1px; 19 | *height: 18px; 20 | *line-height: 18px; 21 | _height: 18px; 22 | _line-height: 18px; 23 | vertical-align: baseline; 24 | } 25 | .spinner-arrow { 26 | display: inline-block; 27 | overflow: hidden; 28 | vertical-align: top; 29 | margin: 0; 30 | padding: 0; 31 | } 32 | .spinner-arrow-up, 33 | .spinner-arrow-down { 34 | opacity: 0.6; 35 | filter: alpha(opacity=60); 36 | display: block; 37 | font-size: 1px; 38 | width: 18px; 39 | height: 10px; 40 | } 41 | .spinner-arrow-hover { 42 | opacity: 1.0; 43 | filter: alpha(opacity=100); 44 | } 45 | .spinner-arrow-up { 46 | background: url('images/spinner_arrows.png') no-repeat 1px center; 47 | } 48 | .spinner-arrow-down { 49 | background: url('images/spinner_arrows.png') no-repeat -15px center; 50 | } 51 | .spinner { 52 | border-color: #D4D4D4; 53 | } 54 | .spinner-arrow { 55 | background-color: #F2F2F2; 56 | } 57 | .spinner-arrow-hover { 58 | background-color: #e6e6e6; 59 | } 60 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/themes/default/spinner.css: -------------------------------------------------------------------------------- 1 | .spinner { 2 | display: inline-block; 3 | white-space: nowrap; 4 | margin: 0; 5 | padding: 0; 6 | border-width: 1px; 7 | border-style: solid; 8 | overflow: hidden; 9 | vertical-align: middle; 10 | } 11 | .spinner .spinner-text { 12 | font-size: 12px; 13 | border: 0px; 14 | line-height: 20px; 15 | height: 20px; 16 | margin: 0; 17 | padding: 0 2px; 18 | *margin-top: -1px; 19 | *height: 18px; 20 | *line-height: 18px; 21 | _height: 18px; 22 | _line-height: 18px; 23 | vertical-align: baseline; 24 | } 25 | .spinner-arrow { 26 | display: inline-block; 27 | overflow: hidden; 28 | vertical-align: top; 29 | margin: 0; 30 | padding: 0; 31 | } 32 | .spinner-arrow-up, 33 | .spinner-arrow-down { 34 | opacity: 0.6; 35 | filter: alpha(opacity=60); 36 | display: block; 37 | font-size: 1px; 38 | width: 18px; 39 | height: 10px; 40 | } 41 | .spinner-arrow-hover { 42 | opacity: 1.0; 43 | filter: alpha(opacity=100); 44 | } 45 | .spinner-arrow-up { 46 | background: url('images/spinner_arrows.png') no-repeat 1px center; 47 | } 48 | .spinner-arrow-down { 49 | background: url('images/spinner_arrows.png') no-repeat -15px center; 50 | } 51 | .spinner { 52 | border-color: #95B8E7; 53 | } 54 | .spinner-arrow { 55 | background-color: #E0ECFF; 56 | } 57 | .spinner-arrow-hover { 58 | background-color: #eaf2ff; 59 | } 60 | -------------------------------------------------------------------------------- /WebRoot/jquery-easyui-1.3.5/demo/draggable/snap.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Snap Draggable - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

            Snap Draggable

            14 |
            15 |
            16 |
            This sample shows how to snap a draggable object to a 20x20 grid.
            17 |
            18 |
            19 |
            20 |
            21 |
            22 |
            23 | 38 | 39 | 40 | --------------------------------------------------------------------------------