|
@@ -938,7 +938,12 @@ export default {
|
|
|
this.$refs["ruleForm"].validate((valid) => {
|
|
|
if (valid) {
|
|
|
if (this.tableType == "add") {
|
|
|
- this.generalDataReception(1, this.tableForm);
|
|
|
+ if (this.$route.path == '/alarmstrategySetting') {
|
|
|
+ const newObj = Object.assign(this.tableForm, this.urlParams)
|
|
|
+ this.generalDataReception(1, newObj);
|
|
|
+ } else {
|
|
|
+ this.generalDataReception(1, this.tableForm);
|
|
|
+ }
|
|
|
} else {
|
|
|
this.generalDataReception(2, this.tableForm, this.tableKey);
|
|
|
}
|