Browse Source

1、修改添加设备后返回到设备台账页面,新添加的设备没有默认显示的问题
2、修改新增设备时默认设备类型不正确的问题

niuheng 3 years ago
parent
commit
5438d59027

+ 1 - 0
src/components/ledger/handsontables/device.vue

@@ -622,6 +622,7 @@ export default {
             if (this.mess.deviceId) {
                 this.$nextTick(() => {
                     this.$refs.cascader.setValue(this.mess.deviceId);
+                    this.changeAddType({code:this.mess.deviceId,facility:this.mess.name});
                 });
             }
         },

+ 1 - 1
src/views/ledger/facility/addfacility.vue

@@ -292,7 +292,7 @@ export default {
                 session.remove("deviceAddData");
                 this.$router.push({
                     name: "facilityLedger",
-                    params: { deviceId: this.category.deviceId },
+                    params: { deviceId: this.category.deviceId,facility:this.category.name },
                 });
             });
         },

+ 1 - 0
src/views/ledger/facility/index.vue

@@ -117,6 +117,7 @@ export default {
             if (deviceId) {
                 this.$nextTick(() => {
                     this.$refs.cascader.setValue(deviceId);
+                    this.changeDevice({ code: deviceId, facility: this.$route.params.facility });
                 });
             } else {
                 this.$nextTick(() => {