Browse Source

Merge branch 'bug_mk' into dev

V4.3.3
mk 1 year ago
parent
commit
b07fde1ee1
  1. 13
      src/views/modules/home/index.vue

13
src/views/modules/home/index.vue

@ -601,13 +601,24 @@ export default {
}); });
}, },
handelCLickJump(e,type){ handelCLickJump(e,type){
this.$router.push({ if(type === 'updateResiList'){
this.$router.push({
path: "base-resi", path: "base-resi",
query: { query: {
category: e.residentCategory, category: e.residentCategory,
type:'updateResi' type:'updateResi'
} }
}); });
}else{
this.$router.push({
path: "/main/base-nonIntResi",
query: {
resiCategory: e.residentCategory,
type:type
}
});
}
}, },
// //

Loading…
Cancel
Save