├── .gitignore ├── README.md ├── assets ├── img │ ├── IJPay-t.png │ ├── apay.png │ ├── apayn.png │ └── wxpay.png └── unionpay │ ├── acp_sdk.properties │ └── certs │ ├── acp_test_enc.cer │ ├── acp_test_middle.cer │ ├── acp_test_root.cer │ └── acp_test_sign.pfx ├── doc ├── img │ ├── alipay_test1.png │ ├── alipay_test2.png │ ├── alipay_test3.png │ ├── pay_keyboard.png │ ├── wxpay.gif │ └── wxsubpay.gif ├── pay_keyboard.m4v └── 必读.md ├── libs └── bcprov-jdk15on-1.54.jar ├── pom.xml └── src └── main ├── java └── com │ └── ijpay │ ├── APPConfig.java │ ├── Test.java │ ├── controller │ ├── IndexController.java │ ├── alipay │ │ ├── AliPayApiController.java │ │ └── AliPayController.java │ ├── oppo │ │ └── OppoController.java │ ├── unionpay │ │ ├── DemoBase.java │ │ └── UnionPayController.java │ └── weixin │ │ ├── WxOauthController.java │ │ ├── WxPayApiController.java │ │ ├── WxPayController.java │ │ └── WxSubPayController.java │ ├── interceptor │ ├── AliPayApiInterceptor.java │ └── WxPayApiInterceptor.java │ └── weixin │ └── entity │ └── H5ScencInfo.java ├── resources ├── .gitignore └── production │ ├── acp_sdk.properties │ ├── alipay.properties │ ├── config.properties │ ├── log4j.properties │ ├── wxpay.properties │ └── wxsubpay.properties └── webapp ├── WEB-INF ├── _views │ ├── hospital │ │ ├── 01_index.html │ │ ├── 02_select_time.html │ │ ├── 03_register_info.html │ │ └── 04_success.html │ ├── order.html │ ├── pay_input_money.html │ ├── pay_keyboard.html │ ├── pay_select_money.html │ ├── qrcode.html │ ├── suc.html │ ├── success.html │ ├── traffic_pay.html │ ├── utf8_result.html │ ├── wxh5pay.html │ ├── wxpay.html │ └── wxsubpay.html ├── error │ ├── 404.html │ └── 500.html └── web.xml └── static ├── css ├── demos.css ├── hospital.css ├── keyboard.css ├── order.css └── pay.css ├── images ├── icon_nav_article.png ├── icon_nav_button.png ├── icon_nav_cell.png ├── icon_nav_msg.png ├── img │ ├── bg-green.png │ ├── ico-arrow-right-gray.png │ ├── interactive.png │ ├── photo.jpg │ ├── sprites.png │ ├── sprites │ │ ├── ico-heart.png │ │ ├── ico-subbranding.png │ │ ├── ico-time.png │ │ └── ico-wxzf.png │ ├── suc-gaps.png │ ├── suc-ico-arrow.png │ └── wenli.png ├── keybord-return.png ├── keybord-stop.png └── wxpay.png ├── js ├── iscroll-min.js ├── jquery.qrcode.min.js ├── pay.js └── zepto.min.js └── layer ├── layer.js ├── mobile ├── layer.js └── need │ └── layer.css └── skin └── default ├── icon-ext.png ├── icon.png ├── layer.css ├── loading-0.gif ├── loading-1.gif └── loading-2.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/README.md -------------------------------------------------------------------------------- /assets/img/IJPay-t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/assets/img/IJPay-t.png -------------------------------------------------------------------------------- /assets/img/apay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/assets/img/apay.png -------------------------------------------------------------------------------- /assets/img/apayn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/assets/img/apayn.png -------------------------------------------------------------------------------- /assets/img/wxpay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/assets/img/wxpay.png -------------------------------------------------------------------------------- /assets/unionpay/acp_sdk.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/assets/unionpay/acp_sdk.properties -------------------------------------------------------------------------------- /assets/unionpay/certs/acp_test_enc.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/assets/unionpay/certs/acp_test_enc.cer -------------------------------------------------------------------------------- /assets/unionpay/certs/acp_test_middle.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/assets/unionpay/certs/acp_test_middle.cer -------------------------------------------------------------------------------- /assets/unionpay/certs/acp_test_root.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/assets/unionpay/certs/acp_test_root.cer -------------------------------------------------------------------------------- /assets/unionpay/certs/acp_test_sign.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/assets/unionpay/certs/acp_test_sign.pfx -------------------------------------------------------------------------------- /doc/img/alipay_test1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/doc/img/alipay_test1.png -------------------------------------------------------------------------------- /doc/img/alipay_test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/doc/img/alipay_test2.png -------------------------------------------------------------------------------- /doc/img/alipay_test3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/doc/img/alipay_test3.png -------------------------------------------------------------------------------- /doc/img/pay_keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/doc/img/pay_keyboard.png -------------------------------------------------------------------------------- /doc/img/wxpay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/doc/img/wxpay.gif -------------------------------------------------------------------------------- /doc/img/wxsubpay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/doc/img/wxsubpay.gif -------------------------------------------------------------------------------- /doc/pay_keyboard.m4v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/doc/pay_keyboard.m4v -------------------------------------------------------------------------------- /doc/必读.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/doc/必读.md -------------------------------------------------------------------------------- /libs/bcprov-jdk15on-1.54.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/libs/bcprov-jdk15on-1.54.jar -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/ijpay/APPConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/java/com/ijpay/APPConfig.java -------------------------------------------------------------------------------- /src/main/java/com/ijpay/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/java/com/ijpay/Test.java -------------------------------------------------------------------------------- /src/main/java/com/ijpay/controller/IndexController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/java/com/ijpay/controller/IndexController.java -------------------------------------------------------------------------------- /src/main/java/com/ijpay/controller/alipay/AliPayApiController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/java/com/ijpay/controller/alipay/AliPayApiController.java -------------------------------------------------------------------------------- /src/main/java/com/ijpay/controller/alipay/AliPayController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/java/com/ijpay/controller/alipay/AliPayController.java -------------------------------------------------------------------------------- /src/main/java/com/ijpay/controller/oppo/OppoController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/java/com/ijpay/controller/oppo/OppoController.java -------------------------------------------------------------------------------- /src/main/java/com/ijpay/controller/unionpay/DemoBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/java/com/ijpay/controller/unionpay/DemoBase.java -------------------------------------------------------------------------------- /src/main/java/com/ijpay/controller/unionpay/UnionPayController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/java/com/ijpay/controller/unionpay/UnionPayController.java -------------------------------------------------------------------------------- /src/main/java/com/ijpay/controller/weixin/WxOauthController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/java/com/ijpay/controller/weixin/WxOauthController.java -------------------------------------------------------------------------------- /src/main/java/com/ijpay/controller/weixin/WxPayApiController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/java/com/ijpay/controller/weixin/WxPayApiController.java -------------------------------------------------------------------------------- /src/main/java/com/ijpay/controller/weixin/WxPayController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/java/com/ijpay/controller/weixin/WxPayController.java -------------------------------------------------------------------------------- /src/main/java/com/ijpay/controller/weixin/WxSubPayController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/java/com/ijpay/controller/weixin/WxSubPayController.java -------------------------------------------------------------------------------- /src/main/java/com/ijpay/interceptor/AliPayApiInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/java/com/ijpay/interceptor/AliPayApiInterceptor.java -------------------------------------------------------------------------------- /src/main/java/com/ijpay/interceptor/WxPayApiInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/java/com/ijpay/interceptor/WxPayApiInterceptor.java -------------------------------------------------------------------------------- /src/main/java/com/ijpay/weixin/entity/H5ScencInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/java/com/ijpay/weixin/entity/H5ScencInfo.java -------------------------------------------------------------------------------- /src/main/resources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/resources/.gitignore -------------------------------------------------------------------------------- /src/main/resources/production/acp_sdk.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/resources/production/acp_sdk.properties -------------------------------------------------------------------------------- /src/main/resources/production/alipay.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/resources/production/alipay.properties -------------------------------------------------------------------------------- /src/main/resources/production/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/resources/production/config.properties -------------------------------------------------------------------------------- /src/main/resources/production/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/resources/production/log4j.properties -------------------------------------------------------------------------------- /src/main/resources/production/wxpay.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/resources/production/wxpay.properties -------------------------------------------------------------------------------- /src/main/resources/production/wxsubpay.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/resources/production/wxsubpay.properties -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/_views/hospital/01_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/WEB-INF/_views/hospital/01_index.html -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/_views/hospital/02_select_time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/WEB-INF/_views/hospital/02_select_time.html -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/_views/hospital/03_register_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/WEB-INF/_views/hospital/03_register_info.html -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/_views/hospital/04_success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/WEB-INF/_views/hospital/04_success.html -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/_views/order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/WEB-INF/_views/order.html -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/_views/pay_input_money.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/WEB-INF/_views/pay_input_money.html -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/_views/pay_keyboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/WEB-INF/_views/pay_keyboard.html -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/_views/pay_select_money.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/WEB-INF/_views/pay_select_money.html -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/_views/qrcode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/WEB-INF/_views/qrcode.html -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/_views/suc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/WEB-INF/_views/suc.html -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/_views/success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/WEB-INF/_views/success.html -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/_views/traffic_pay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/WEB-INF/_views/traffic_pay.html -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/_views/utf8_result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/WEB-INF/_views/utf8_result.html -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/_views/wxh5pay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/WEB-INF/_views/wxh5pay.html -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/_views/wxpay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/WEB-INF/_views/wxpay.html -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/_views/wxsubpay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/WEB-INF/_views/wxsubpay.html -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/error/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/WEB-INF/error/404.html -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/error/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/WEB-INF/error/500.html -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /src/main/webapp/static/css/demos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/css/demos.css -------------------------------------------------------------------------------- /src/main/webapp/static/css/hospital.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/css/hospital.css -------------------------------------------------------------------------------- /src/main/webapp/static/css/keyboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/css/keyboard.css -------------------------------------------------------------------------------- /src/main/webapp/static/css/order.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/css/order.css -------------------------------------------------------------------------------- /src/main/webapp/static/css/pay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/css/pay.css -------------------------------------------------------------------------------- /src/main/webapp/static/images/icon_nav_article.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/images/icon_nav_article.png -------------------------------------------------------------------------------- /src/main/webapp/static/images/icon_nav_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/images/icon_nav_button.png -------------------------------------------------------------------------------- /src/main/webapp/static/images/icon_nav_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/images/icon_nav_cell.png -------------------------------------------------------------------------------- /src/main/webapp/static/images/icon_nav_msg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/images/icon_nav_msg.png -------------------------------------------------------------------------------- /src/main/webapp/static/images/img/bg-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/images/img/bg-green.png -------------------------------------------------------------------------------- /src/main/webapp/static/images/img/ico-arrow-right-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/images/img/ico-arrow-right-gray.png -------------------------------------------------------------------------------- /src/main/webapp/static/images/img/interactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/images/img/interactive.png -------------------------------------------------------------------------------- /src/main/webapp/static/images/img/photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/images/img/photo.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/images/img/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/images/img/sprites.png -------------------------------------------------------------------------------- /src/main/webapp/static/images/img/sprites/ico-heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/images/img/sprites/ico-heart.png -------------------------------------------------------------------------------- /src/main/webapp/static/images/img/sprites/ico-subbranding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/images/img/sprites/ico-subbranding.png -------------------------------------------------------------------------------- /src/main/webapp/static/images/img/sprites/ico-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/images/img/sprites/ico-time.png -------------------------------------------------------------------------------- /src/main/webapp/static/images/img/sprites/ico-wxzf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/images/img/sprites/ico-wxzf.png -------------------------------------------------------------------------------- /src/main/webapp/static/images/img/suc-gaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/images/img/suc-gaps.png -------------------------------------------------------------------------------- /src/main/webapp/static/images/img/suc-ico-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/images/img/suc-ico-arrow.png -------------------------------------------------------------------------------- /src/main/webapp/static/images/img/wenli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/images/img/wenli.png -------------------------------------------------------------------------------- /src/main/webapp/static/images/keybord-return.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/images/keybord-return.png -------------------------------------------------------------------------------- /src/main/webapp/static/images/keybord-stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/images/keybord-stop.png -------------------------------------------------------------------------------- /src/main/webapp/static/images/wxpay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/images/wxpay.png -------------------------------------------------------------------------------- /src/main/webapp/static/js/iscroll-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/js/iscroll-min.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/jquery.qrcode.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/js/jquery.qrcode.min.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/pay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/js/pay.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/zepto.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/js/zepto.min.js -------------------------------------------------------------------------------- /src/main/webapp/static/layer/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/layer/layer.js -------------------------------------------------------------------------------- /src/main/webapp/static/layer/mobile/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/layer/mobile/layer.js -------------------------------------------------------------------------------- /src/main/webapp/static/layer/mobile/need/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/layer/mobile/need/layer.css -------------------------------------------------------------------------------- /src/main/webapp/static/layer/skin/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/layer/skin/default/icon-ext.png -------------------------------------------------------------------------------- /src/main/webapp/static/layer/skin/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/layer/skin/default/icon.png -------------------------------------------------------------------------------- /src/main/webapp/static/layer/skin/default/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/layer/skin/default/layer.css -------------------------------------------------------------------------------- /src/main/webapp/static/layer/skin/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/layer/skin/default/loading-0.gif -------------------------------------------------------------------------------- /src/main/webapp/static/layer/skin/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/layer/skin/default/loading-1.gif -------------------------------------------------------------------------------- /src/main/webapp/static/layer/skin/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javen205/IJPay-Demo/HEAD/src/main/webapp/static/layer/skin/default/loading-2.gif --------------------------------------------------------------------------------