Commit 1fc646d7 authored by 赵啸非's avatar 赵啸非

添加站点分类查询

parent b34277e6
...@@ -312,6 +312,10 @@ export default { ...@@ -312,6 +312,10 @@ export default {
m = m < 10 ? '0' + m : m m = m < 10 ? '0' + m : m
s = s < 10 ? '0' + s : s s = s < 10 ? '0' + s : s
if('00'===h&&'00'===m) return `${s}秒`
if('00'===h) return `${m}分钟${s}秒`
return `${h}小时${m}分钟${s}秒` return `${h}小时${m}分钟${s}秒`
//return formatterDate(row, column); //return formatterDate(row, column);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment