forked from Gitlink/forgeplus-react
cookie失效时间改为一天
This commit is contained in:
parent
e7a322e038
commit
644e3c3f73
|
@ -28,8 +28,8 @@ function SystemNotice({system_notification,history}){
|
||||||
// }
|
// }
|
||||||
console.log("cookies before:",cookie.load('notice_stage')) ;
|
console.log("cookies before:",cookie.load('notice_stage')) ;
|
||||||
cookie.remove('notice_stage');
|
cookie.remove('notice_stage');
|
||||||
// let inFifteenMinutes = new Date(new Date().getTime() + 24 * 3600 * 1000);//一天
|
let inFifteenMinutes = new Date(new Date().getTime() + 24 * 3600 * 1000);//一天
|
||||||
let inFifteenMinutes = new Date(new Date().getTime() + 60 * 1000);//一分钟
|
// let inFifteenMinutes = new Date(new Date().getTime() + 60 * 1000);//一分钟
|
||||||
cookie.save('notice_stage', true,{ expires: inFifteenMinutes });
|
cookie.save('notice_stage', true,{ expires: inFifteenMinutes });
|
||||||
console.log("cookies after:",cookie.load('notice_stage')) ;
|
console.log("cookies after:",cookie.load('notice_stage')) ;
|
||||||
setVisible(false);
|
setVisible(false);
|
||||||
|
|
Loading…
Reference in New Issue