Merge branch 'master' into xuebaoxin

This commit is contained in:
2019-11-29 17:54:59 +08:00
4 changed files with 19 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
<template>
<div class="PersonalAnswer">
<div class="PersonalAnswer" @click="tab">
<div class="title">
<p>{{operation}}</p>
<p>{{day}}</p>
@@ -33,6 +33,17 @@ export default {
data() {
return {};
},
props:['operation','day','title']
props:['operation','day','title',"types","id"],
methods:{
tab(){
window.console.log(this.types,"llk")
if(this.types=="1"){
this.$router.push({
path: '/sign'
});
window.console.log( this.$router)
}
}
}
};
</script>