function showcontent(id) { $('#ua_' + id).toggle(); } function changemust(obj, tel) { //if (tel != undefined) { // // var reg = /^0?1[3|4|5|8][0-9]\d{8}$/; // // if (!reg.test($(obj).val())) { alert("手机号码格式不正确"); return false;} //} if ($(obj).val().trim() != "" && $(obj).val() != null) { $(obj).attr("data-must", "true"); } } function exchangeigood(igoodid, igoodintegral, userid, userintegral, username, address, phone) { if (parseint(userintegral) < parseint(igoodintegral)) { alert("您的积分不足,请联系客服充值!"); } else { opendialog({ el: "#recipientinfodialog", title: "收货信息(*号为必填项)", width: 600 }); if (username != null && username != "") { $('input[field="recipienttxt"]').val(username); } if (address != null && address != "") { $('input[field="address"]').val(address); } if (phone != null && phone != "") { $('input[field="tel"]').val(phone); } $("#btnexchange").unbind("click").bind("click", function () { if ($('input[data-must="false"]').length > 0) { alert("请填完成收货信息"); return false; } var info = '{' + '"recipienttxt":"' + $('input[field="recipienttxt"]').val() + '",' + '"address":"' + $('input[field="address"]').val() + '",' + '"tel":"' + $('input[field="tel"]').val() + '",' + '"remark":"' + $('#remark').val() + '",' + '"igoodid":"' + igoodid + '",' + '"igoodintegral":"' + igoodintegral + '",' + '"userid":"' + userid + '",' + '"username":"' + username + '"}'; web960.web.index.saveexchangeintegral(info, function (res) { ajaxreturn(res, function () { var rc = res.value; if (rc.status > 0) { alert("兑换成功,请等待收货!"); //$('#recipientinfodialog').dialog("close"); } else { alert("兑换失败,请联系客服!"); //$('#recipientinfodialog').dialog("close"); } closedialog('#recipientinfodialog'); }); }); }); //$('#recipientinfodialog').dialog({ // width: 350, // modal: true, // resizable:false, // title: "收货信息(*号为必填项)", // buttons: { // "确定": function () { // if ($('input[data-must="false"]').length > 0) { alert("请填完成收货信息"); return false; } // var info = '{' + // '"recipienttxt":"' + $('input[field="recipienttxt"]').val() + '",' + // '"address":"' + $('input[field="address"]').val() + '",' + // '"tel":"' + $('input[field="tel"]').val() + '",' + // '"remark":"' + $('#remark').val() + '",' + // '"igoodid":"' + igoodid + '",' + // '"igoodintegral":"' + igoodintegral + '",' + // '"userid":"' + userid + '",' + // '"username":"' + username + '"}'; // web960.web.index.saveexchangeintegral(info, function (res) { // ajaxreturn(res, function () { // var rc = res.value; // if (rc.status > 0) { // alert("兑换成功,请等待收货!"); // $('#recipientinfodialog').dialog("close"); // } // else { // alert("兑换失败,请联系客服!"); // $('#recipientinfodialog').dialog("close"); // } // }); // }); // }, "取消": function () { // $(this).dialog("close"); // $('input[field="recipienttxt"]').val(''); // $('input[field="address"]').val(''); // $('input[field="tel"]').val(''); // $('#remark').val(''); // } // } //}); } }