添加了日历跳转

This commit is contained in:
2020-10-30 15:54:55 +08:00
parent b38d0f693f
commit 6cf34e698b
3 changed files with 11 additions and 8 deletions

View File

@@ -28,7 +28,7 @@
<div class="row" v-for="(item,index) in month.date" :key="index">
<div v-for="(i,j) in item" :key="j">
<div class="day">
<div :class="{ing: yue == 0 && month.day == i.day,old: (yue < 0 || (yue == 0 && month.day > i.day)) && i.list.length != 0 ,next: (yue > 0 || (yue == 0 && month.day < i.day)) && i.list.length != 0 }">
<div :class="{ing: yue == 0 && month.day == i.day,old: (yue < 0 || (yue == 0 && month.day > i.day)) && i.list.length != 0 ,next: (yue > 0 || (yue == 0 && month.day < i.day)) && i.list.length != 0 }" @click="navto(i.time)">
{{i.day}}
<div class="item" v-for="(i,j) in i.list" :key="j">
<div></div><p>{{i}}</p>
@@ -241,8 +241,8 @@ export default defineComponent({
getdates(userid.value)
}
function navto(){
router.push("/regime/week")
function navto(date: string){
router.push("/regime/week?time=" + (!date? '' : date) )
}
getdates(userid.value);
return {

View File

@@ -250,12 +250,14 @@ import store from '@/store';
import { getdatelist, userinfo } from '@/api';
import router from '@/router';
import dayjs from 'dayjs';
import { useRoute } from 'vue-router';
export default defineComponent({
props: {},
setup() {
const zhou = ref(0);
const week = ref<any>(getweek());
const time: any = useRoute().query.time;
const week = ref<any>(getweek(time));
const userid = store.state.userinfo.memberid;
console.log(week.value);
function getdates(userid: number){
@@ -295,7 +297,7 @@ export default defineComponent({
}, 2000)
watch(zhou, (value) => {
week.value = getweek(value);
week.value = getweek(time, value);
console.log(week.value);
getdates(userid)
});