prod
lily.zhang 3 years ago
parent 68e7672896
commit a8dd48b334

@ -73,16 +73,19 @@ export default {
week: "",
intDt: null,
selDatas: [],
timeShow: true
timeShow: true,
};
},
watch: {
$route(to) {
if(to.path === '/eventDEC') {
this.timeShow = false;
} else {
this.timeShow = true;
}
$route: {
handler(val) {
if (val.path === "/eventDEC") {
this.timeShow = false;
} else {
this.timeShow = true;
}
},
immediate: true,
},
},
created() {

Loading…
Cancel
Save