mounted() {
    this.drawLine();
    this.getCurrentTime();
  },
  methods: {
    //  获取当前时间
    getCurrentTime() {
      var currenttime = new Date();
      this.LastTime = this.formatDate(currenttime);
    },
    //  时间字符串格式化 yyyy-mm-dd
    formatDate(date) {
      var d = new Date(date),
        month = '' + (d.getMonth() + 1),
        day = '' + d.getDate(),
        year = d.getFullYear();
      if (month.length < 2) month = '0' + month;
      if (day.length < 2) day = '0' + day;
      return [year, month, day].join('-');
    },
},
//截取字符串中的特定字符 的前部分和后部分子字符串
		// 日期格式化
		function aaa(str,key) {
		let inde =str.search(key)
			let a = str.substring(0,inde)
			let b = str.substring(inde+1)
			return a+'月'+b+'日';
		}
		console.log(aaa('01/01','/'))//01月01日

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐