您的位置:首页 > 财经 > 金融 > uniapp时间戳转时间

uniapp时间戳转时间

2024/12/23 15:27:15 来源:https://blog.csdn.net/weixin_59527403/article/details/140679312  浏览:    关键词:uniapp时间戳转时间

时间戳转时间
在这里插入图片描述

utils页面

function timestampToTime(time) {  const date = new Date(time);  const year = date.getFullYear();  const month = String(date.getMonth() + 1).padStart(2, '0'); // 月份从0开始,所以要加1,并补齐0  const day = String(date.getDate()).padStart(2, '0'); // 补齐日期  const hours = String(date.getHours()).padStart(2, '0'); // 补齐小时  const minutes = String(date.getMinutes()).padStart(2, '0'); // 补齐分钟  const seconds = String(date.getSeconds()).padStart(2, '0'); // 补齐秒  const convertedTime = `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;  return convertedTime;  
}

使用页面

<view class="content" v-for="item in refuelList" :key="item.id" @click="detail(item.id)"><view class="payTime">{{dataFormat(item.tranTime)||'-'}}</view>
</view>
// 时间戳转时间dataFormat(time) {if (!time) {return null}return this.$utils.timestampToTime(time)},

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com