243 lines
16 KiB
Plaintext
243 lines
16 KiB
Plaintext
@using Hncore.Pass.Vpn.Domain
|
||
@using Microsoft.Extensions.Configuration
|
||
@inject IConfiguration m_Configuration
|
||
@model List<ProductEntity>
|
||
@{
|
||
var baseUrl = m_Configuration["BaseInfoUrl"];
|
||
Func<string, string> P = (path) => $"{baseUrl}{path}";
|
||
}
|
||
<div class="container-fluid softBg" style="height: auto;background:#f7f6f7;">
|
||
<div class="container">
|
||
<div class="row">
|
||
<div class="col-lg-2">
|
||
|
||
</div>
|
||
<div class="col-lg-8 text-center" style="color: #00a63f;">
|
||
<h3 style="color:#00a63f">软件下载</h3>
|
||
<p>*软件和账户必须为同一产品才能使用</p>
|
||
<p>*下载和使用电脑客户端时请关闭杀毒,如360,电脑管家</p>
|
||
<p>*无对应客户端时,可通过线路表直连支持所有设备<a style="color:#0777ff;" href="/LineList/index"><<< IP线路表 >>></a><a style="color:#0777ff;" href="/article/index"><<<教程&帮助>>></a></p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="container">
|
||
<div class="soft">
|
||
@foreach (var item in Model.Where(m=>m.Sort!=1000 && m.Id!=12 && m.Id!=21 && m.OnLine==1).OrderBy(m => m.Sort))
|
||
{
|
||
@if(item.Id != 1 && item.Id != 2 && item.Id != 6 && item.Id != 13 && item.Id != 17 && item.Id != 25) {
|
||
<div class="sitem" style="border: 1px solid #ccc;">
|
||
<div class="smodel">
|
||
|
||
@if (item.Id == 20)
|
||
{
|
||
<div class="softName" style="width:200px;text-align:center;height:50px;">
|
||
无极-共享独享通用
|
||
</div>
|
||
} else {
|
||
<div class="softName" style="width:200px;text-align:center;height:50px;">
|
||
@item.Name
|
||
</div>
|
||
<div class="item" style="width: 100%;">
|
||
<a href="@item.PcClientDownloadUrl"> <button type="button" class="btn btn-primary" style="width: 100%;">Windows客户端</button></a>
|
||
</div>
|
||
<br>
|
||
<br>
|
||
}
|
||
|
||
@if (!string.IsNullOrEmpty(item.DroidDownloadUrl))
|
||
{
|
||
<div class="item" style="width: 100%;">
|
||
<a href="@item.DroidDownloadUrl"> <button type="button" class="btn btn-primary" style="width: 100%;">安卓APP</button></a>
|
||
</div>
|
||
<br>
|
||
<br>
|
||
|
||
<div class="item" style="width: 100%;">
|
||
<a href="https://www.juip.com/article/index?Catalog=4"> <button type="button" class="btn btn-primary" style="width: 100%;">苹果直连教程</button></a>
|
||
</div>
|
||
<br>
|
||
<br>
|
||
}
|
||
|
||
@if (item.Id == 20)
|
||
{
|
||
<div class="item" style="width: 100%;">
|
||
<a href="https://mp4.juip.com/wj20220104a.apk"> <button type="button" class="btn btn-primary" style="width: 100%;">免root安卓共享独享通用</button></a>
|
||
</div><br><br>
|
||
<div class="item" style="width: 100%;">
|
||
<a href="https://mp4.juip.com/wj_root_20220104a.apk"> <button type="button" class="btn btn-primary" style="width: 100%;">root版安卓共享独享通用</button></a>
|
||
</div><br><br>
|
||
<div class="item" style="width: 100%;">
|
||
<a href="https://mp4.juip.com/%E6%97%A0%E6%9E%81-%E7%94%B5%E8%84%91.zip"> <button type="button" class="btn btn-primary" style="width: 100%;">无极电脑共享独享通用</button></a>
|
||
</div>
|
||
<br>
|
||
<br>
|
||
<div class="item" style="width: 100%;">
|
||
<a id="ios_cc"> <button type="button" class="btn btn-primary" style="width: 100%;">扫描下载苹果客户端</button></a>
|
||
</div>
|
||
|
||
<div id="qrcode_s">
|
||
|
||
</div>
|
||
}
|
||
|
||
@if (item.Id == 26) {
|
||
<div class="item" style="width: 50%;">
|
||
<a href="https://mp4.juip.com/%E7%8C%8E%E8%B1%B9%E5%AE%89%E5%8D%93ikev2%E7%89%88.apk"> <button type="button" class="btn btn-primary" style="width: 100%;">安卓ikev2</button></a>
|
||
</div>
|
||
<div class="item" style="width: 50%;">
|
||
<a href="https://mp4.juip.com/%E7%8C%8E%E8%B1%B9%E5%AE%89%E5%8D%93sstp%E7%89%88.apk"> <button type="button" class="btn btn-primary" style="width: 100%;">安卓sstp</button></a>
|
||
</div>
|
||
|
||
<br>
|
||
<br>
|
||
<div class="item" style="width: 100%;">
|
||
<a href="https://www.juip.com/article/index?Catalog=4"> <button type="button" class="btn btn-primary" style="width: 100%;">苹果直连教程</button></a>
|
||
</div>
|
||
<br>
|
||
<br>
|
||
}
|
||
|
||
@if (item.Id == 25) {
|
||
<p style="color: #39516b;">登录后请选择静态线路连接</p>
|
||
}
|
||
</div>
|
||
</div>
|
||
}
|
||
}
|
||
<div class="sitem" style="border: 1px solid red;">
|
||
<div class="smodel">
|
||
<div class="softName" style="width:200px;text-align:center;height:50px;">
|
||
通用版
|
||
</div>
|
||
|
||
<div class="item" style="width: 100%;">
|
||
<a href="https://mp4.juip.com/vpnclient-x32.zip"> <button type="button" class="btn btn-primary" style="width: 100%;">通用版电脑拨号器</button></a>
|
||
</div><br><br>
|
||
<div class="item" style="width: 100%;">
|
||
<a href="https://mp4.juip.com/sstp%20vpn.apk"> <button type="button" class="btn btn-primary" style="width: 100%;padding-left: 0;padding-right: 0;">通用老版sstp安卓客户端</button></a>
|
||
</div><br><br>
|
||
<div class="item" style="width: 100%;">
|
||
<a href="https://mp4.juip.com/osstp.apk"> <button type="button" class="btn btn-primary" style="width: 100%;padding-left: 0;padding-right: 0;">通用新版sstp安卓客户端</button></a>
|
||
</div>
|
||
|
||
</div>
|
||
</div>
|
||
|
||
<div class="sitem" style="border: 1px solid red;width:100%;">
|
||
<div class="smodel" style="width:100%;">
|
||
<div class="softName" style="width:100%;text-align:center;height:50px;">
|
||
代理商专用客户端
|
||
</div>
|
||
<div class="item" style="margin-bottom: 5px;width:200px;">
|
||
<a href="https://mp4.juip.com/jihu.exe"> <button type="button" class="btn btn-primary" style="width: 99%;margin-right:5px">极狐IP-电脑端</button></a>
|
||
</div>
|
||
<div class="item" style="margin-bottom: 5px;width:200px;">
|
||
<a href="https://mp4.juip.com/dl.apk"> <button type="button" class="btn btn-primary" style="width: 99%;margin-right:5px">极狐IP-安卓版</button></a>
|
||
</div>
|
||
<div class="item" style="margin-bottom: 5px;width:200px;">
|
||
<a href="https://mp4.juip.com/%E8%98%91%E8%8F%87IP-2-17.zip"> <button type="button" class="btn btn-primary" style="width: 99%;margin-right:5px">蘑菇IP-电脑端</button></a>
|
||
</div>
|
||
<div class="item" style="margin-bottom: 5px;width:200px;">
|
||
<a href="https://mp4.juip.com/mogudl.apk"> <button type="button" class="btn btn-primary" style="width: 99%;margin-right:5px">蘑菇IP-安卓版</button></a>
|
||
</div>
|
||
<div class="item" style="margin-bottom: 5px;width:200px;">
|
||
<a href="https://mp4.juip.com/jgdl.apk"> <button type="button" class="btn btn-primary" style="width: 99%;margin-right:5px">极光IP-安卓版</button></a>
|
||
</div>
|
||
<div class="item" style="margin-bottom: 5px;width:200px;">
|
||
<a href="https://mp4.juip.com/jgdl.exe"> <button type="button" class="btn btn-primary" style="width: 99%;margin-right:5px">极光IP-电脑端</button></a>
|
||
</div>
|
||
<div class="item" style="margin-bottom: 5px;width:200px;">
|
||
<a href="https://mp4.juip.com/%E4%BA%91%E7%89%9B-%E4%BB%A3%E7%90%86%E7%89%88.zip"> <button type="button" class="btn btn-primary" style="width: 99%;margin-right:5px">云牛IP-电脑端</button></a>
|
||
</div>
|
||
|
||
<div class="item" style="margin-bottom: 5px;width:200px;">
|
||
<a href="https://mp4.juip.com/yunniupubdtip.apk"> <button type="button" class="btn btn-primary" style="width: 99%;margin-right:5px">云牛IP-安卓端</button></a>
|
||
</div>
|
||
<!--
|
||
|
||
<div class="item" style="margin-bottom: 5px;width:200px;">
|
||
<a href="https://mp4.juip.com/%E8%A5%BF%E7%93%9CIP-%E4%BB%A3%E7%90%86%E7%89%88.zip"> <button type="button" class="btn btn-primary" style="width: 99%;margin-right:5px">西瓜IP-电脑版</button></a>
|
||
</div>
|
||
<div class="item" style="margin-bottom: 5px;width:200px;">
|
||
<a href="https://mp4.juip.com/%E8%A5%BF%E7%93%9CIP%E5%AE%89%E5%8D%93%E4%BB%A3%E7%90%86%E7%89%88.apk"> <button type="button" class="btn btn-primary" style="width: 99%;margin-right:5px">西瓜IP-安卓版</button></a>
|
||
</div>
|
||
|
||
<div class="item" style="margin-bottom: 5px;width:200px;">
|
||
<a href="https://mp4.juip.com/%E5%BC%BA%E5%AD%90IP%E7%94%B5%E8%84%91%E7%AB%AF-%E4%BB%A3%E7%90%86%E7%89%88.zip"> <button type="button" class="btn btn-primary" style="width: 99%;margin-right:5px">强子IP-电脑版</button></a>
|
||
</div>
|
||
<div class="item" style="margin-bottom: 5px;width:200px;">
|
||
<a href="https://mp4.juip.com/%E5%BC%BA%E5%AD%90IP%E5%AE%89%E5%8D%93%E7%AB%AF-%E4%BB%A3%E7%90%86%E7%89%88.apk"> <button type="button" class="btn btn-primary" style="width: 99%;margin-right:5px">强子IP-安卓端</button></a>
|
||
</div>
|
||
<div class="item" style="margin-bottom: 5px;width:200px;">
|
||
<a href="https://mp4.juip.com/%E8%AE%AF%E8%BF%9EIP%E7%94%B5%E8%84%91%E7%AB%AF-%20%E4%BB%A3%E7%90%86%E7%89%88.zip"> <button type="button" class="btn btn-primary" style="width: 99%;margin-right:5px">迅连IP-电脑版</button></a>
|
||
</div>
|
||
<div class="item" style="margin-bottom: 5px;width:200px;">
|
||
<a href="https://mp4.juip.com/%E8%AE%AF%E8%BF%9EIP%E5%AE%89%E5%8D%93%E7%AB%AF-%E4%BB%A3%E7%90%86%E7%89%88.apk"> <button type="button" class="btn btn-primary" style="width: 99%;margin-right:5px">讯连IP-安卓端</button></a>
|
||
</div>
|
||
|
||
<div class="item" style="margin-bottom: 5px;width:200px;">
|
||
<a href="https://mp4.juip.com/%E6%9E%81%E5%AE%A2IP%E4%BB%A3%E7%90%86%E7%89%88%203.5.zip"> <button type="button" class="btn btn-primary" style="width: 99%;margin-right:5px">极客IP-电脑版</button></a>
|
||
</div>
|
||
<div class="item" style="margin-bottom: 5px;width:200px;">
|
||
<a href="https://mp4.juip.com/%E6%9E%81%E5%AE%A2IP%E5%AE%89%E5%8D%93%E4%BB%A3%E7%90%86%E7%89%88.apk"> <button type="button" class="btn btn-primary" style="width: 99%;margin-right:5px">极客IP-安卓版</button></a>
|
||
</div> -->
|
||
|
||
<div class="item" style="margin-bottom: 5px;width:200px;">
|
||
<a href="https://mp4.juip.com/%E7%81%AB%E7%8B%90-%E4%BB%A3%E7%90%86%E7%89%88.zip"> <button type="button" class="btn btn-primary" style="width: 99%;margin-right:5px">火狐IP-电脑端</button></a>
|
||
</div>
|
||
|
||
<div class="item" style="margin-bottom: 5px;width:200px;">
|
||
<a href="https://mp4.juip.com/huohupubnet.apk"> <button type="button" class="btn btn-primary" style="width: 99%;margin-right:5px">火狐IP-安卓端</button></a>
|
||
</div>
|
||
|
||
<div class="item" style="margin-bottom: 5px;width:200px;">
|
||
<a href="https://mp4.juip.com/%E6%B0%B4%E6%BB%B4%E7%94%B5%E8%84%91HZ%E7%89%88.exe"> <button type="button" class="btn btn-primary" style="width: 99%;margin-right:5px">水滴IP-电脑端</button></a>
|
||
</div>
|
||
|
||
<div class="item" style="margin-bottom: 5px;width:200px;">
|
||
<a href="https://mp4.juip.com/%E6%B0%B4%E6%BB%B4%E5%AE%89%E5%8D%93HZ%E7%89%88.apk"> <button type="button" class="btn btn-primary" style="width: 99%;margin-right:5px">水滴IP-安卓端</button></a>
|
||
</div>
|
||
|
||
<div class="item" style="margin-bottom: 5px;width:200px;">
|
||
<a href="https://mp4.juip.com/%E9%BA%92%E9%BA%9F%E7%94%B5%E8%84%91HZ%E7%89%88.exe"> <button type="button" class="btn btn-primary" style="width: 99%;margin-right:5px">麒麟IP-电脑端</button></a>
|
||
</div>
|
||
|
||
<div class="item" style="margin-bottom: 5px;width:200px;">
|
||
<a href="https://mp4.juip.com/%E9%BA%92%E9%BA%9F%E5%AE%89%E5%8D%93HZ%E7%89%88.apk"> <button type="button" class="btn btn-primary" style="width: 99%;margin-right:5px">麒麟IP-安卓端</button></a>
|
||
</div>
|
||
|
||
<div class="item" style="margin-bottom: 5px;width:200px;">
|
||
<a href="https://mp4.juip.com/%E7%8C%8E%E8%B1%B9%E7%94%B5%E8%84%91HZ%E7%89%88.exe"> <button type="button" class="btn btn-primary" style="width: 99%;margin-right:5px">猎豹IP-电脑端</button></a>
|
||
</div>
|
||
|
||
<div class="item" style="margin-bottom: 5px;width:200px;">
|
||
<a href="https://mp4.juip.com/%E7%8C%8E%E8%B1%B9%E5%AE%89%E5%8D%93kiev2-HZ%E7%89%88.apk"> <button type="button" class="btn btn-primary" style="width: 99%;margin-right:5px">猎豹IP-安卓ikev2</button></a>
|
||
</div>
|
||
<div class="item" style="margin-bottom: 5px;width:200px;">
|
||
<a href="https://mp4.juip.com/%E7%8C%8E%E8%B1%B9%E5%AE%89%E5%8D%93sstp-HZ%E7%89%88.apk"> <button type="button" class="btn btn-primary" style="width: 99%;margin-right:5px">猎豹IP-安卓sstp</button></a>
|
||
</div>
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
|
||
<script type="text/javascript" src="https://lf9-cdn-tos.bytecdntp.com/cdn/expire-1-M/qrcodejs/1.0.0/qrcode.min.js"></script>
|
||
|
||
<script>
|
||
|
||
$("#ios_cc").hover(function(){
|
||
$("#qrcode_s").html('');
|
||
new QRCode(document.getElementById("qrcode_s"), {
|
||
text: 'https://apps.apple.com/cn/app/jie-zou-da-shi/id1448657437',
|
||
width : 500,
|
||
height : 500
|
||
});
|
||
},function(){
|
||
$("#qrcode_s").html('');
|
||
});
|
||
</script> |