|
@@ -915,6 +915,13 @@ let CommonObj = {
|
915
|
915
|
isApp: (/oqpo_android|oqpo_ios/).test(navigator.userAgent.toLowerCase())
|
916
|
916
|
};
|
917
|
917
|
|
|
918
|
+var urlParams = location.search.split(/[?&]/).slice(1).map(function(paramPair) {
|
|
919
|
+ return paramPair.split(/=(.+)?/).slice(0, 2);
|
|
920
|
+}).reduce(function(obj, pairArray) {
|
|
921
|
+ obj[pairArray[0]] = pairArray[1];
|
|
922
|
+ return obj;
|
|
923
|
+}, {});
|
|
924
|
+
|
918
|
925
|
function itp_fn_date_format(date, type) {
|
919
|
926
|
let month = date.getMonth() + 1;
|
920
|
927
|
let day = date.getDate();
|