Browse Source

统计图表-下拉框缩小

zhongxiaoyu 2 years ago
parent
commit
e95a4b5aa5

+ 4 - 3
README-zh.md

@@ -40,9 +40,10 @@ npm run lint -- --fix
 ```
 
 ## 注意
-```bash
-# 表格导出使用的xlsx-style插件需要修改dist/cpexcel.js第807行
+```javascript
+// 表格导出使用的xlsx-style插件需要修改dist/cpexcel.js第807行
 var cpt = require('./cpt' + 'able')
-改成
+// 改成
 var cpt = cptable
 ```
+

+ 11 - 10
src/views/statisticsCharts/components/statisticsHeader.vue

@@ -14,7 +14,7 @@
         :prop="item.prop"
         :label="item.label"
         :style="{
-          width: item.width || '144px'
+          width: item.width || '120px'
         }"
       >
         <template v-if="item.inputType === 'input'">
@@ -149,7 +149,7 @@ export default {
         {
           prop: 'range',
           inputType: 'select',
-          placeholder: '请选择统计范围',
+          placeholder: '统计范围',
           options: [
             {
               value: '全部',
@@ -209,14 +209,14 @@ export default {
         {
           prop: 'inOrOut',
           inputType: 'select',
-          placeholder: '请选择进离港',
+          placeholder: '进离港',
           clearable: true,
           options: []
         },
         {
           prop: 'interval',
           inputType: 'select',
-          placeholder: '统计时间维度',
+          placeholder: '时间维度',
           clearable: true,
           options: [
             {
@@ -247,7 +247,7 @@ export default {
         {
           prop: 'airline',
           inputType: 'select',
-          placeholder: '航线选择',
+          placeholder: '航线',
           filterable: true,
           clearable: true,
           disabled: true,
@@ -258,7 +258,7 @@ export default {
         {
           prop: 'area',
           inputType: 'select',
-          placeholder: '基地分公司选择',
+          placeholder: '基地分公司',
           filterable: true,
           clearable: true,
           disabled: true,
@@ -269,7 +269,7 @@ export default {
         {
           prop: 'airport',
           inputType: 'select',
-          placeholder: '航站选择',
+          placeholder: '航站',
           filterable: true,
           clearable: true,
           // multiple: true,
@@ -281,7 +281,7 @@ export default {
         {
           prop: 'terminal',
           inputType: 'select',
-          placeholder: '航站楼选择',
+          placeholder: '航站楼',
           filterable: true,
           props: {
             multiple: true
@@ -415,14 +415,15 @@ export default {
   justify-content: space-between;
   align-items: flex-start;
   .title {
-    // margin-right: 24px;
+    margin-right: 24px;
     padding-left: 16px;
-    min-width: 190px;
+    // min-width: 190px;
     height: 32px;
     line-height: 32px;
     font-size: 18px;
     font-family: Helvetica, 'Microsoft YaHei';
     font-weight: bold;
+    white-space: nowrap;
     position: relative;
     &::before {
       content: '';

+ 1 - 1
src/views/statisticsCharts/components/statisticsTabs.vue

@@ -180,7 +180,7 @@ export default {
 .statistics-tabs {
   > .el-row > .el-col {
     max-width: 232px;
-    min-width: 186px;
+    min-width: 175px;
     .el-dropdown {
       width: 100%;
     }

+ 1 - 1
src/views/statisticsCharts/components/tableform.vue

@@ -420,7 +420,7 @@ export default {
 .statistics-tabs {
   > .el-row > .el-col {
     max-width: 232px;
-    min-width: 186px;
+    min-width: 175px;
     .el-dropdown {
       width: 100%;
     }

+ 1 - 1
src/views/statisticsCharts/mixins/noTerminal.js

@@ -7,7 +7,7 @@ export default {
           replaceNum: 1,
           prop: 'range',
           inputType: 'select',
-          placeholder: '请选择统计范围',
+          placeholder: '统计范围',
           options: [
             {
               value: '全部',

+ 1 - 1
src/views/statisticsCharts/views/baggageStatisticsCharts.vue

@@ -23,7 +23,7 @@ export default {
         {
           prop: 'baggageType',
           inputType: 'select',
-          placeholder: '请选择行李类型',
+          placeholder: '行李类型',
           requiredWarning: '请先选择行李类型',
           clearable: true,
           options: [

+ 2 - 2
src/views/statisticsCharts/views/flightStatisticsCharts.vue

@@ -23,8 +23,8 @@ export default {
         {
           prop: 'flightType',
           inputType: 'select',
-          placeholder: '请选择航班类型',
-          requiredWarning: '请先选择航班类型',
+          placeholder: '航班属性',
+          requiredWarning: '请先选择航班属性',
           clearable: true,
           options: [
             {

+ 4 - 4
src/views/statisticsCharts/views/nodeStatisticsCharts.vue

@@ -91,7 +91,7 @@ export default {
         {
           prop: 'range',
           inputType: 'select',
-          placeholder: '请选择统计范围',
+          placeholder: '统计范围',
           options: [],
           queryId: DATACONTENT_ID.nodeRange,
           setKey: 'a1',
@@ -117,7 +117,7 @@ export default {
         {
           prop: 'airline',
           inputType: 'select',
-          placeholder: '航线选择',
+          placeholder: '航线',
           filterable: true,
           clearable: true,
           disabled: true,
@@ -128,7 +128,7 @@ export default {
         {
           prop: 'airport',
           inputType: 'select',
-          placeholder: '航站选择',
+          placeholder: '航站',
           filterable: true,
           clearable: true,
           // multiple: true,
@@ -140,7 +140,7 @@ export default {
         {
           prop: 'inOrOut',
           inputType: 'select',
-          placeholder: '请选择进离港',
+          placeholder: '进离港',
           clearable: true,
           options: []
         },