小程序循环输出时得时间格式化

在相关得js页面

小程序循环输出时得时间格式化_第1张图片

 

小程序循环输出时得时间格式化_第2张图片

 

源码:

 /**时间转化 */
  getDateStr(seconds) {
    var date = new Date(seconds)
    var year = date.getFullYear();
    var month = date.getMonth() + 1;
    var day = date.getDate();
    var hour = date.getHours() < 10 ? "0" + date.getHours() : date.getHours();
    var minute = date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes();
    var second = date.getSeconds() < 10 ? "0" + date.getSeconds() : date.getSeconds();
    var currentTime = year + "-" + month + "-" + day + " " + hour + ":" + minute + ":" + second;
    return currentTime
  },

 

 

userWalletDetails: function () {
    let that = this;
    network.userWalletDetails({},res => {
      if (res.success) {
        /**时间转化 */
        var arr=res.data.rows;
        for(var i=0;i

 

你可能感兴趣的:(小程序)