首页 > 其他 > 详细

vue项目中回显当前时间的农历时间

时间:2021-07-28 18:13:20      阅读:40      评论:0      收藏:0      [点我收藏+]

技术分享图片

npm安装

npm install --save chinese-lunar-calendar
vue中用法

   <div class="right-cla">{{nowTime}}</div>
   <div class="center-cla">
      <div>  {{nowDate}} </div>
      <div>农历:{{getLunarDay.dateStr}}</div>
  </div>
<script>
import { getLunar } from ‘chinese-lunar-calendar‘

export default {
  data() {
    return {
        nowDate: "", // 当前日期
        nowTime: "", // 当前时间
        getLunarDay: ‘‘,// 当前农历时间
	year: new Date().getFullYear(),
      	month: new Date().getMonth() + 1,
      	date: new Date().getDate()
    }
  },
  mounted() {
	// 获取农历
    this.getLunarDay = getLunar(this.year, this.month, this.date)
    // 获取当前时间 
    this.currentTime();
  },
 methonds:{
     //获取当前时间
            currentTime() {
                setInterval(this.formatDate, 500);
            },
            formatDate() {
                let date = new Date();
                let year = date.getFullYear(); // 年
                let month = date.getMonth() + 1; // 月
                month = month < 10 ? "0" + month : month; // 如果只有一位,则前面补零
                let day = date.getDate(); // 日
                day = day < 10 ? "0" + day : day; // 如果只有一位,则前面补零
                let week = date.getDay(); // 星期
                let weekArr = [ "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" ];
                let hour = date.getHours(); // 时
                hour = hour < 10 ? "0" + hour : hour; // 如果只有一位,则前面补零
                let minute = date.getMinutes(); // 分
                minute = minute < 10 ? "0" + minute : minute; // 如果只有一位,则前面补零
                let second = date.getSeconds(); // 秒
                second = second < 10 ? "0" + second : second; // 如果只有一位,则前面补零
                this.nowDate = `${year}/${month}/${day}    ${weekArr[week]}`;
                this.nowTime = `${hour}:${minute}`;
            },
}
}
</script>

vue项目中回显当前时间的农历时间

原文:https://www.cnblogs.com/ylh188/p/15070430.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!