Browse Source

修改待办跳转

dev
caoyizhong 2 years ago
parent
commit
4435659f33
  1. 24
      src/views/activiti/Backlog.vue
  2. 28
      src/views/activiti/Schedule.vue
  3. 5
      src/views/dashboard/HomePage.vue

24
src/views/activiti/Backlog.vue

@ -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);

28
src/views/activiti/Schedule.vue

@ -527,16 +527,25 @@ export default {
},
watch:{
// LCid: {
// immediate: true,
// handler() {
LCid: {
immediate: true,
handler() {
// console.log("didiidiidid",this.LCid);
// if(!!this.LCid ){
// this.queryParam.id = this.LCid;
if(this.LCid !== "222" ){
this.queryParam.id = this.LCid;
this.loadData(1);
}else{
this.queryParam.id = null;
this.loadData(1);
}
},
//
deep: true
},
// LCid(val,oldVal) {
// console.log("===========");
// this.loadData(1);
// }
// }
// },
},
methods: {
loadData(arg) {
@ -1126,6 +1135,11 @@ export default {
this.loadData();
}
}
,
destroyed() {
console.log("..........");
console.log("..........");
}
}
</script>
<style scoped>

5
src/views/dashboard/HomePage.vue

@ -659,8 +659,9 @@ export default {
on: {
click: () => {
this.$router.push({
name:'activiti-Backlog',
params:{
// name:'/activiti/Backlog',
path:'/activiti/Backlog',
query:{
id: record.id
}
})

Loading…
Cancel
Save