【实战】可视化大屏项目展示当前时间

时间展示格式如下:

上代码:

<span class="showTime"> {
   
   {dateFormat(date)}}</span>

 data () {
    return {
      date: new Date(),
    }
  },  

  methods: {
 // 顶部时间格式化
    dateFormat (time) {
      var date = new Date(time);
      var year = date.getFullYear();
      var month = date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1;
      var day = date.getDate() < 10 ? "0" + date.getDate() : date.getDate();
      var hours = date.getHours() < 10 ? "0" + date.getHours() : date.getHours();
      var minutes = date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes();
      var seconds = date.getSeconds() < 10 ? "0" + date.getSeconds() : date.getSeconds();
      // 拼接
      return year + "-" + month + "-" + day + " " + hours + ":" + minutes + ":" + seconds;
    },
}

猜你喜欢

转载自blog.csdn.net/m0_61101059/article/details/130579464