修改BUG:缓存更改为毫秒后网站设置客户端显示增加单位换算

This commit is contained in:
Argo-MacBookPro 2019-04-04 18:47:38 +08:00
parent b6bf614dae
commit fdbd8cec6d
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ $(function () {
var content = result.sort(function (x, y) {
return x.Key > y.Key ? 1 : -1;
}).map(function (ele) {
return $.format(html, ele.Interval, ele.Key, ele.Desc, ele.Value, $.format(item.Url, ele.Key), item.Self, ele.ElapsedSeconds);
return $.format(html, ele.Interval / 1000, ele.Key, ele.Desc, ele.Value, $.format(item.Url, ele.Key), item.Self, ele.ElapsedSeconds);
}).join('');
var cache = $('<div class="card-cache"></div>');