diff --git a/pages/super-hot/security-committee/detail.vue b/pages/super-hot/security-committee/detail.vue index ba4c1b2..058fc02 100644 --- a/pages/super-hot/security-committee/detail.vue +++ b/pages/super-hot/security-committee/detail.vue @@ -215,21 +215,12 @@ - - - - - - - - diff --git a/utils/request.js b/utils/request.js index c80ca7c..0b6e470 100644 --- a/utils/request.js +++ b/utils/request.js @@ -1,7 +1,7 @@ // export var requestPath = 'https://skqhdg.porthebei.com:9005/qa-regulatory-gwj/'; // 后台请求地址 -export var requestPath = 'http://192.168.0.102:8060/new_template'; +export var requestPath = 'http://192.168.0.101:8060/new_template'; let videoApiPath = 'https://arqsp.qhdsafety.com:10010'; // 视频平台后台请求地址 import store from '../store/index' @@ -31,10 +31,6 @@ function post(url, data) { uni.hideLoading(); } if (res.data.result === 'success') { - if (dayjs().diff(dayjs(uni.getStorageSync('tokenTime')), "minute") >= 5) { - uni.setStorageSync('tokenTime', dayjs().format("YYYY-MM-DD HH:mm:ss")) - setRefreshToken(); - } resolve(res.data) } else { if(url =='/admin/check'){ @@ -189,4 +185,12 @@ function videoApiGet(url, data) { }) } +setInterval(async () => { + if (uni.getStorageSync('tokenTime') == null) return; + if (dayjs().diff(dayjs(uni.getStorageSync('tokenTime')), "minute") >= 5) { + uni.setStorageSync('tokenTime', dayjs().format("YYYY-MM-DD HH:mm:ss")) + await setRefreshToken(); + } +}, 1000 * 60); + export {post, upload, uploads,setBasePath,videoApiGet}