{{index+1}}--{{dateFormat(item.addDate)}}
dateFormat(time) {
let date = new Date(time);
let year = date.getFullYear();
// 在日期格式中,月份是从0开始的,因此要加0,使用三元表达式在小于10的前面加0,以达到格式统一如 09:11:05
let month = date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1;
let day = date.getDate() < 10 ? "0" + date.getDate() : date.getDate();
let hours = date.getHours() < 10 ? "0" + date.getHours() : date.getHours();
let minutes = date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes();
let seconds = date.getSeconds() < 10 ? "0" + date.getSeconds() : date.getSeconds();
// 拼接
// return year + "-" + month + "-" + day + " " + hours + ":" + minutes + ":" + seconds;
return year + "-" + month + "-" + day;
},
【uniapp|uniapp显示日期格式化】
推荐阅读
- vue.js|vue数据push后不能响应式更新
- vue|uniapp+java小程序支付
- 技术栈|swagger 2速成
- Animate.css动画库使用
- vue项目img src=https://www.it610.com/article/“[object module]“
- 用uniapp写一个内外循环的全选与反选,不会的赶紧围观
- 前端基础和框架使用|Vue的异步渲染axios
- 前端优秀开源项目|Vuestic UI - 免费开源的高质量 Vue3 UI 组件库,还内置了漂亮的 Vuestic Admin 后台框架
- 2个VueJS实战开发实例