chenrui  2 năm trước cách đây
mục cha
commit
9bcceea9d4

+ 1 - 2
src/components/Table/index.vue

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

+ 1 - 1
src/views/BasicsData/views/deployNode/deployNodeChild.vue

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