時間戳轉日期
//parseInt()字符串轉數字 //new Date()放入時間戳,沒有放默認當前時間 this.tableData[i].createTime = this.formatDate(new Date(parseInt(this.tableData[i].createTime))) // 時間戳轉換日期格式 formatDate(now) { var year = now.getFullYear(); //取得4位數的年份 var month = now.getMonth() + 1; //取得日期中的月份,其中0表示1月,11表示12月 var date = now.getDate(); //返回日期月份中的天數(1到31) var hour = now.getHours(); //返回日期中的小時數(0到23) var minute = now.getMinutes(); //返回日期中的分鍾數(0到59) var second = now.getSeconds(); //返回日期中的秒數(0到59) return year + "-" + month + "-" + date + " " + hour + ":" + minute + ":" + second; }
日期轉時間戳轉天數
let day=(Date.parse(val)-Date.parse(this.addForm.checkCycleStart))/(1*24*60*60*1000);
