时钟完成

This commit is contained in:
2020-11-23 16:58:37 +08:00
parent ce37786363
commit 15ede903bd
2 changed files with 20 additions and 11 deletions

View File

@@ -202,9 +202,8 @@ export default defineComponent({
},
setup(){
console.log(1)
const date = getdate();
console.log(date)
const month: any = ref(date);
const month: any = ref({zhou:0,data:[]});
const yue = ref(0);
const userid = computed(() => {
return store.state.userinfo.memberid;
@@ -249,16 +248,17 @@ export default defineComponent({
}
function xia(){
yue.value = yue.value + 1;
month.value = getdate(yue.value)
month.value = getdate(yue.value, store.state.userinfo.zoneValue)
getdates(userid.value)
}
watch(userid, ()=> {
month.value = getdate(0, store.state.userinfo.zoneValue)
getdates(userid.value);
})
function shang(){
yue.value = yue.value - 1;
month.value = getdate(yue.value)
month.value = getdate(yue.value, store.state.userinfo.zoneValue)
getdates(userid.value)
}
@@ -276,7 +276,11 @@ export default defineComponent({
}
router.push({path: url,query: { id: id }})
}
getdates(userid.value);
if(userid.value != 0){
month.value = getdate(0, store.state.userinfo.zoneValue)
getdates(userid.value);
}
return {
month,
xia,