12345678910111213141516171819202122232425262728293031 |
- var windowID;
- //加载
- $(function () {
- windowID = $.SystemGeneral.getUrlParam("WindowID");
- })
- function WechatPay() {
- var url = CMS_SystemConfig.VirtualDirectoryPath + '/Weixin/NativePay?examinationRegistrationID=' + examinationRegistrationID
- + '&fee=' + fee
- + '&feeTypeName=' + escape(feeTypeName);
- // + '&WindowID=' + windowID;
- //location.href = url;
- top.$("#" + windowID).dialog("close");
- $.popupTopWindow('微信支付', url, 320, 380, reload);
- }
- function AliPay() {
- var url = CMS_SystemConfig.VirtualDirectoryPath + '/Alipay/NativePay?examinationRegistrationID=' + examinationRegistrationID
- + '&fee=' + fee
- + '&feeTypeName=' + escape(feeTypeName);
- // + '&WindowID=' + windowID;
- //location.href = url;
- top.$("#" + windowID).dialog("close");
- $.popupTopWindow('支付宝支付', url, 320, 380, reload);
- }
- function reload() {
- var tab = top.$('#index_center_tabs').tabs('getSelected');
- var $iframe = tab.panel('body').find("iframe");
- $iframe[0].contentWindow.reload();
- }
|