chenjun vor 2 Jahren
Ursprung
Commit
7ba6cf0e53

+ 5 - 4
src/views/flightStatistics/components/flightStatisticsHeader.vue

@@ -63,7 +63,7 @@
           />
         </template>
       </el-form-item>
-      <el-button size="small" @click="getData()">查询</el-button>
+      <el-button size="small" style="height:33px;border-radius:4px" @click="getData()">查询</el-button>
     </el-form>
   </div>
 </template>
@@ -133,6 +133,7 @@ export default {
             that.formData.airport = "";
             that.formData.terminal = "";
             that.formData.interval = "";
+            that.formData.inOrOut = "";
             that.formItems[4].disabled = true;
             that.formItems[5].disabled = true;
             that.formItems[6].disabled = true;
@@ -170,7 +171,7 @@ export default {
         {
           prop: "interval",
           inputType: "select",
-          placeholder: "请选择时间类型",
+          placeholder: "请选择统计时间维度",
           clearable: true,
           options: [
             {
@@ -414,7 +415,7 @@ export default {
   justify-content: space-between;
   align-items: flex-start;
   .title {
-    margin-right: 24px;
+    // margin-right: 24px;
     padding-left: 16px;
     // min-width: 176px;
     height: 32px;
@@ -440,7 +441,7 @@ export default {
     flex-wrap: wrap;
     > .el-form-item {
       margin-bottom: 24px;
-      // width: 150px;
+      // width: 185px;
       &:not(:last-child) {
         margin-right: 8px;
       }

+ 1 - 0
src/views/flightStatistics/views/flightStatisticsCharts.vue

@@ -267,6 +267,7 @@ export default {
           let max
           let dateArr = []
           let dataArr = []
+          let chainArr = []
           for(let i = 0; i<res.returnData.listValues.length;i++){
             dateArr.push(res.returnData.listValues[i].A)
             dataArr.push(res.returnData.listValues[i].count)