chenrui  2 жил өмнө
parent
commit
59181acd64

+ 20 - 5
src/views/securityCheck/components/securityCheckHeader.vue

@@ -67,7 +67,11 @@
       </template>
       <template v-if="withSelect">
         <a-form-item prop="selection" style="margin-right: 16px">
-          <a-select :placeholder="selectPlaceholder" @change="handleChange">
+          <a-select
+            :placeholder="selectPlaceholder"
+            :value="formData.selection ? formData.selection : undefined"
+            @change="handleChange"
+          >
             <a-select-option
               v-for="item in optionLists"
               :key="item.name"
@@ -339,16 +343,27 @@ export default {
     if (Object.keys(this.$route.query).length == 0) {
       this.formData.dateRangeRadio = "当日";
     } else {
+      console.log(this.$route.query);
       this.formData.beginDate = this.$route.query.startTime;
       this.formData.endDate = this.$route.query.endTime;
-      this.formData.selection = this.$route.query.levelId;
-      this.formData.searchText = this.$route.query.proxyId;
-      this.formData.agentLevel = this.$route.query.agentLevel;
-      this.formData.agentCode = this.$route.query.agentCode;
+      // this.formData.selection = this.$route.query.levelId
+      //   ? this.$route.query.levelId
+      //   : this.$route.query.agentLevel;
+      this.formData.selection = this.$route.query.destination
+        ? this.$route.query.destination
+        : this.$route.query.levelId
+        ? this.$route.query.levelId
+        : this.$route.query.agentLevel;
+      this.formData.searchText = this.$route.query.proxyId
+        ? this.$route.query.proxyId
+        : this.$route.query.agentCode;
+      // this.formData.agentLevel = this.$route.query.agentLevel;
+      // this.formData.agentCode = this.$route.query.agentCode;
     }
   },
   methods: {
     handleChange(data) {
+      console.log(data);
       this.formData.selection = data;
     },
     change() {

+ 1 - 1
src/views/securityCheck/views/cargoCharts.vue

@@ -200,7 +200,7 @@ export default {
       this.queryData = {
         startTime: data[0][0],
         endTime: data[0][1],
-        riskRating: data[1],
+        destination: data[1],
         agentCode: data[2],
       };
       this.relationDate();

+ 0 - 1
src/views/securityCheck/views/cargoRelevanceTable.vue

@@ -270,7 +270,6 @@ export default {
             };
             this.destination.push(obj);
           });
-          console.log(this.destination);
         }
       } catch (error) {
         console.log(error);