Commit 1fd77efe by 罗鑫霖

lxl

1 parent 3ef59f66
{"commit":"343145f35878188a308c8d0af5a85a7ca617ef08","commitDate":"2021-9-6 14:21","buildDate":"2021-9-13 16:1","version":"2.1.0","info":"【BUG】参数多次保存出现值为空的情况"}
\ No newline at end of file
{"commit":"3ef59f66af81a9e75a2f779b3a4fc9ef8731c21e","commitDate":"2021-9-13 16:11","buildDate":"2021-11-8 15:12","version":"2.1.0","info":"【new】增加存储配置导出功能"}
\ No newline at end of file
......@@ -102,7 +102,7 @@ export default {
getDate() {
let date = new Date();
let Y = date.getFullYear();
let M = date.getMonth() > 9 ? date.getMonth() : `0${date.getMonth() + 1}`;
let M = date.getMonth() > 9 ? date.getMonth() + 1 : `0${date.getMonth() + 1}`;
let D = date.getDate() > 9 ? date.getDate() : `0${date.getDate()}`;
let h = date.getHours() > 9 ? date.getHours() : `0${date.getHours()}`;
let m =
......@@ -228,7 +228,7 @@ export default {
type: "warning",
});
this.logout();
}, 600000);
}, 1000 * 60 * 60 * 6);
});
// window.onresize = function() {
// console.log("full",that.isfull)
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!