摘要: /** * 转为HH:MM:SS * @param second * @returns {string} * @private */ var _showTime = function (second) { if (second < 60) { if (second < 10) { return "0 阅读全文
posted @ 2021-08-09 17:41 初出茅庐小菜鸡 阅读(847) 评论(0) 推荐(0) 编辑
摘要: /** * 转换流量格式为xxGBxxMBxxKB * @param flow 156165(xxxxxx) */ public String changeFlowFormat(String flow) { Integer flows = Integer.valueOf(flow); if (flo 阅读全文
posted @ 2021-08-09 17:30 初出茅庐小菜鸡 阅读(1227) 评论(0) 推荐(0) 编辑
摘要: /** * 转换时间格式为xx小时xx分xx秒 * @param second xxxxx */ public String changeTimeFormat(String second) { Integer seconds = Integer.valueOf(second); if (second 阅读全文
posted @ 2021-08-09 17:28 初出茅庐小菜鸡 阅读(4019) 评论(0) 推荐(0) 编辑