mobileclient/libs.js

71 lines
1.9 KiB
JavaScript
Raw Normal View History

2024-02-22 19:28:16 +08:00
/**
* 结算 埋点方法
* @param {string} key
* @param {number} settlementType
*/
const settlementFun = (token, settlementType) => {
2024-02-25 17:58:32 +08:00
let obj_yz_data = JSON.parse(sessionStorage.getItem("bm_auth"));
2024-02-28 14:13:05 +08:00
if (obj_yz_data && obj_yz_data.settlement_data.is_settlement) {
2024-02-25 17:58:32 +08:00
return;
}
2024-02-22 19:28:16 +08:00
let params = {
token,
type: settlementType
};
req.axiosPost("/key/settlement/create", params).then((res) => {
2024-02-23 17:25:07 +08:00
console.log("点 =>", res);
2024-02-22 19:28:16 +08:00
if (res.code === 200) {
// 接口请求成功后,就不能再请求接口了
let obj_sy = JSON.parse(sessionStorage.getItem("bm_auth"));
obj_sy.settlement_data.is_settlement = true;
sessionStorage.setItem("bm_auth", JSON.stringify(obj_sy));
}
});
};
// 兼容IOS 返回
const locationReplace = (url) => {
if (history.replaceState) {
history.replaceState(null, document.title, url);
history.go(0);
} else {
location.replace(url);
}
};
// 获取url参数
const getQueryString = (name) => {
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
var r = window.location.search.substr(1).match(reg);
if (r != null) return unescape(r[2]);
return null;
};
/**
* @param {*} timestamp
* @returns
*/
const pageOutTime = (timestamp) => {
if (timestamp) {
const now = new Date().getTime(); // 获取当前时间的时间戳
let diff = Number(timestamp) - now; // 计算差异(以毫秒为单位)
// 判断还剩多久
if (diff <= 0) {
// window.location.replace("/outtime.html");
console.log("时间已到");
return false;
} else {
// 将差异转换为小时、分钟、秒
const hours = Math.floor(diff / (1000 * 60 * 60));
diff -= hours * (1000 * 60 * 60);
const minutes = Math.floor(diff / (1000 * 60));
diff -= minutes * (1000 * 60);
const seconds = Math.floor(diff / 1000);
// 返回结果数组
return [hours, minutes, seconds];
}
}
};