Merge pull request #2910 from jumpserver/bugfix

[Update] 修改日期显示差8小时
pull/2926/head
老广 5 years ago committed by GitHub
commit cedf0e4532
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -137,7 +137,6 @@ $(document).ready(function () {
protocolRef.val(protocolShould);
protocolRef.trigger("change")
}
})
.on("click", ".btn-protocol.btn-del", function () {
$(this).parent().parent().remove();

@ -1111,7 +1111,8 @@ function objectAttrsIsBool(obj, attrs) {
function formatDateAsCN(d) {
var date = new Date(d);
return date.toISOString().replace("T", " ").replace(/\..*/, "");
var date_s = date.toLocaleString(navigator.language, {hour12: false});
return date_s.split("/").join('-')
}
function getUrlParams(url) {

Loading…
Cancel
Save