123456789101112131415161718 |
- var windowID;
- var timer;
- //加载
- $(function () {
- windowID = $.SystemGeneral.getUrlParam("WindowID");
- timer = setInterval(checkOrderScanned, 3000);
- })
- function checkOrderScanned() {
- $.post(CMS_SystemConfig.VirtualDirectoryPath + '/Weixin/CheckOrderScanned', { productId: productId }, function (data) {
- if (data) {
- clearInterval(timer);
- top.$("#" + windowID).data("resultData", true);
- top.$("#" + windowID).dialog("close");
- }
- });
- }
|