From f443aa0e8087c879872e5fe14329ec53f4fd4510 Mon Sep 17 00:00:00 2001 From: yezian Date: Wed, 25 Dec 2024 18:53:37 +0800 Subject: [PATCH] =?UTF-8?q?baseRequest=E5=A2=9E=E5=8A=A0b=5Fdt=E5=AD=97?= =?UTF-8?q?=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- utils/baseRequest.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/utils/baseRequest.js b/utils/baseRequest.js index b6fd476..01ad904 100644 --- a/utils/baseRequest.js +++ b/utils/baseRequest.js @@ -6,16 +6,21 @@ export default function baseRequest() { const account = accountCookie === undefined ? {} : accountCookie; const mid = getCookie("mid"); const b_ts = new Date().getTime(); + let b_dt = 0; + if (/(iPad|iPhone|iPod)/gi.test(navigator.userAgent)) { + b_dt = 1; + } const baseRequest = { b_mid: mid ? parseInt(mid, 10) : account?.mid, b_ch: "h5", b_ts: b_ts, + b_dt: b_dt, b_token: token, b_did: typeof window !== "undefined" && typeof window.navigator !== "undefined" && navigator?.userAgent.slice(0, 32), }; - // console.log("baseRequest",baseRequest) + // console.log("baseRequest", baseRequest); return baseRequest; }