Compare commits

..

No commits in common. "83b834d2fc06003be6a4e720fa1abed9de7f8e6b" and "1328da9616706b1ba0b02c1ea411a065122e79f9" have entirely different histories.

3 changed files with 5 additions and 8 deletions

View File

@ -116,7 +116,7 @@ export default {
},
selectObj(val) {
this.form.bindObjectId = val[val.length - 1];
this.form.bindObjectType = val.length;
this.form.bindObjectType = val.length - 1;
},
submitForm() {
this.$refs['form'].validate((valid) => {
@ -152,4 +152,4 @@ export default {
},
},
};
</script>
</script>

View File

@ -216,10 +216,10 @@ export default {
getEnergyLimit(id).then((res) => {
if (res.code === 0) {
this.form = res.data;
this.form.plcParamId = res.data.plcParamId || '';
this.form.tableName = this.form.tableName
? this.form.tableName + ''
: '';
this.form.plcParamId = res.data.plcParamId || '';
this.form.method = this.form.method ? this.form.method + '' : '';
this.form.limitType = this.form.limitType
? this.form.limitType + ''
@ -231,9 +231,6 @@ export default {
if (this.form.type === 2) {
this.getDetailList();
}
if (this.form.energyTypeId) {
this.getTableNameList(this.form.energyTypeId);
}
}
});
} else {

View File

@ -280,7 +280,7 @@ export default {
},
}
: undefined,
this.$auth.hasPermi('base:order-group:query')
this.$auth.hasPermi('base:order-group:update')
? {
type: 'detail',
btnName: '详情',
@ -483,4 +483,4 @@ export default {
},
},
};
</script>
</script>