使用uni-app时,使用的时间戳转换成日期(年月日)代码段
// 时间戳转换成日期getdate(value) {if (!value) return '';value = parseInt(value) * 1000var now = new Date(value);var year = now.getFullYear();var month = now.getMonth() + 1;if (month < 10) {month = '0' + m
·
// 时间戳转换成日期
getdate(value) {
if (!value) return '';
value = parseInt(value) * 1000
var now = new Date(value);
var year = now.getFullYear();
var month = now.getMonth() + 1;
if (month < 10) {
month = '0' + month
}
var date = now.getDate();
if (date < 10) {
date = '0' + date
}
return year + "-" + month + "-" + date
},
更多推荐
已为社区贡献3条内容
所有评论(0)