|
|
|
@ -34,11 +34,29 @@ name: "Backlog",
|
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
created() { |
|
|
|
|
console.log(this.$route.params.id,"跳转========="); |
|
|
|
|
if (this.$route.params.Id !== null) { |
|
|
|
|
this.LCid = this.$route.params.id |
|
|
|
|
// console.log(this.$route.query.id,"跳转========="); |
|
|
|
|
// if (this.$route.query.id !== null) { |
|
|
|
|
// this.LCid = this.$route.query.id |
|
|
|
|
// } |
|
|
|
|
}, |
|
|
|
|
watch:{ |
|
|
|
|
"$route": { |
|
|
|
|
immediate: true, |
|
|
|
|
handler() { |
|
|
|
|
if(!!this.$route.query.id ){ |
|
|
|
|
this.LCid = this.$route.query.id |
|
|
|
|
}else{ |
|
|
|
|
this.LCid = "222" |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
// 开启深度监听 |
|
|
|
|
deep: true |
|
|
|
|
}, |
|
|
|
|
// LCid(val,oldVal) { |
|
|
|
|
// console.log("==========="); |
|
|
|
|
// this.loadData(1); |
|
|
|
|
// } |
|
|
|
|
}, |
|
|
|
|
// 在 mounted 生命周期监听窗口变化并触发上文处理函数,修改高度 |
|
|
|
|
mounted() { |
|
|
|
|
window.addEventListener('resize', this.getHeight); |
|
|
|
|