Bläddra i källkod

统计图表数据问题修改

zhongxiaoyu 1 år sedan
förälder
incheckning
f376488d01

+ 2 - 2
src/views/statisticsCharts/components/commonBarStatisticsCharts.vue

@@ -329,7 +329,7 @@ export default {
           dataContent: [params]
         })
         if (Number(code) === 0) {
-          return returnData
+          return returnData.listValues || returnData
         } else {
           return Promise.reject(message || '失败')
         }
@@ -357,7 +357,7 @@ export default {
         this.$message.info('未查询到对应数据')
         return
       }
-      console.log(this.admin)
+      // console.log(this.admin)
       if (this.admin.io === '进港') {
         this.seriesKey = 'in_num'
       } else if (this.admin.io === '离港') {

+ 15 - 10
src/views/statisticsCharts/views/airlineCompany/baggagePassengerStatisticsCharts.vue

@@ -1,5 +1,10 @@
 <template>
-  <CommonBarStatisticsCharts charts-title="航线行李量" :query-settings="querySettings" :formItems="formItems" :formData="formData" />
+  <CommonBarStatisticsCharts
+    charts-title="航线行李量"
+    :query-settings="querySettings"
+    :formItems="formItems"
+    :formData="formData"
+  />
 </template>
 
 <script>
@@ -7,14 +12,14 @@ import CommonBarStatisticsCharts from '../../components/commonBarStatisticsChart
 export default {
   name: 'BaggagePassengerStatisticsCharts',
   components: { CommonBarStatisticsCharts },
-  data () {
+  data() {
     return {
       querySettings: {
-        serviceId: SERVICE_ID.LuggagecId
+        serviceId: SERVICE_ID.LuggagecId,
       },
       formData: {
         air_line: null,
-        iata_code: null,
+        // iata_code: null,
         dateTime: [],
         timedim: '',
       },
@@ -23,19 +28,20 @@ export default {
           prop: 'air_line',
           inputType: 'select',
           placeholder: '航线',
+          requiredWarning: '请先选择航线',
           filterable: true,
-          clearable: true,
+          // clearable: true,
           width: '180px',
           queryId: SERVICE_ID.AirlineIds,
           setKey: 'air_line',
-          options: []
+          options: [],
         },
         {
           prop: 'timedim',
           inputType: 'select',
           placeholder: '行李类型',
           requiredWarning: '请先选择行李类型',
-          clearable: true,
+          // clearable: true,
           options: [
             {
               value: '正常',
@@ -50,12 +56,11 @@ export default {
         {
           prop: 'dateTime',
           inputType: 'datePicker',
-          clearable: true,
+          // clearable: true,
           width: '240px',
-          options: [],
         },
       ],
     }
-  }
+  },
 }
 </script>

+ 14 - 9
src/views/statisticsCharts/views/airlineCompany/baggageStatisticsCharts.vue

@@ -1,5 +1,10 @@
 <template>
-  <CommonBarStatisticsCharts charts-title="航司行李量" :query-settings="querySettings" :formItems="formItems" :formData="formData" />
+  <CommonBarStatisticsCharts
+    charts-title="航司行李量"
+    :query-settings="querySettings"
+    :formItems="formItems"
+    :formData="formData"
+  />
 </template>
 
 <script>
@@ -7,10 +12,10 @@ import CommonBarStatisticsCharts from '../../components/commonBarStatisticsChart
 export default {
   name: 'BaggageStatisticsCharts',
   components: { CommonBarStatisticsCharts },
-  data () {
+  data() {
     return {
       querySettings: {
-        serviceId: SERVICE_ID.LuggagecId
+        serviceId: SERVICE_ID.LuggagecId,
       },
       formData: {
         iata_code: null,
@@ -22,21 +27,22 @@ export default {
           prop: 'iata_code',
           inputType: 'select',
           placeholder: '航司',
+          requiredWarning: '请先选择航司',
           width: '150px',
           filterable: true,
-          clearable: true,
+          // clearable: true,
           // multiple: true,
           // disabled: true,
           queryId: SERVICE_ID.AirlinportId,
           setKey: 'ITATCode',
-          options: []
+          options: [],
         },
         {
           prop: 'timedim',
           inputType: 'select',
           placeholder: '行李类型',
           requiredWarning: '请先选择行李类型',
-          clearable: true,
+          // clearable: true,
           options: [
             {
               value: '正常',
@@ -51,12 +57,11 @@ export default {
         {
           prop: 'dateTime',
           inputType: 'datePicker',
-          clearable: true,
+          // clearable: true,
           width: '240px',
-          options: [],
         },
       ],
     }
-  }
+  },
 }
 </script>

+ 16 - 12
src/views/statisticsCharts/views/airlineCompany/flightStatisticsCharts.vue

@@ -1,5 +1,10 @@
 <template>
-  <CommonBarStatisticsCharts charts-title="行李进港数量" :query-settings="querySettings" :formItems="formItems" :formData="formData" />
+  <CommonBarStatisticsCharts
+    charts-title="行李进港数量"
+    :query-settings="querySettings"
+    :formItems="formItems"
+    :formData="formData"
+  />
 </template>
 
 <script>
@@ -7,13 +12,13 @@ import CommonBarStatisticsCharts from '../../components/commonBarStatisticsChart
 export default {
   name: 'FlightStatisticsCharts',
   components: { CommonBarStatisticsCharts },
-  data () {
+  data() {
     return {
       querySettings: {
-        serviceId: SERVICE_ID.LuggageInId
+        serviceId: SERVICE_ID.LuggageInId,
       },
       formData: {
-        airport: '',
+        airport: 'CAN',
         dateTime: [],
         io: '',
       },
@@ -24,19 +29,18 @@ export default {
           placeholder: '航站',
           width: '150px',
           filterable: true,
-          clearable: true,
-          // multiple: true,
-          // disabled: true,
+          // clearable: true,
+          requiredWarning: '请先选择航站',
           queryId: SERVICE_ID.AirportIds,
           setKey: 'code3',
-          options: []
+          options: [],
         },
         {
           prop: 'io',
           inputType: 'select',
           placeholder: '进出港',
           requiredWarning: '请先选择进出港',
-          clearable: true,
+          // clearable: true,
           options: [
             {
               value: '离港',
@@ -55,12 +59,12 @@ export default {
         {
           prop: 'dateTime',
           inputType: 'datePicker',
-          clearable: true,
+          // clearable: true,
           width: '240px',
-          options: [],
+          requiredWarning: '请先选择统计时间范围',
         },
       ],
     }
-  }
+  },
 }
 </script>

+ 15 - 10
src/views/statisticsCharts/views/airlineCompany/hourPassengerStatisticsCharts.vue

@@ -1,5 +1,10 @@
 <template>
-  <CommonBarStatisticsCharts charts-title="行李小时量数量" :query-settings="querySettings" :formItems="formItems" :formData="formData" />
+  <CommonBarStatisticsCharts
+    charts-title="行李小时量数量"
+    :query-settings="querySettings"
+    :formItems="formItems"
+    :formData="formData"
+  />
 </template>
 
 <script>
@@ -7,13 +12,13 @@ import CommonBarStatisticsCharts from '../../components/commonBarStatisticsChart
 export default {
   name: 'FlightStatisticsCharts',
   components: { CommonBarStatisticsCharts },
-  data () {
+  data() {
     return {
       querySettings: {
-        serviceId: SERVICE_ID.LuggageHourId
+        serviceId: SERVICE_ID.LuggageHourId,
       },
       formData: {
-        airport: '',
+        airport: 'CAN',
         dateTime: [],
         io_type: '',
       },
@@ -22,21 +27,22 @@ export default {
           prop: 'airport',
           inputType: 'select',
           placeholder: '航站',
+          requiredWarning: '请先选择航站',
           width: '150px',
           filterable: true,
-          clearable: true,
+          // clearable: true,
           // multiple: true,
           // disabled: true,
           queryId: SERVICE_ID.AirportIds,
           setKey: 'code3',
-          options: []
+          options: [],
         },
         {
           prop: 'io_type',
           inputType: 'select',
           placeholder: '进出港',
           requiredWarning: '请先选择进出港',
-          clearable: true,
+          // clearable: true,
           options: [
             {
               value: '离港',
@@ -55,12 +61,11 @@ export default {
         {
           prop: 'dateTime',
           inputType: 'datePicker',
-          clearable: true,
+          // clearable: true,
           width: '240px',
-          options: [],
         },
       ],
     }
-  }
+  },
 }
 </script>