2023-07-29 10:19:42 +08:00
|
|
|
|
@model List<ProductModel>
|
|
|
|
|
|
@using Hncore.Pass.BaseInfo.Response
|
|
|
|
|
|
@using Hncore.Infrastructure.Serializer
|
|
|
|
|
|
@using Hncore.Pass.Vpn.Service
|
|
|
|
|
|
@using Hncore.Pass.Vpn.Domain
|
|
|
|
|
|
@using Microsoft.Extensions.Configuration
|
|
|
|
|
|
@inject ArticleService m_ArticleService
|
|
|
|
|
|
@inject IConfiguration m_Configuration
|
|
|
|
|
|
@{
|
|
|
|
|
|
ViewData["Title"] = "聚IP JUIP.COM-千万动态ip切换,自建机房ip代理覆盖全国,多款市面热销产品";
|
|
|
|
|
|
Layout = null;
|
|
|
|
|
|
|
|
|
|
|
|
UserLoginModel user = null;
|
|
|
|
|
|
if (this.Context.Request.Cookies.TryGetValue("userInfo", out string userCookie))
|
|
|
|
|
|
{
|
|
|
|
|
|
user = userCookie.FromJsonTo<UserLoginModel>();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
var articleNews = await m_ArticleService.GetTop(12, ArticleCatalog.Top);
|
|
|
|
|
|
var activityNews = await m_ArticleService.GetTop(12, ArticleCatalog.Activity);
|
|
|
|
|
|
var helpsNews = await m_ArticleService.GetTop(12, ArticleCatalog.Help);
|
|
|
|
|
|
var QANews = await m_ArticleService.GetTop(12, ArticleCatalog.QA);
|
|
|
|
|
|
var baseUrl = m_Configuration["BaseInfoUrl"];
|
|
|
|
|
|
Func<string, string> P = (path) => $"{baseUrl}{path}";
|
|
|
|
|
|
//var epoch = (DateTime.Now.ToUniversalTime().Ticks - 621355968000000000)/10000000;
|
|
|
|
|
|
|
|
|
|
|
|
//var countStr = epoch.ToString().Substring(0, 8);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
|
<html>
|
|
|
|
|
|
<head>
|
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
|
<meta name="Keywords" Content="动态ip软件,动态代理ip,sstp,换ip的软件,电脑换ip软件,pptp,L2TP,动态ip代理,动态ip,自动换ip软件">
|
|
|
|
|
|
<meta name="Description" Content="聚IP提供动态代理ip、电脑换ip软件、自动换ip软件、sstp、pptp及L2TP代理服务,全国多个城市几十种动态ip任您选择,高品质ip资源期待与您合作。">
|
|
|
|
|
|
<meta name="baidu-site-verification" content="code-OpShWo2U4K" />
|
|
|
|
|
|
<title>动态代理ip_电脑换ip软件_自动换ip软件_sstp_pptp_L2TP-聚IP</title>
|
|
|
|
|
|
|
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css" />
|
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="css/base.css" />
|
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="css/swiper.min.css" />
|
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="css/flash.css" />
|
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="css/animate.min.css" />
|
2023-12-27 17:28:05 +08:00
|
|
|
|
|
|
|
|
|
|
<link href="/http/css/style.css" rel="stylesheet">
|
2023-07-29 10:19:42 +08:00
|
|
|
|
<link rel="Shortcut Icon" href="/img/favicon.ico" type="image/x-icon" />
|
|
|
|
|
|
<script src="js/jquery.min.js?test=12312" type="text/javascript" charset="utf-8"></script>
|
|
|
|
|
|
<script src="js/bootstrap.min.js" type="text/javascript" charset="utf-8"></script>
|
|
|
|
|
|
<script src="js/swiper.min.js" type="text/javascript" charset="utf-8"></script>
|
2023-12-27 17:28:05 +08:00
|
|
|
|
|
2023-07-29 10:19:42 +08:00
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
|
$(document).ready(function () {
|
|
|
|
|
|
|
|
|
|
|
|
// 注册登录弹窗开始
|
|
|
|
|
|
|
|
|
|
|
|
$(".regLink").click(function () {
|
|
|
|
|
|
$(".main").hide();
|
|
|
|
|
|
$(".main_reg").show();
|
|
|
|
|
|
});
|
|
|
|
|
|
$(".loginLink").click(function () {
|
|
|
|
|
|
$(".main_reg").hide();
|
|
|
|
|
|
$(".main_find").hide();
|
|
|
|
|
|
$(".main").show();
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
$(".findLink").click(function () {
|
|
|
|
|
|
$(".main").hide();
|
|
|
|
|
|
$(".main_find").show();
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
$(".login").click(function () {
|
|
|
|
|
|
$(".main").show();
|
|
|
|
|
|
$(".mask").show();
|
|
|
|
|
|
$(".main").addClass("animated bounceInDown");
|
|
|
|
|
|
});
|
|
|
|
|
|
$(".reg").click(function () {
|
|
|
|
|
|
$(".main_reg").show();
|
|
|
|
|
|
$(".mask").show();
|
|
|
|
|
|
$(".main_reg").addClass("animated bounceInDown");
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
$(".btnClose").click(function () {
|
|
|
|
|
|
$(".main").addClass("animated bounceOutDown");
|
|
|
|
|
|
$(".mask").hide();
|
|
|
|
|
|
$(".main_find").hide();
|
|
|
|
|
|
setTimeout(function () {
|
|
|
|
|
|
$(".main").removeClass("animated bounceOutDown");
|
|
|
|
|
|
$(".main").hide();
|
|
|
|
|
|
}, 100)
|
|
|
|
|
|
});
|
|
|
|
|
|
$(".regClose").click(function () {
|
|
|
|
|
|
$(".main_reg").addClass("animated bounceOutDown");
|
|
|
|
|
|
$(".mask").hide();
|
|
|
|
|
|
$(".main_find").hide();
|
|
|
|
|
|
setTimeout(function () {
|
|
|
|
|
|
$(".main_reg").removeClass("animated bounceOutDown");
|
|
|
|
|
|
$(".main_reg").hide();
|
|
|
|
|
|
}, 100)
|
|
|
|
|
|
});
|
|
|
|
|
|
// 新闻选项卡
|
|
|
|
|
|
$("#myTab a").click(function (e) {
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
$(this).tab('show');
|
|
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
// 侧边栏
|
|
|
|
|
|
//$(".on_q").click(function () {
|
|
|
|
|
|
// $(".side_q").toggle();
|
|
|
|
|
|
//});
|
|
|
|
|
|
|
|
|
|
|
|
$(".item_on_q").mouseover(function () {
|
|
|
|
|
|
$(".side_q").stop().fadeIn();
|
|
|
|
|
|
});
|
|
|
|
|
|
$(".item_on_q").mouseleave(function () {
|
|
|
|
|
|
$(".side_q").stop().fadeOut();
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
//$(".on_wx").click(function () {
|
|
|
|
|
|
// $(".side_kefu").toggle();
|
|
|
|
|
|
//});
|
|
|
|
|
|
|
|
|
|
|
|
$(".item_on_wx").mouseover(function () {
|
|
|
|
|
|
$(".side_kefu").stop().fadeIn();
|
|
|
|
|
|
});
|
|
|
|
|
|
$(".item_on_wx").mouseleave(function () {
|
|
|
|
|
|
$(".side_kefu").stop().fadeOut();
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
$(".on_gzh").mouseover(function () {
|
|
|
|
|
|
$(".side_gzh").stop().fadeIn();
|
|
|
|
|
|
});
|
|
|
|
|
|
$(".on_gzh").mouseleave(function () {
|
|
|
|
|
|
$(".side_gzh").stop().fadeOut();
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
$(".on_tel").mouseover(function () {
|
|
|
|
|
|
$(".side_tel").stop().fadeIn();
|
|
|
|
|
|
});
|
|
|
|
|
|
$(".on_tel").mouseleave(function () {
|
|
|
|
|
|
$(".side_tel").stop().fadeOut();
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
// 动画
|
|
|
|
|
|
$(".d1").show();
|
|
|
|
|
|
$(".d1").addClass("animated slideInDown");
|
|
|
|
|
|
$(".threeButton").show();
|
|
|
|
|
|
$(".threeButton").addClass("animated slideInUp");
|
|
|
|
|
|
|
|
|
|
|
|
$(window).scroll(function () {
|
|
|
|
|
|
var topp = $(document).scrollTop();
|
|
|
|
|
|
|
2023-08-16 17:15:50 +08:00
|
|
|
|
if (topp > 600) {
|
2023-07-29 10:19:42 +08:00
|
|
|
|
$(".d3").show();
|
|
|
|
|
|
$(".d3").addClass("animated slideInLeft");
|
|
|
|
|
|
$(".d4").show();
|
|
|
|
|
|
$(".d4").addClass("animated slideInRight");
|
|
|
|
|
|
}
|
|
|
|
|
|
if (topp > 400) {
|
|
|
|
|
|
$(".d2").show();
|
|
|
|
|
|
$(".d2").addClass("animated slideInUp");
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
if (topp > 1600) {
|
|
|
|
|
|
$(".d5").show();
|
|
|
|
|
|
$(".d5").addClass("animated bounceInDown");
|
|
|
|
|
|
}
|
2023-08-16 15:19:20 +08:00
|
|
|
|
if (topp > 1600) {
|
2023-07-29 10:19:42 +08:00
|
|
|
|
$(".d_use").show();
|
|
|
|
|
|
$(".d_use").addClass("animated flipInX");
|
|
|
|
|
|
}
|
|
|
|
|
|
if (topp > 3200) {
|
|
|
|
|
|
$(".d6").show();
|
|
|
|
|
|
$(".d6").addClass("animated slideInRight");
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style>
|
2023-11-21 15:30:41 +08:00
|
|
|
|
a:hover {
|
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
}
|
2023-07-29 10:19:42 +08:00
|
|
|
|
</style>
|
|
|
|
|
|
</head>
|
|
|
|
|
|
<body id="top">
|
|
|
|
|
|
<div style="display: none;">
|
|
|
|
|
|
<h1>自动换ip软件有什么用?使用换ip软件的好处让你想不到</h1>
|
|
|
|
|
|
|
|
|
|
|
|
<p>许多业内人士人经常使用“换ip的软件”和“动态代理ip”这两个词。有时我们的计算机容易受到攻击。在这种情况下,将突出显示IP地址更改工具的作用。它可以保护我们的计算机地址免受攻击。或者,一些技术合作伙伴在自己的爬虫项目中使用此类换ip的软件时,也会使用此类换ip的软件。换ip的软件的很大效果是可以隐藏实际ip地址。</p>
|
|
|
|
|
|
<p>许多朋友需要这项技术来保护计算机的安全。你能改一下ip地址吗?答案是肯定的,但操作相当麻烦,因此生成了动态ip代理软件。您可以找到要更改的ip代理服务器,例如我们的动态IP代理。</p>
|
|
|
|
|
|
<h1>如何为动态IP选择软件?需要考虑哪些方面?</h1>
|
|
|
|
|
|
<p>首先,必须确保换ip的软件合法、合规,并且IP地址也是合法的。换ip的软件是一种已获得批准证书的软件,在全国主要城市拥有大量动态IP节点。第二,换ip的软件稳定也很重要。您使用的动态代理IP就是您的使用,它可以很好地确保您的Internet网络的稳定性。</p>
|
|
|
|
|
|
<p>最后,让客户放心的售后服务也不容忽视。换ip的软件甚至客户服务和售后都是技术性的,为客户提供比较好的方式。因此,在购买相关换ip的软件时,我们必须擦亮眼睛,选择更多。</p>
|
|
|
|
|
|
<h2>换ip的软件优势:</h2>
|
|
|
|
|
|
<p>1.换ip的软件技术:资深程序员精心设计每个功能,并不断更新和改进。</p>
|
|
|
|
|
|
<p>2.换ip的软件强大:功能全面强大,不断开发更多功能,换ip的软件及时升级!</p>
|
|
|
|
|
|
<p>3.换ip的软件使用方便:均采用人性化设计,智能化管理。只要我们能操作计算机,我们就能操作我们的软件。此外,我们还有一个换ip的软件教程。我们可以在阅读后操作换ip的软件!</p>
|
|
|
|
|
|
<p>4.换ip的软件四个保证:持续发展保证、技术服务保证、问题整改保证、真正授权保证!让您的网络推广完全无忧!</p>
|
|
|
|
|
|
<p>5.换ip的软件简单方便:动态固态IP地址一键刷新,一键批量测速,自由选择全国线路,自由选择全球ip代理和本地ip代理,一键快速连接ip软件!</p>
|
|
|
|
|
|
|
|
|
|
|
|
<h1>动态ip代理软件有什么特点?选哪家动态ip代理软件公司更好?</h1>
|
|
|
|
|
|
|
|
|
|
|
|
<p>合格的动态ip代理有哪些特点?目前,市场上有很多动态IP软件,质量参差不齐。合格动态ip代理的特点是什么?IP是一个网民的地址。有时网民需要多次更换IP。此时,需要动态IP更改软件。</p>
|
|
|
|
|
|
<p>动态ip代理非常适合注册、验证、投票、运行号码、挂断、在线赚钱、推广、微信、微博、QQ、YY、QT、电子邮件、声誉、手机、PV等!</p>
|
|
|
|
|
|
<p>动态ip代理比较明显的功能是自动更改IP地址,智能分配IP,并在每次断开和重新连接时自动更改IP。它具有IP容量大、速度快、稳定性高、安全性高等特点。您不必担心IP复制。</p>
|
|
|
|
|
|
<p>网络上有许多动态IP代理软件。从众多的动态IP代理软件中选择合适的软件是非常重要的。如何找到比较合适的动态IP代理服务提供商?</p>
|
|
|
|
|
|
<p>1.动态IP代理还取决于它能否提供完美的服务。如果买后没有人进行售后服务,使用中就会出现问题,无处可寻,所以完善的售后服务也很重要。</p>
|
|
|
|
|
|
<p>2.好的动态IP代理取决于IP的来源。如果在互联网上直接扫描IP,质量很差,使用时会发生冲突。因此,最好使用自建服务器的代理,这样获得的动态IP代理非常稳定。</p>
|
|
|
|
|
|
<p>这样,我相信您可以找到适合自己使用的动态IP代理资源。动态IP代理软件更安全、更快。动态IP代理是你网络工作的好帮手!</p>
|
|
|
|
|
|
|
|
|
|
|
|
<h1>如何电脑换ip软件让网站达到盈利的目的?</h1>
|
|
|
|
|
|
<p>IP地址是互联网接入的基本条件。我们都是通过IP地址上网的。计算机只有一个固定的IP地址。然而,长期使用IP地址是非常不安全的,并且会导致很多安全风险。</p>
|
|
|
|
|
|
<p>互联网上存在一定的风险。用户在互联网上浏览网页时会留下自己的信息。这些信息大部分是私人信息。如果个人信息被恶意的人窃取,这是非常危险的。因此,必须加强网站的安全性能。只有这样,才能保证用户的信息安全。熟悉互联网技术的人会定期更换IP,因为他们知道将个人信息留在互联网上非常不安全,可能会被犯罪分子窃取,这也会危及他们自己的财产,因此他们必须经常更换。</p>
|
|
|
|
|
|
<p>确保个人信息安全的常用方法是自动更换IP地址。有许多电脑换ip软件可以在Internet上使用。除了确保我们的信息安全,电脑换ip软件也可以用来赚取一些利润。</p>
|
|
|
|
|
|
<p>现在很多人会自己开发一个网站。开发一个网站并不难。在学习了这个方法之后,它非常简单。我们可以在互联网上看到各种各样的网站。这些网站中有些是由公司存档的,有些是由个人存档的。这些网站可以为人们提供很多信息。电脑换ip软件方法是获得更多的浏览量。只要你的观点上升,这意味着这个网站特别受欢迎。在这个时候,你可以在网站上做一些广告,或者用广告费赚一些钱。然而,赚钱的前提是网站可以有浏览量。只有好的网站才能吸引人,现在人们对网站的要求越来越高。糟糕的网页无法吸引人。只有想出一些方法,这些网页才能继续发展。</p>
|
|
|
|
|
|
<p>很多人会使用电脑换ip软件来实现web代理。Web代理有很多优点。它不仅可以保护用户的安全上网,而且可以提高上网速度。用户在上网时非常关注个人隐私保护。他们不希望自己的个人隐私被泄露,因此只有一个安全的网站才能让他们感到放心,在使用电脑换ip软件后,网站变得更加封闭。整个网络使用一个IP,这是最安全的,不会有安全风险。使用代理IP软件后,您会发现网站上的信息根本没有泄露,用户在浏览网页时会更加轻松。即使他们输入了一些个人信息,也没关系。如果网站继续这样发展,它将获得更多的收入。电脑换ip软件,只需点击,自动切换,快速更换,无需网卡,IP地址可以随意更改!</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
2023-11-21 15:30:41 +08:00
|
|
|
|
@*
|
|
|
|
|
|
<a href="/product/index">
|
|
|
|
|
|
<div style="background-image:url('/img/hengfu.png');background-size: cover;padding:25px;color:white;font-weight:bold;font-size:2em;" class="text-center">
|
|
|
|
|
|
双十一放开送,天卡1毛钱,周卡送3天,月卡送10天,双月卡送一个月=><span style="border:1px solid white;padding:10px;border-radius:50%;">点击参与</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</a> *@
|
2023-07-29 10:19:42 +08:00
|
|
|
|
<!-- register -->
|
|
|
|
|
|
<div class="mask"></div>
|
2024-02-19 17:59:22 +08:00
|
|
|
|
<div class="main_reg" id="regBox" style="height: 600px">
|
2023-07-29 10:19:42 +08:00
|
|
|
|
<img src="~/img/close.png" class="regClose">
|
|
|
|
|
|
<div class="logoLogin">
|
|
|
|
|
|
<img src="~/img/logoBlue.png">
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="award">
|
|
|
|
|
|
<img src="~/img/award.png">
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="user">
|
|
|
|
|
|
<img src="~/img/phone.png"><span style="color: red;">*</span><input type="text" name="" id="username" value="" placeholder="请输入手机号码" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="pwd">
|
|
|
|
|
|
<img src="~/img/password.png"><span style="color: red;">*</span><input type="password" name="" id="password" value="" placeholder="请输入密码" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="yzm">
|
|
|
|
|
|
<img src="~/img/yanzhengma.png"><span style="color: red;">*</span><input type="text" name="" id="yanzhengma" value="" placeholder="请输入验证码" /><button class="btn btn-primary" onclick="getCode(this)">获取验证码</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="user">
|
|
|
|
|
|
<img src="~/img/phone.png"><input type="text" name="" id="wxhao" value="" placeholder="请输入微信号(选填)" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="user">
|
|
|
|
|
|
<img src="~/img/phone.png"><input type="text" name="" id="qqhao" value="" placeholder="请输入QQ(选填)" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<p class="tixing">*手机号不是IP账号,请登录后开通IP账号*</p>
|
|
|
|
|
|
<p class="tixing"><input type="checkbox" name="" id="xieyi" value="" />我同意<a href="/LineList/xieyi" target="_blank">《聚IP JUIP.COM用户注册协议》</a></p>
|
|
|
|
|
|
<p class="denglu"><button type="button" class="btn btn-login" onclick="reg()">注册</button></p>
|
|
|
|
|
|
<p class="zhiyin grayText">已有账号?<a href="/User/WebLogin" class="loginLink">立即登录</a></p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<!-- login -->
|
|
|
|
|
|
<div class="mask"></div>
|
|
|
|
|
|
<div class="main" id="loginBox">
|
|
|
|
|
|
<img src="~/img/close.png" class="btnClose">
|
|
|
|
|
|
<div class="logoLogin">
|
|
|
|
|
|
<img src="~/img/logoBlue.png">
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="award">
|
|
|
|
|
|
<img src="~/img/award.png">
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="user">
|
|
|
|
|
|
<img src="~/img/user.png"><input type="text" name="" id="rLogin_Name" value="" placeholder="淘宝名/会员手机号码" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="pwd">
|
|
|
|
|
|
<img src="~/img/password.png"><input type="password" name="" id="rLogin_Pwd" value="" placeholder="请输入密码" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="fuzhu">
|
|
|
|
|
|
@*<div class="item">
|
|
|
|
|
|
<input type="checkbox" name="" id="" value="" />自动登录
|
|
|
|
|
|
</div>*@
|
|
|
|
|
|
<div class="item">
|
|
|
|
|
|
<a href="#" class="grayText findLink">忘记密码?</a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<p class="tixing">*手机号不是IP账号,请登录后开通IP账号*</p>
|
|
|
|
|
|
<p class="denglu"><button type="button" class="btn btn-login" onclick="login()">登录</button></p>
|
|
|
|
|
|
<p class="zhiyin grayText">还没有账号?<a href="#" class="regLink">立即注册</a></p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- findpwd -->
|
|
|
|
|
|
<div class="mask"></div>
|
|
|
|
|
|
<div class="main_find" id="FindBox">
|
|
|
|
|
|
<img src="~/img/close.png" class="regClose">
|
|
|
|
|
|
<div class="logoLogin">
|
|
|
|
|
|
<img src="~/img/logoBlue.png">
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="award">
|
|
|
|
|
|
<img src="~/img/award.png">
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="user">
|
|
|
|
|
|
<img src="~/img/phone.png"><input type="text" id="fusername" value="" placeholder="请输入手机号码" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="pwd">
|
|
|
|
|
|
<img src="~/img/password.png"><input type="password" id="fpassword" value="" placeholder="请输入新密码" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="yzm">
|
|
|
|
|
|
<img src="~/img/yanzhengma.png"><input type="text" id="fyanzhengma" value="" placeholder="请输入验证码" /><button class="btn btn-primary" onclick="getFindCode(this)">获取验证码</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<p class="tixing">*手机号不是IP账号,请登录后开通IP账号*</p>
|
|
|
|
|
|
<p class="denglu"><button type="button" class="btn btn-reset">重置</button></p>
|
|
|
|
|
|
<p class="zhiyin grayText">已有账号?<a href="/User/WebLogin" class="loginLink">立即登录</a></p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- sideBar -->
|
|
|
|
|
|
<div class="sideBar">
|
|
|
|
|
|
|
|
|
|
|
|
<div class="item item_on_q">
|
|
|
|
|
|
<a href="https://admin.qidian.qq.com/template/blue/mp/menu/qr-code-jump.html?linkType=0&env=ol&kfuin=2852138148&fid=299&key=f377ec024ca45115a03a7632c7bda230&cate=1&source=&isLBS=&isCustomEntry=&type=16&ftype=1&_type=wpa&qidian=true" target="_blank">
|
|
|
|
|
|
<img src="~/img/qq.png" class="on_q"> <div class="kefu_tit">QQ</div>
|
|
|
|
|
|
</a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="item item_on_wx">
|
|
|
|
|
|
<a href="https://work.weixin.qq.com/kfid/kfc458bc58e79e5093f" style="color: #0862fe;">
|
|
|
|
|
|
<img src="~/img/weixin.png" class="on_wx"><div class="kefu_tit">微信</div>
|
|
|
|
|
|
</a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="item">
|
|
|
|
|
|
<img src="~/img/gzh.png" class="on_gzh"><div class="kefu_tit">公众号</div>
|
|
|
|
|
|
<div class="side_gzh">
|
|
|
|
|
|
<p><img src="~/img/ewm.png"></p>
|
|
|
|
|
|
<p style="color:#f90">实时响应 在线时间 8:30-23:00</p>
|
|
|
|
|
|
<p style="color:#f90">关注公众号可获取免费的到期提醒服务</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="item">
|
|
|
|
|
|
<img src="~/img/tel.png" class="on_tel"><div class="kefu_tit">电话</div>
|
|
|
|
|
|
<div class="side_tel">
|
|
|
|
|
|
<p><b>400 800 9925</b></p>
|
|
|
|
|
|
<p>实时接通</p>
|
|
|
|
|
|
<p>电话值班时间 8:30-23:00</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="item">
|
|
|
|
|
|
<a href="#top"><img src="~/img/top.png"></a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<!-- banner&nav -->
|
|
|
|
|
|
<div class="container-fluid banner" id="top">
|
|
|
|
|
|
<div class="bg">
|
2023-11-21 15:30:41 +08:00
|
|
|
|
<img style="height:calc(100vh);" src="~/img/banner.png">
|
2023-07-29 10:19:42 +08:00
|
|
|
|
</div>
|
2023-08-14 16:49:49 +08:00
|
|
|
|
<div class="container d1" style="color: #badcff;">
|
|
|
|
|
|
@* <img src="~/img/d1.png"> *@
|
2023-08-16 17:15:50 +08:00
|
|
|
|
<p style="font-size:4em;">聚集优质IP产品 尽在聚IP</p>
|
2023-08-14 16:49:49 +08:00
|
|
|
|
<p style="font-size:1.5em;">覆盖500+城市,超2000个服务器,亿量级IP</p>
|
2023-08-16 17:15:50 +08:00
|
|
|
|
<p style="font-size:1em;">旗下有蘑菇、老鹰、云牛、西瓜、天天、强子、讯连、极客、无极、火狐等十几种优质动态、静态、单窗口等IP产品</p>
|
2023-07-29 10:19:42 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<div class="container-fluid nav">
|
|
|
|
|
|
<div class="row">
|
|
|
|
|
|
<div class="col-lg-2 col-md-2 logo">
|
|
|
|
|
|
<a href="#"><img src="~/img/logo.png"></a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="col-lg-10 col-md-10">
|
2023-12-27 17:28:05 +08:00
|
|
|
|
<ul class="navList pull-right sf-menu">
|
2023-07-29 10:19:42 +08:00
|
|
|
|
<li><a href="/">首页</a></li>
|
2023-12-27 17:28:05 +08:00
|
|
|
|
<li> <a href="#">产品购买</a>
|
|
|
|
|
|
<ul>
|
|
|
|
|
|
<li style="width:100px;height:39px;padding-top:0;"> <a style="height:39px;padding-top:0;" href="/product/index">动静态IP</a> </li>
|
|
|
|
|
|
<li style="width:100px;height:39px;padding-top:0;"> <a style="height:39px;padding-top:0;" href="/product/http">HTTP</a> </li>
|
2024-02-23 14:24:31 +08:00
|
|
|
|
<li style="width:100px;height:39px;padding-top:0;"> <a style="height:39px;padding-top:0;" href="/product/jinqiao">安卓投屏</a> </li>
|
2023-12-27 17:28:05 +08:00
|
|
|
|
<li style="width:100px;height:39px;padding-top:0;"> <a style="height:39px;padding-top:0;" href="/product/routeros">软路由购买</a> </li>
|
|
|
|
|
|
<li style="width:100px;height:39px;padding-top:0;"> <a style="height:39px;padding-top:0;" href="http://vps.juip.com">动态vps</a> </li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
</li>
|
2023-07-29 10:19:42 +08:00
|
|
|
|
<li><a href="/LineList/index">IP线路表</a></li>
|
|
|
|
|
|
<li><a href="/product/soft">软件下载</a></li>
|
2023-08-16 17:15:50 +08:00
|
|
|
|
<li><a href="/article/index">教程&帮助</a></li>
|
2023-07-29 10:19:42 +08:00
|
|
|
|
<li>
|
|
|
|
|
|
@if (user == null)
|
|
|
|
|
|
{
|
2023-12-27 17:28:05 +08:00
|
|
|
|
<button type="button" class="btn btn-warning reg">注册</button>
|
|
|
|
|
|
<button type="button" class="btn btn-danger login">登录</button>
|
2023-07-29 10:19:42 +08:00
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
2023-12-27 17:28:05 +08:00
|
|
|
|
<div class="item" style="display: inline-block;">
|
|
|
|
|
|
<a asp-action="index" class="btn btn-warning margin-top-10" asp-controller="user">个人中心</a>
|
2023-07-29 10:19:42 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<div class="item" style="display: inline-block;">
|
2023-12-27 17:28:05 +08:00
|
|
|
|
<a asp-action="LoginOut"class="btn btn-danger margin-top-10" asp-controller="user">退出登录</a>
|
2023-07-29 10:19:42 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
</li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="container threeButton">
|
|
|
|
|
|
<div class="col-lg-4">
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="col-lg-4">
|
|
|
|
|
|
<div class="row">
|
|
|
|
|
|
<div class="col-lg-4 text-right">
|
|
|
|
|
|
<a asp-action="soft" asp-controller="product"> <button type="button" class="btn btn-primary">客户端下载</button></a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="col-lg-4 text-center">
|
|
|
|
|
|
<a asp-action="index" asp-controller="linelist"> <button type="button" class="btn btn-primary">IP线路表</button></a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="col-lg-4 text-left">
|
|
|
|
|
|
<a asp-action="index" asp-controller="product"> <button type="button" class="btn btn-danger">免费试用</button></a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="col-lg-4">
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2023-08-14 16:49:49 +08:00
|
|
|
|
|
2023-08-16 15:19:20 +08:00
|
|
|
|
|
2023-07-29 10:19:42 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- youshi -->
|
|
|
|
|
|
<div class="container-fluid youshi">
|
|
|
|
|
|
<div class="youshiBg">
|
|
|
|
|
|
<img src="~/img/youshi.png">
|
2023-08-16 17:15:50 +08:00
|
|
|
|
<div class="useTit" style="color: #0777ff;top:90px;">聚IP优势</div>
|
2023-07-29 10:19:42 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<div class="container imgYoushi">
|
|
|
|
|
|
<div class="row">
|
2023-08-14 16:49:49 +08:00
|
|
|
|
<div class="col-lg-5 text-right">
|
|
|
|
|
|
<div class="d3">
|
|
|
|
|
|
<h3 style="color: #47a1ff;">全网产品最多IP库最大</h3>
|
2023-08-16 17:15:50 +08:00
|
|
|
|
<p style="color: white;">旗下有蘑菇、老鹰、云牛、西瓜、天天、强子、讯连、极客、无极、火狐等<br>十几种优质动态、静态、单窗口等IP产品,多产品组合畅享ip翻倍,可用ip超1亿个</p>
|
2023-08-14 16:49:49 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<div class="d3" style="margin-top:10em;">
|
|
|
|
|
|
<h3 style="color: #47a1ff;">全设备、全协议支持</h3>
|
2023-08-16 17:15:50 +08:00
|
|
|
|
<p style="color: white;">支持安卓、IOS、MAC、windows、Linux、软路由、模拟器、虚拟机等<br>支持PPTP、L2TP、SSTP等协议</p>
|
2023-08-14 16:49:49 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<div class="d3" style="margin-top:10em;">
|
|
|
|
|
|
<h3 style="color: #47a1ff;">用户独享宽带</h3>
|
|
|
|
|
|
<p style="color: white;">一号一拨绝不超拨、快速切换平均带宽6-10兆,最高可达百兆</p>
|
|
|
|
|
|
</div>
|
2023-07-29 10:19:42 +08:00
|
|
|
|
</div>
|
2023-08-14 16:49:49 +08:00
|
|
|
|
<div class="col-lg-5 col-lg-offset-2 text-left">
|
|
|
|
|
|
<div class="d4">
|
|
|
|
|
|
<h3 style="color: #47a1ff;">价低质优、免费测试</h3>
|
|
|
|
|
|
<p style="color: white;">全自营机房一手资源、价低质优、量大可联系客服获取最低价</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="d4" style="margin-top:10em;">
|
|
|
|
|
|
<h3 style="color: #47a1ff;">专属化产品定制</h3>
|
|
|
|
|
|
<p style="color: white;">支持定制独立服务器、可根据项目需求定制专用产品</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="d4" style="margin-top:10em;">
|
|
|
|
|
|
<h3 style="color: #47a1ff;">专业的服务团队</h3>
|
|
|
|
|
|
<p style="color: white;">资深客服一对一指导、实时在线、竭诚为您服务</p>
|
|
|
|
|
|
</div>
|
2023-07-29 10:19:42 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<!-- map -->
|
2023-08-14 16:49:49 +08:00
|
|
|
|
|
2023-07-29 10:19:42 +08:00
|
|
|
|
<!-- use -->
|
|
|
|
|
|
<div class="container-fluid use">
|
|
|
|
|
|
<img src="~/img/tit_use.png" class="dailiImg">
|
2023-08-14 16:49:49 +08:00
|
|
|
|
<div class="useBg" style="background:#39516b;">
|
|
|
|
|
|
<img src="~/img/use.png" style="opacity: 0;">
|
|
|
|
|
|
<p class="useTit" style="color: #0777ff;">这些人正在使用IP代理</p>
|
2023-07-29 10:19:42 +08:00
|
|
|
|
</div>
|
2023-08-14 16:49:49 +08:00
|
|
|
|
<div class="d_use" style="background:#39516b;">
|
2023-07-29 10:19:42 +08:00
|
|
|
|
<img src="~/img/d_use.png">
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<!-- news -->
|
2023-08-14 16:49:49 +08:00
|
|
|
|
|
|
|
|
|
|
<hr style="color: white;padding:0;margin:0;">
|
2023-07-29 10:19:42 +08:00
|
|
|
|
<!-- footer -->
|
|
|
|
|
|
<div class="container-fluid footer">
|
|
|
|
|
|
<div class="container">
|
|
|
|
|
|
<div class="col-lg-3 text-left">
|
|
|
|
|
|
<p class="cpTit">旗下产品</p>
|
|
|
|
|
|
<ul class="cp">
|
|
|
|
|
|
@foreach (var item in Model.Where(m => m.Sort != 1000))
|
|
|
|
|
|
{
|
|
|
|
|
|
<li><a asp-action="index" asp-controller="product" asp-route-id="@item.Id">@item.Name</a></li>
|
|
|
|
|
|
}
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="col-lg-3">
|
|
|
|
|
|
<p class="cpTit">联系我们</p>
|
|
|
|
|
|
<ul class="cp">
|
2023-08-16 15:19:20 +08:00
|
|
|
|
<li>客服电话:400 800 9925</li>
|
|
|
|
|
|
<li>客服QQ:800101003</li><br>
|
|
|
|
|
|
<li>客户经理: </li><br>
|
2023-12-27 17:28:05 +08:00
|
|
|
|
<li>萱萱-电话/微信:15225139515</li><br>
|
2023-10-20 15:53:44 +08:00
|
|
|
|
<li>琪琪-电话/微信:15713870747</li><br>
|
2023-12-27 17:28:05 +08:00
|
|
|
|
<li>兔兔-电话/微信:15111748058</li><br>
|
2023-07-29 10:19:42 +08:00
|
|
|
|
<li>工作时间: 8:30-23:00</li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="col-lg-3">
|
|
|
|
|
|
<p class="cpTit">大客户/商务合作</p>
|
|
|
|
|
|
<ul class="cp">
|
|
|
|
|
|
<li>电话/微信:177 9666 8888</li>
|
|
|
|
|
|
<li>QQ:70177252</li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="col-lg-3 text-right">
|
|
|
|
|
|
<p class="cpTit">公众号</p>
|
|
|
|
|
|
<p class="ewm"><img src="~/img/ewm.png"></p>
|
|
|
|
|
|
<p class="sao">关注公众号即可获取</p>
|
|
|
|
|
|
<p class="sao">免费的到期提醒服务</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<!-- copyright -->
|
|
|
|
|
|
<div class="container-fluid copyr">
|
|
|
|
|
|
<div class="container text-center">
|
|
|
|
|
|
<p>
|
|
|
|
|
|
聚IP仅提供IP服务,用户使用聚IP从事的任何行为均不代表聚IP的意志和观点,与聚IP的立场无关。严禁用户使用聚IP从事任何违法犯罪行为,
|
|
|
|
|
|
产生的相关责任用户自负,对此聚IP不承担任何法律责任。
|
|
|
|
|
|
</p>
|
|
|
|
|
|
<p>
|
|
|
|
|
|
版权所有 河南华连网络科技有限公司|<a href="http://beian.miit.gov.cn" target="_blank">豫ICP备17004061号-15</a>|增值电信业务经营许可证:B1-20190663
|
|
|
|
|
|
</p>
|
|
|
|
|
|
<p class="logoD_"><img src="~/img/logogD.png"><a target="cyxyv" href="https://v.yunaq.com/certificate?domain=www.juip.com&from=label&code=90020"> <img src="https://aqyzmedia.yunaq.com/labels/label_sm_90020.png" style="width:70px;height:25px;"></a></p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-12-27 17:28:05 +08:00
|
|
|
|
|
|
|
|
|
|
<div id="myModal" class="modal fade">
|
|
|
|
|
|
<div class="modal-dialog">
|
|
|
|
|
|
<div class="modal-content padding15 bg_gray">
|
|
|
|
|
|
<div class="modal-body clearfix text-center">
|
|
|
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
|
|
|
|
|
<h1 class="text-success">公告</h1>
|
2023-07-29 10:19:42 +08:00
|
|
|
|
<p>杜绝电信诈骗及任何违法行为</p>
|
|
|
|
|
|
<p>所有IP产品已记录日志,均保留6个月以上</p>
|
|
|
|
|
|
<p>发现违法行为直接提交网监部门处理</p>
|
2024-02-03 14:47:56 +08:00
|
|
|
|
<div style="color:red;">
|
2024-02-23 14:24:31 +08:00
|
|
|
|
<p>新上5款产品,全新IP池,均可解除QQ微信的屏蔽:</p>
|
2024-02-03 14:47:56 +08:00
|
|
|
|
<p>1.水滴专线IP:IP独占,且可永久不变。</p>
|
|
|
|
|
|
<p>2.麒麟IP:带宽可选,最高20M。</p>
|
|
|
|
|
|
<p>3.猎豹IP:地区超全,涵盖240个城市。</p>
|
|
|
|
|
|
<p>4.先锋IP:带宽可选,最高10M</p>
|
2024-02-23 14:24:31 +08:00
|
|
|
|
<p>5.新上http,s5代理IP,长效短效,稳定池子大</p>
|
|
|
|
|
|
<p>6.新上安卓投屏,功能齐全,流畅稳定,现推广期:40台以下设备免费使用。</p>
|
2024-02-03 14:47:56 +08:00
|
|
|
|
<br>
|
|
|
|
|
|
</div>
|
2023-12-27 17:28:05 +08:00
|
|
|
|
<div class="row text-center">
|
|
|
|
|
|
<div class="col-md-4">
|
|
|
|
|
|
<a style="cursor:pointer;" href="http://www.juip.com/product/index" type="button" class="btn btn-primary" >查看活动</a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="col-md-4">
|
|
|
|
|
|
<a style="cursor:pointer" href="https://admin.qidian.qq.com/template/blue/mp/menu/qr-code-jump.html?linkType=0&env=ol&kfuin=2852138148&fid=299&key=f377ec024ca45115a03a7632c7bda230&cate=1&source=&isLBS=&isCustomEntry=&type=16&ftype=1&_type=wpa&qidian=true&_pid=l1gunh.657dox.kjy6xnny" type="button" class="btn btn-danger quxiao" >联系客服</a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="col-md-4">
|
|
|
|
|
|
<a style="cursor:pointer;" data-dismiss="modal" aria-hidden="true" type="button" class="btn btn-primary" >我知道了</a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2023-07-29 10:19:42 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2023-12-27 17:28:05 +08:00
|
|
|
|
</div>
|
2023-07-29 10:19:42 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
var swiper = new Swiper('.swiper-container', {
|
|
|
|
|
|
slidesPerView: 6,
|
|
|
|
|
|
spaceBetween: 36,
|
|
|
|
|
|
slidesPerGroup: 4,
|
|
|
|
|
|
loop: false,
|
|
|
|
|
|
loopFillGroupWithBlank: true,
|
|
|
|
|
|
pagination: {
|
|
|
|
|
|
el: '.swiper-pagination',
|
|
|
|
|
|
clickable: true,
|
|
|
|
|
|
},
|
|
|
|
|
|
navigation: {
|
|
|
|
|
|
nextEl: '.swiper-button-next',
|
|
|
|
|
|
prevEl: '.swiper-button-prev',
|
|
|
|
|
|
},
|
|
|
|
|
|
});
|
|
|
|
|
|
</script>
|
|
|
|
|
|
<script>
|
2023-12-27 17:28:05 +08:00
|
|
|
|
$(document).on("ready", function(e) {
|
|
|
|
|
|
$("#myModal").modal('show');
|
|
|
|
|
|
});
|
2023-07-29 10:19:42 +08:00
|
|
|
|
function login() {
|
|
|
|
|
|
var name = $("#rLogin_Name").val()
|
|
|
|
|
|
var pwd = $("#rLogin_Pwd").val()
|
|
|
|
|
|
var data = { Logincode: name, Password: pwd, Code: 1 };
|
|
|
|
|
|
$.ajax({
|
|
|
|
|
|
type: 'POST',
|
|
|
|
|
|
url: '/user/login',
|
|
|
|
|
|
contentType: "application/json",
|
|
|
|
|
|
data: JSON.stringify(data),
|
|
|
|
|
|
success: function (res) {
|
|
|
|
|
|
console.log(res);
|
|
|
|
|
|
if (res.Code == 10000) {
|
|
|
|
|
|
window.location.reload();
|
|
|
|
|
|
} else {
|
|
|
|
|
|
alert(res.Message)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
var time = 60;
|
|
|
|
|
|
function getCode(_self) {
|
|
|
|
|
|
if (!timing(_self)) return;
|
|
|
|
|
|
var name = $("#username").val()
|
|
|
|
|
|
var url = '/user/SendPhoneCodevefy?key=User_Code&phone=' + name;
|
|
|
|
|
|
var timerHandler;
|
|
|
|
|
|
$.ajax({
|
|
|
|
|
|
type: 'POST',
|
|
|
|
|
|
url: url,
|
|
|
|
|
|
contentType: "application/json",
|
|
|
|
|
|
success: function (res) {
|
|
|
|
|
|
alert(res.Message)
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
function getFindCode(_self) {
|
|
|
|
|
|
if (!timing(_self)) return;
|
|
|
|
|
|
var name = $("#fusername").val()
|
|
|
|
|
|
var url = '/user/SendPhoneCodevefy?key=FindUser_Code&phone=' + name;
|
|
|
|
|
|
$.ajax({
|
|
|
|
|
|
type: 'POST',
|
|
|
|
|
|
url: url,
|
|
|
|
|
|
contentType: "application/json",
|
|
|
|
|
|
success: function (res) {
|
|
|
|
|
|
alert(res.Message)
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
function timing(_self) {
|
|
|
|
|
|
if (time != 60) return false
|
|
|
|
|
|
var timerHandler = setInterval(function () {
|
|
|
|
|
|
time--;
|
|
|
|
|
|
if (time <= 1) {
|
|
|
|
|
|
clearInterval(timerHandler);
|
|
|
|
|
|
time = 60;
|
|
|
|
|
|
$(_self).text("获取验证码")
|
|
|
|
|
|
} else {
|
|
|
|
|
|
$(_self).text(time + "s");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}, 1000)
|
|
|
|
|
|
return true;
|
|
|
|
|
|
}
|
|
|
|
|
|
function reg() {
|
|
|
|
|
|
if(!$("input[type='checkbox']").is(':checked')){
|
|
|
|
|
|
alert('请认真阅读用户注册协议后勾选 我同意 方可注册!');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
var name = $("#username").val()
|
|
|
|
|
|
var pwd = $("#password").val()
|
|
|
|
|
|
var code = $("#yanzhengma").val()
|
|
|
|
|
|
var wx = $("#wxhao").val()
|
|
|
|
|
|
var qq = $("#qqhao").val()
|
|
|
|
|
|
var data = { Phone: name, Pwd: pwd, Code: code,Wx:wx,QQ:qq };
|
|
|
|
|
|
$.ajax({
|
|
|
|
|
|
type: 'POST',
|
|
|
|
|
|
url: '/user/Regist',
|
|
|
|
|
|
contentType: "application/json",
|
|
|
|
|
|
data: JSON.stringify(data),
|
|
|
|
|
|
success: function (res) {
|
|
|
|
|
|
console.log(res);
|
|
|
|
|
|
if (res.Code == 10000) {
|
2023-08-04 10:59:53 +08:00
|
|
|
|
window.location.href='/User/Index';
|
2023-07-29 10:19:42 +08:00
|
|
|
|
} else {
|
|
|
|
|
|
alert(res.Message)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
function reset() {
|
|
|
|
|
|
var name = $("#fusername").val()
|
|
|
|
|
|
var pwd = $("#fpassword").val()
|
|
|
|
|
|
var code = $("#fyanzhengma").val()
|
|
|
|
|
|
if (name == '') { alert('手机号不能为空'); return; }
|
|
|
|
|
|
if (code == '') { alert('验证码不能为空'); return; }
|
|
|
|
|
|
var data = { Phone: name, Pwd: pwd, Code: code };
|
|
|
|
|
|
$.ajax({
|
|
|
|
|
|
type: 'POST',
|
|
|
|
|
|
url: '/user/FindPwd',
|
|
|
|
|
|
contentType: "application/json",
|
|
|
|
|
|
data: JSON.stringify(data),
|
|
|
|
|
|
success: function (res) {
|
|
|
|
|
|
console.log(res);
|
|
|
|
|
|
if (res.Code == 10000) {
|
|
|
|
|
|
alert("重置成功,请登录");
|
|
|
|
|
|
window.location.href = "/User/WebLogin";
|
|
|
|
|
|
} else {
|
|
|
|
|
|
alert(res.Message)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$(function () {
|
|
|
|
|
|
$("#loginBox").bind("keydown", function (e) {
|
|
|
|
|
|
var theEvent = e || window.event;
|
|
|
|
|
|
var code = theEvent.keyCode || theEvent.which || theEvent.charCode;
|
|
|
|
|
|
if (code == 13) {
|
|
|
|
|
|
login();
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
$("#regBox").bind("keydown", function (e) {
|
|
|
|
|
|
var theEvent = e || window.event;
|
|
|
|
|
|
var code = theEvent.keyCode || theEvent.which || theEvent.charCode;
|
|
|
|
|
|
if (code == 13) {
|
|
|
|
|
|
reg();
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
$(".btn-reset").click(function () {
|
|
|
|
|
|
reset();
|
|
|
|
|
|
})
|
|
|
|
|
|
function changeIpcount() {
|
|
|
|
|
|
var items = [];
|
|
|
|
|
|
for (var i = 1; i <= 8; i++) {
|
|
|
|
|
|
var item = [];
|
|
|
|
|
|
var count = i;
|
|
|
|
|
|
if (i > 2)
|
|
|
|
|
|
count = Math.floor(Math.random() * 10)
|
|
|
|
|
|
item.push("<div class='item'>");
|
|
|
|
|
|
item.push(count);
|
|
|
|
|
|
item.push(" </div>");
|
|
|
|
|
|
items.push(item.join(""));
|
|
|
|
|
|
}
|
|
|
|
|
|
$(".num").html(items);
|
|
|
|
|
|
}
|
|
|
|
|
|
changeIpcount();
|
|
|
|
|
|
setInterval(changeIpcount, 5000);
|
|
|
|
|
|
})
|
|
|
|
|
|
</script>
|
|
|
|
|
|
<!-- WPA start -->
|
|
|
|
|
|
@* <script id="qd28521381485d6faa97edf5ad07d7e159f6cb902af0" src="https://wp.qiye.qq.com/qidian/2852138148/5d6faa97edf5ad07d7e159f6cb902af0" charset="utf-8" async defer></script> *@
|
|
|
|
|
|
<!-- WPA end -->
|
|
|
|
|
|
<div data-toggle="popovers" data-html="true" data-content="<p><a style='color: #0862fe;' href='https://admin.qidian.qq.com/template/blue/mp/menu/qr-code-jump.html?linkType=0&env=ol&kfuin=2852138148&fid=299&key=f377ec024ca45115a03a7632c7bda230&cate=1&source=&isLBS=&isCustomEntry=&type=16&ftype=1&_type=wpa&qidian=true' target='_blank'>
|
|
|
|
|
|
<img src='/img/q.png'> QQ在线客服
|
|
|
|
|
|
</a><p><a href='https://work.weixin.qq.com/kfid/kfc458bc58e79e5093f' style='color: #0862fe;'><img src='/img/weixin.png' style='background-color:green;width:1.5em;'> 微信在线客服</a></p>" data-placement="top" class="row" id="djkf" style="background-color: white; width:255px;height:85px;position: fixed;z-index: 2000000000;bottom: 200px;right: 0px;cursor:pointer;">
|
|
|
|
|
|
<style>
|
|
|
|
|
|
.top{
|
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|
|
|
|
|
|
<div class="col-xs-4" style="padding:0;">
|
|
|
|
|
|
<img width="85" src="http://p.qpic.cn/qidian_pic/2852138148/2020071743d6537e611d9ff953f27cbb7430dbe7/0"/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="col-xs-8 " style="padding:0;">
|
|
|
|
|
|
<h4><span class="glyphicon glyphicon-user" style="padding:10px 0 0 25px;color:#12b7f5;"></span>在线咨询</h4>
|
|
|
|
|
|
<p class="text-center">服务时间 8:30-23:00</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<script>$(function () { $("[data-toggle='popovers']").popover(); });</script>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</body>
|
|
|
|
|
|
</html>
|