0
点赞
收藏
分享

微信扫一扫

vue将获取到的时间转换格式

大漠雪关山月 2022-04-23 阅读 87
vue.js

 

 

 

 

start_time() {
      const daterc = this.addRule.sending_rules.purchase_date_time[0];
      if (daterc != null) {
        var date = new Date(daterc);
        var year = date.getFullYear();
        /* 在日期格式中,月份是从0开始,11结束,因此要加0
         * 使用三元表达式在小于10的前面加0,以达到格式统一  如 09:11:05
         * */
        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();
        // 拼接时间格式
        // year + "-" + month + "-" + day + " " + hours + ":" + minutes + ":" + seconds
        let timeList = year + "-" + month + "-" + day;
        this.addRule.sending_rules.purchase_date_time[0] = timeList;
        console.log(timeList, "timeList");
        // return timeList;
      }
    },
举报

相关推荐

0 条评论