...
|
...
|
@@ -1164,7 +1164,7 @@ |
|
|
this.$message.success(res.msg)
|
|
|
this.getList()
|
|
|
}).catch(error => {
|
|
|
this.$message.error(res.msg)
|
|
|
this.$message.error(error)
|
|
|
})
|
|
|
}).catch(() => {
|
|
|
})
|
...
|
...
|
@@ -1180,10 +1180,11 @@ |
|
|
},
|
|
|
watch: {
|
|
|
parentLoId(value) {
|
|
|
if (jsutil.checkNull(this.parentLoId)){
|
|
|
this.queryInfo.locationno = this.parentLoId;
|
|
|
if (value && jsutil.checkNull(this.parentLoId)){
|
|
|
this.queryInfo.locationno = this.parentLoId;
|
|
|
this.getList();
|
|
|
}
|
|
|
this.getList();
|
|
|
|
|
|
}
|
|
|
}
|
|
|
|
...
|
...
|
|