1
This commit is contained in:
parent
3308fcbef9
commit
475ec35ec5
@ -116,7 +116,7 @@ export default {
|
|||||||
},
|
},
|
||||||
selectObj(val) {
|
selectObj(val) {
|
||||||
this.form.bindObjectId = val[val.length - 1];
|
this.form.bindObjectId = val[val.length - 1];
|
||||||
this.form.bindObjectType = val.length - 1;
|
this.form.bindObjectType = val.length;
|
||||||
},
|
},
|
||||||
submitForm() {
|
submitForm() {
|
||||||
this.$refs['form'].validate((valid) => {
|
this.$refs['form'].validate((valid) => {
|
||||||
@ -152,4 +152,4 @@ export default {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
@ -216,10 +216,10 @@ export default {
|
|||||||
getEnergyLimit(id).then((res) => {
|
getEnergyLimit(id).then((res) => {
|
||||||
if (res.code === 0) {
|
if (res.code === 0) {
|
||||||
this.form = res.data;
|
this.form = res.data;
|
||||||
this.form.plcParamId = res.data.plcParamId || '';
|
|
||||||
this.form.tableName = this.form.tableName
|
this.form.tableName = 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.method = this.form.method ? this.form.method + '' : '';
|
||||||
this.form.limitType = this.form.limitType
|
this.form.limitType = this.form.limitType
|
||||||
? this.form.limitType + ''
|
? this.form.limitType + ''
|
||||||
@ -231,6 +231,9 @@ export default {
|
|||||||
if (this.form.type === 2) {
|
if (this.form.type === 2) {
|
||||||
this.getDetailList();
|
this.getDetailList();
|
||||||
}
|
}
|
||||||
|
if (this.form.energyTypeId) {
|
||||||
|
this.getTableNameList(this.form.energyTypeId);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
|
@ -280,7 +280,7 @@ export default {
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
: undefined,
|
: undefined,
|
||||||
this.$auth.hasPermi('base:order-group:update')
|
this.$auth.hasPermi('base:order-group:query')
|
||||||
? {
|
? {
|
||||||
type: 'detail',
|
type: 'detail',
|
||||||
btnName: '详情',
|
btnName: '详情',
|
||||||
@ -483,4 +483,4 @@ export default {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
Loading…
Reference in New Issue
Block a user