function checkHasCode() { ? ? ? ? ? ? var temp = { ? ? ? ? ? ? ? ? phone: "@ViewBag.phone" ? ? ? ? ? ? } ? ? ? ? ? ? const data = { ? ? ? ? ? ? ? ? url: "@ViewBag.querybyphoneurl", ? ? ? ? ? ? ? ? postData: JSON.stringify(temp) ? ? ? ? ? ? } ? ? ? ? ? ? $.ajax({ ? ? ? ? ? ? ? ? url: "/nine/base/postgetway", ? ? ? ? ? ? ? ? type: "post", ? ? ? ? ? ? ? ? data: JSON.stringify(data), ? ? ? ? ? ? ? ? contentType: 'application/json;charset=utf-8', ? ? ? ? ? ? ? ? success: function (res) { ? ? ? ? ? ? ? ? ? ? res = JSON.parse(res); ? ? ? ? ? ? ? ? ? ? if (res.code == "1000") { ? ? ? ? ? ? ? ? ? ? ? ? mui.alert('您已购买了此权益', '提示', function () { ? ? ? ? ? ? ? ? ? ? ? ? ? ? window.location.replace("/nine/@(ViewBag.cityhost)/index.html"); ? ? ? ? ? ? ? ? ? ? ? ? }); ? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? //var html = ""; ? ? ? ? ? ? ? ? ? ? //var html0 = ""; ? ? ? ? ? ? ? ? ? ? //rs.forEach(function (item) { ? ? ? ? ? ? ? ? ? ? // ? ?html += '<div class="swiper-slide"><ul class="ullist">'; ? ? ? ? ? ? ? ? ? ? // ? ?html += '<li class="li01"><i class="icon"> </i>' + item.name + item.phone + '</li>'; ? ? ? ? ? ? ? ? ? ? // ? ?html += '<li class="li02">已开通特权</li>'; ? ? ? ? ? ? ? ? ? ? // ? ?html += '</ul></div > '; ? ? ? ? ? ? ? ? ? ? //}); ? ? ? ? ? ? ? ? ? ? //$("#swiper01").append(html); ? ? ? ? ? ? ? ? }, ? ? ? ? ? ? ? ? error: function (message) {
? ? ? ? ? ? ? ? } ? ? ? ? ? ? }); ? ? ? ? }
|