Commit 254ca491 authored by 华国豪's avatar 华国豪 🙄
parents fd395ea8 e07388b5
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
<meta name="x5-orientation" content="portrait"> <meta name="x5-orientation" content="portrait">
</meta> </meta>
<!-- <link rel="shortcut icon" href="../images/favicon.ico" type="image/x-icon" />--> <!-- <link rel="shortcut icon" href="../images/favicon.ico" type="image/x-icon" />-->
<link rel="stylesheet" href="../css/GT_activities.css"> <link rel="stylesheet" href="../css/GT_activities.css?r=2341654165">
<link rel="stylesheet" href="../css/GT_activities2.css" media="screen" type="text/css" /> <link rel="stylesheet" href="../css/GT_activities2.css" media="screen" type="text/css" />
<div id='wx_pic' style='margin:0 auto;display:none;'> <div id='wx_pic' style='margin:0 auto;display:none;'>
<img src='../images/18logo.png' /> <img src='../images/18logo.png' />
...@@ -257,7 +257,7 @@ ...@@ -257,7 +257,7 @@
let login = true; //判断是否登录 let login = true; //判断是否登录
let userInfo = {}; let userInfo = {};
let platform = "H5"; let platform = "H5";
if (localStorage.u) { if (localStorage.u && href.indexOf("platform") == -1) {
try { try {
userInfo = JSON.parse(localStorage.u); userInfo = JSON.parse(localStorage.u);
if (!userInfo.customerId) { if (!userInfo.customerId) {
...@@ -277,8 +277,6 @@ ...@@ -277,8 +277,6 @@
login = false login = false
} }
} else { } else {
// 如果进入页面没有登录的参数 处理跳到h5页面登录 // 如果进入页面没有登录的参数 处理跳到h5页面登录
if (href.split('?')[1]) { if (href.split('?')[1]) {
...@@ -300,7 +298,6 @@ ...@@ -300,7 +298,6 @@
secretKey: param[3].split('=')[1] secretKey: param[3].split('=')[1]
} }
platform = param[4].split('=')[1] //获取从哪里跳过来的 platform = param[4].split('=')[1] //获取从哪里跳过来的
} }
} else { } else {
// window.location.href = 'https://activity.oytour.com/html/login.html'; // window.location.href = 'https://activity.oytour.com/html/login.html';
......
This diff is collapsed.
let locationName = window.location.hostname; let locationName = window.location.hostname;
function getApiUrl() { function getApiUrl() {
let url = { let url = {
urlPost: "https://reborn.oytour.com/api/common/post", urlPost: "https://reborn.oytour.com/api/common/post",
//urlPost: locationName.indexOf('oytour') !== -1 ? "http://reborn.oytour.com/api/common/post" : "http://192.168.2.214:8082/api/common/post", //urlPost: locationName.indexOf('oytour') !== -1 ? "http://reborn.oytour.com/api/common/post" : "http://192.168.2.214:8082/api/common/post",
//urlJava: locationName.indexOf('oytour') !== -1 ? "https://efficient.oytour.com/" : "http://192.168.2.215:9000/" //urlJava: locationName.indexOf('oytour') !== -1 ? "https://efficient.oytour.com/" : "http://192.168.2.215:9000/"
urlJava: "https://efficient.oytour.com/" urlJava: "https://efficient.oytour.com/"
} }
return url return url
} }
String.prototype.myReplace=function(f,e){ //时间格式化 苹果手机-替换为/ String.prototype.myReplace = function(f, e) { //时间格式化 苹果手机-替换为/
var reg=new RegExp(f,"g"); //创建正则RegExp对象 var reg = new RegExp(f, "g"); //创建正则RegExp对象
return this.replace(reg,e); return this.replace(reg, e);
} }
function getLocalStorage() { function getLocalStorage() {
var localStorageData = window.localStorage["userInfo"]; var localStorageData = window.localStorage["userInfo"];
if (localStorageData != undefined) { if (localStorageData != undefined) {
return JSON.parse(localStorageData); return JSON.parse(localStorageData);
} else { } else {
return null; return null;
} }
} }
function getLocalStorage2() { function getLocalStorage2() {
var localStorageData = window.localStorage["userInfo2"]; var localStorageData = window.localStorage["userInfo2"];
if (localStorageData != undefined) { if (localStorageData != undefined) {
return JSON.parse(localStorageData); return JSON.parse(localStorageData);
} else { } else {
return null; return null;
} }
} }
function clearLocalStorage() { function clearLocalStorage() {
window.localStorage.removeItem('userInfo') window.localStorage.removeItem('userInfo')
} }
function getAjaxData(cmd, msg, tk) { function getAjaxData(cmd, msg, tk) {
if (msg == null || msg == "") { if (msg == null || msg == "") {
msg = {} msg = {}
} }
let timestamp = (new Date()).valueOf(); let timestamp = (new Date()).valueOf();
let token = ""; let token = "";
let key = ""; let key = "";
if (getLocalStorage() != null) { if (getLocalStorage() != null) {
token = getLocalStorage().token; token = getLocalStorage().token;
key = getLocalStorage().secretKey; key = getLocalStorage().secretKey;
} }
let encodeMsg = encodeURIComponent(JSON.stringify(msg)).toLowerCase(); let encodeMsg = encodeURIComponent(JSON.stringify(msg)).toLowerCase();
let md5Str = hex_md5(`cmd=${cmd}&msg=${encodeMsg}&timestamp=${timestamp}&token=${token}&key=${key}`); let md5Str = hex_md5(`cmd=${cmd}&msg=${encodeMsg}&timestamp=${timestamp}&token=${token}&key=${key}`);
let postData = { let postData = {
"msg": msg, "msg": msg,
"cmd": cmd, "cmd": cmd,
"timestamp": timestamp, "timestamp": timestamp,
"token": tk ? tk : token, "token": tk ? tk : token,
"sign": md5Str "sign": md5Str
} }
return JSON.stringify(postData) return JSON.stringify(postData)
} }
function getJavaData(msg) { function getJavaData(msg) {
if (msg == null || msg == "") { if (msg == null || msg == "") {
msg = {} msg = {}
} }
let timestamp = (new Date()).valueOf(); let timestamp = (new Date()).valueOf();
let token = ""; let token = "";
let key = ""; let key = "";
if (getLocalStorage() != null) { if (getLocalStorage() != null) {
token = getLocalStorage().token; token = getLocalStorage().token;
key = getLocalStorage().SecretKey; key = getLocalStorage().secretKey;
} else if (getLocalStorage2() != null) { } else if (getLocalStorage2() != null) {
if (getLocalStorage2() != null) { if (getLocalStorage2() != null) {
token = getLocalStorage2().token; token = getLocalStorage2().token;
key = getLocalStorage2().secretKey; key = getLocalStorage2().secretKey;
} }
} }
let userInfo = localStorage.userInfo ? JSON.parse(localStorage.userInfo) : JSON.parse(localStorage.userInfo2) ? JSON.parse(localStorage.userInfo2) : '' let userInfo = localStorage.userInfo ? JSON.parse(localStorage.userInfo) : JSON.parse(localStorage.userInfo2) ? JSON.parse(localStorage.userInfo2) : ''
let uid = userInfo.accountId ? userInfo.accountId : 0 let uid = userInfo.accountId ? userInfo.accountId : 0
let encodeMsg = encodeURIComponent(JSON.stringify(msg)).toLowerCase(); let encodeMsg = encodeURIComponent(JSON.stringify(msg)).toLowerCase();
let md5Str = hex_md5(`msg=${encodeMsg}&timestamp=${timestamp}&token=${token}&key=${key}`); let md5Str = hex_md5(`msg=${encodeMsg}&timestamp=${timestamp}&token=${token}&key=${key}`);
let postData = { let postData = {
"groupId": 2, "groupId": 2,
"msg": msg, "msg": msg,
"uid": uid, "uid": uid,
"timestamp": timestamp, "timestamp": timestamp,
"token": token, "token": token,
"sign": md5Str "sign": md5Str
} }
return JSON.stringify(postData) return JSON.stringify(postData)
} }
function getJavaA(msg, tk) { function getJavaA(msg, tk) {
...@@ -110,4 +114,4 @@ function getJavaA(msg, tk) { ...@@ -110,4 +114,4 @@ function getJavaA(msg, tk) {
"uid": uid, "uid": uid,
} }
return JSON.stringify(postData) return JSON.stringify(postData)
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment