Vue 기반 주간 전환 지원 달력
<template>
<div class="date">
<!-- -->
<div class="month">
<p>{{ currentYear }} {{ currentMonth }} </p>
</div>
<!-- -->
<ul class="weekdays">
<li> </li>
<li> </li>
<li> </li>
<li> </li>
<li> </li>
<li> </li>
<li> </li>
</ul>
<!-- -->
<ul class="days">
<li @click="pick(day)" v-for="(day, index) in days" :key="index">
<!-- -->
<span v-if="day.getMonth()+1 != currentMonth" class="other-month">{{ day.getDate() }}</span>
<span v-else>
<!-- -->
<span v-if="day.getFullYear() == new Date().getFullYear() && day.getMonth() == new Date().getMonth() && day.getDate() == new Date().getDate()" class="active">{{ day.getDate() }}</span>
<span v-else>{{ day.getDate() }}</span>
</span>
</li>
</ul>
</div>
</template>
js 부분:현재 기본 값 으로 일주일 을 표시 합 니 다.실제 상황 에 따라 변경 할 수 있 습 니 다.
<script>
export default {
name: 'date',
data () {
return {
currentYear: 1970, //
currentMonth: 1, //
currentDay: 1, //
currentWeek: 1, //
days: [],
}
},
mounted () {
},
created () {
this.initData(null)
},
methods: {
formatDate (year, month, day) {
const y = year
let m = month
if (m < 10) m = `0${m}`
let d = day
if (d < 10) d = `0${d}`
return `${y}-${m}-${d}`
},
initData (cur) {
let date = ''
if (cur) {
date = new Date(cur)
} else {
date = new Date()
}
this.currentDay = date.getDate() //
this.currentYear = date.getFullYear() //
this.currentMonth = date.getMonth() + 1 //
this.currentWeek = date.getDay() // 1...6,0 //
if (this.currentWeek === 0) {
this.currentWeek = 7
}
const str = this.formatDate(this.currentYear, this.currentMonth, this.currentDay)// - -
this.days.length = 0
// , 7 , 6 , , i<= 35- this.currentWeek
/* eslint-disabled */
for (let i = this.currentWeek - 1; i >= 0; i -= 1) {
const d = new Date(str)
d.setDate(d.getDate() - i)
// console.log(y:" + d.getDate())
this.days.push(d)
}
for (let i = 1; i <= 7 - this.currentWeek; i += 1) {
const d = new Date(str)
d.setDate(d.getDate() + i)
this.days.push(d)
}
},
//
weekPre () {
const d = this.days[0] // 7 7
d.setDate(d.getDate() - 7)
this.initData(d)
},
//
weekNext () {
const d = this.days[6] // 7 7
d.setDate(d.getDate() + 7)
this.initData(d)
},
//
pickPre (year, month) {
const d = new Date(this.formatDate(year, month, 1))
d.setDate(0)
this.initData(this.formatDate(d.getFullYear(), d.getMonth() + 1, 1))
},
//
pickNext (year, month) {
const d = new Date(this.formatDate(year, month, 1))
d.setDate(35)
this.initData(this.formatDate(d.getFullYear(), d.getMonth() + 1, 1))
},
//
pick (date) {
alert(this.formatDate(date.getFullYear(), date.getMonth() + 1, date.getDate()))
},
},
}
</script>
<style lang="scss">
@import "~base";
.date {
height: px2rem(180);
color: #333;
.month {
font-size: px2rem(24);
text-align: center;
margin-top: px2rem(20);
}
.weekdays {
display: flex;
font-size: px2rem(28);
margin-top: px2rem(20);
li {
flex: 1;
text-align: center;
}
}
.days {
display: flex;
li {
flex: 1;
font-size: px2rem(30);
text-align: center;
margin-top: px2rem(10);
line-height: px2rem(60);
.active {
display: inline-block;
width: px2rem(60);
height: px2rem(60);
color: #fff;
border-radius: 50%;
background-color: #fa6854;
}
.other-month {
color: #e4393c;
}
}
}
}
</style>
관련 참고 링크:Vue.js 캘 린 더 달력 만 들 기 효과이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Vue Render 함수로 DOM 노드 코드 인스턴스 만들기render에서createElement 함수를 사용하여 DOM 노드를 만드는 것은 직관적이지 않지만 일부 독립 구성 요소의 디자인에서 특수한 수요를 충족시킬 수 있습니다.간단한 렌더링 예는 다음과 같습니다. 또한 v...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.