修改BUG:缓存更改为毫秒后网站设置客户端显示增加单位换算
This commit is contained in:
parent
b6bf614dae
commit
fdbd8cec6d
|
@ -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>');
|
||||
|
|
Loading…
Reference in New Issue