add dark mode
add audit conn log
This commit is contained in:
@@ -350,5 +350,21 @@
|
||||
},
|
||||
"Timeout": {
|
||||
"One": "Timeout"
|
||||
},
|
||||
"AuditConnLog": {
|
||||
"One": "Connection Log"
|
||||
},
|
||||
"Peer": {
|
||||
"One": "Peer",
|
||||
"Other": "Peers"
|
||||
},
|
||||
"FromPeer": {
|
||||
"One": "From Peer"
|
||||
},
|
||||
"FromName": {
|
||||
"One": "From Name"
|
||||
},
|
||||
"CloseTime": {
|
||||
"One": "Close Time"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -337,5 +337,20 @@
|
||||
},
|
||||
"Timeout": {
|
||||
"One": "超时"
|
||||
},
|
||||
"AuditConnLog": {
|
||||
"One": "连接日志"
|
||||
},
|
||||
"Peer": {
|
||||
"One": "设备"
|
||||
},
|
||||
"FromPeer": {
|
||||
"One": "来源设备"
|
||||
},
|
||||
"FromName": {
|
||||
"One": "来源名称"
|
||||
},
|
||||
"CloseTime": {
|
||||
"One": "关闭时间"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -23,3 +23,25 @@ export function timeAgo (time) {
|
||||
return T('YearsAgo', { param: num }, num)
|
||||
}
|
||||
}
|
||||
|
||||
export function formatTime (unix, format = 'yyyy-MM-dd hh:mm:ss') {
|
||||
let date = new Date(unix)
|
||||
let o = {
|
||||
'M+': date.getMonth() + 1,
|
||||
'd+': date.getDate(),
|
||||
'h+': date.getHours(),
|
||||
'm+': date.getMinutes(),
|
||||
's+': date.getSeconds(),
|
||||
'q+': Math.floor((date.getMonth() + 3) / 3),
|
||||
S: date.getMilliseconds(),
|
||||
}
|
||||
if (/(y+)/.test(format)) {
|
||||
format = format.replace(RegExp.$1, (date.getFullYear() + '').substr(4 - RegExp.$1.length))
|
||||
}
|
||||
for (let k in o) {
|
||||
if (new RegExp('(' + k + ')').test(format)) {
|
||||
format = format.replace(RegExp.$1, RegExp.$1.length === 1 ? o[k] : ('00' + o[k]).substr(('' + o[k]).length))
|
||||
}
|
||||
}
|
||||
return format
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user