zhaoke 1 year ago
parent
commit
e61d85fb13
2 changed files with 7 additions and 2 deletions
  1. 1 1
      src/views/newFlightView/index.vue
  2. 6 1
      src/views/table/index.vue

+ 1 - 1
src/views/newFlightView/index.vue

@@ -39,7 +39,7 @@
           <el-descriptions :column="2">
             <el-descriptions-item label="航班状态">{{ infoObj.normalState }}</el-descriptions-item>
             <el-descriptions-item label="托运旅客数">{{ infoObj.checked_passengers_number }}</el-descriptions-item>
-            <el-descriptions-item label="中转行李数">{{ infoObj.transfer_baggage_number }}</el-descriptions-item>
+            <el-descriptions-item label="中转行李数">{{ infoObj.transfer_baggage_number }}</el-descriptions-item>
             <el-descriptions-item label="终点行李数">{{ infoObj.destination_bags_number }}</el-descriptions-item>
           </el-descriptions>
         </div>

+ 6 - 1
src/views/table/index.vue

@@ -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);
           }