@@ -485,7 +485,6 @@ export default {
dataContent: {
handler(val) {
if (val) {
- console.log(val);
if (val.companyID) {
this.resetTable();
this.getQuery();
@@ -915,7 +914,7 @@ export default {
this.$router.push({
path: "/BasicsData/deployNodeChild",
query: {
- nodeID: row.nodeCode,
+ nodeCode: row.nodeCode,
},
});
@@ -26,7 +26,7 @@ export default {
// this.$router.push("/systemSettings/queryTemplate");
// return;
// }
- this.nodeCode = Number(this.$route.query.nodeCode);
+ this.nodeCode = this.$route.query.nodeCode;
};
</script>