1. 修改token续期为定时任务续期的方式

2. 特级动火-上传会议纪要 增加相机 相册选择的方式
pet-2.0
Shan Ao 2025-03-10 16:19:06 +08:00
parent 67b89b4574
commit e6387fe6b7
2 changed files with 9 additions and 14 deletions

View File

@ -215,21 +215,12 @@
<view slot="label" class="mt-10">
<u-upload
ref="aaa"
capture="album"
uploadIcon="plus"
:fileList="fileList"
@afterRead="afterRead"
@delete="deletePic"
name="1" multiple
:maxCount="4"></u-upload>
<!-- <u-upload-->
<!-- uploadIcon="plus"-->
<!-- :fileList="form.fileList"-->
<!-- @afterRead="afterRead"-->
<!-- @delete="deletePic"-->
<!-- multiple-->
<!-- :maxCount="4"-->
<!-- ></u-upload>-->
</view>
</u-cell>
<u-cell v-if="pd.isChange === '2'">

View File

@ -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}