136 lines
5.0 KiB
HTML
136 lines
5.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<script src="./js/jquery.min.js"></script>
|
|
<link href="./css/less.less" type="text/css" rel="stylesheet/less" />
|
|
<script src="./js/less.min.js"></script>
|
|
<title>与评</title>
|
|
|
|
<script>
|
|
let url = location.href;
|
|
let id = url.substring(url.lastIndexOf("/") + 1);
|
|
$(function () {
|
|
getInfo();
|
|
});
|
|
function handleRedirect() {
|
|
// location.href = "https://chrivc.cn/uLx1/1";
|
|
getUrlLink(id);
|
|
}
|
|
function getInfo() {
|
|
$.ajax({
|
|
url: `https://app.pc.seemore.club/phone/infoBySmsCode?id=${id}`,
|
|
type: "GET",
|
|
async: false,
|
|
dataType: "json",
|
|
contentType: "application/json; charset=UTF-8",
|
|
success: function (res) {
|
|
if (res.c === 200) {
|
|
if(res.d.labelVoList){
|
|
let tags = res.d.labelVoList.splice(0, 2);
|
|
slotTags(tags);
|
|
}
|
|
slotPhone(res.d.phone);
|
|
|
|
slotScore(res.d.totalAverage);
|
|
} else {
|
|
$("#btn_login").text("登录与评查看更多数据");
|
|
$("#info").hide();
|
|
}
|
|
},
|
|
});
|
|
}
|
|
function getUrlLink(code) {
|
|
$.ajax({
|
|
url: `https://app.pc.seemore.club/uLx2/${code}`,
|
|
type: "GET",
|
|
async: false,
|
|
dataType: "json",
|
|
contentType: "application/json; charset=UTF-8",
|
|
success: function (res) {
|
|
if (res.c === 200) {
|
|
console.log(res);
|
|
location.href = res.d;
|
|
// let tags = res.d.labelVoList.splice(0, 2);
|
|
// slotPhone(res.d.phone);
|
|
// slotTags(tags);
|
|
// slotScore(res.d.totalAverage);
|
|
}
|
|
},
|
|
// complete: (xhr) => {
|
|
// console.log(xhr.getResponseHeader());
|
|
// // location.href= xhr.getAllResponseHeaders()
|
|
// },
|
|
});
|
|
}
|
|
function slotPhone(phoneNum) {
|
|
$("#phoneNum").text(phoneNum);
|
|
}
|
|
function slotTags(tags) {
|
|
let str = "";
|
|
tags.map((item, index) => {
|
|
if (index < 2) {
|
|
str +=
|
|
"<div class='tag'>" +
|
|
item.content +
|
|
"<div class='tagNum'>x" +
|
|
item.contentCount +
|
|
"</div></div>";
|
|
}
|
|
});
|
|
console.log(str);
|
|
$("#tags").append(str);
|
|
}
|
|
function slotScore(score) {
|
|
$("#score").text(score);
|
|
}
|
|
function showDialog() {
|
|
$("#dialog").addClass("show");
|
|
}
|
|
function closeDialog() {
|
|
$("#dialog").removeClass("show");
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div class="body">
|
|
<img class="logo" src="./img/logo.png" alt="" />
|
|
<img class="slogan" src="./img/slogan.png" alt="" />
|
|
<div class="info" id="info">
|
|
<div class="phone">
|
|
<i class="icon_quote"></i> <span id="phoneNum"></span>
|
|
<i class="icon_quote rotate"></i>
|
|
</div>
|
|
<div class="text">您的口碑指数为</div>
|
|
<div class="score" id="score"> </div>
|
|
<div class="text">大家给您最多印象标签为</div>
|
|
<div class="tags" id="tags">
|
|
<!-- tag -->
|
|
</div>
|
|
</div>
|
|
<button id="btn_login" class="btn_login" onclick="handleRedirect()">
|
|
以该号码登录与评查看更多数据
|
|
</button>
|
|
<div class="content">
|
|
与评™是<span class="tip" onclick="showDialog()"
|
|
>全国人力资源信息数据验证平台 </span
|
|
><img class="icon_q" src="./img/icon_q.png" />
|
|
授权并监管的一款个人综合社交评价工具,根据国家《中华人民共和国网络安全法》《互联授权并监管的一款个人综合社交评价工具,根据国家《中华人民共和国网络安全法》《互联网信息服务管理办法》等条例规定,所有基础数据存储、隐私安全保障、用户行为数据溯源均由全国人力资源信息数据验证平台提供相应接口及支撑,国家监管确保众评不向第三方提供原始数据信息。
|
|
<div class="tips">
|
|
<img
|
|
src="./img/icon_t.png"
|
|
/>提示:为保证账号安全,请勿随意转发本链接给他人
|
|
</div>
|
|
</div>
|
|
<div id="dialog" class="dialog" onclick="closeDialog()">
|
|
<div class="content">
|
|
全国人力资源信息数据验证平台”是由中国防伪行业协会“全国产品防伪溯源验证公共平台”建立的国家数据平台。中国防伪行业协会的业务指导部门为国家市场监督管理总局,党建工作机构为中央和国家机关工作委员会。
|
|
<button class="btn_close" onclick="closeDialog()">我已了解</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|