Bläddra i källkod

修改业务节点检测

zhaoke 1 år sedan
förälder
incheckning
66d3f0c95e

+ 3 - 5
src/views/statisticalanalysis/components/echart/tableforms.vue

@@ -343,8 +343,6 @@
       </template>
       <template v-if="tableList.length && action == 16">
         <el-table :data="tableList" style="width: 100%" :row-style="rowStyle" :header-row-style="rowStyle" :style="dataTableContentStyle" height="calc(100vh - 236px)" max-height="calc(100vh - 236px)" :stripe="tableProps.stripe" :row-key="tableProps.rowKey" :highlight-current-row="tableProps.highlightCurrentRow" :header-cell-class-name="tableProps.headerCellClassName" :tooltip-effect="tableProps.tooltipEffect" :summary-method="totalOutPrice" :show-summary="tableProps.showSummary" :header-cell-style="{ background: '#F9FAFC' }">
-          <el-table-column prop="flight_date" label="日期" :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip" :align="tableColumnProperty.align">
-          </el-table-column>
           <el-table-column prop="allflight" label="总航班数" class-name="elChgTbeClmn" :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip" :align="tableColumnProperty.align">
             <template #header>
               <div class="elHeadCon">
@@ -374,14 +372,12 @@
       </template>
       <template v-if="tableList.length && action == 17">
         <el-table :data="tableList" style="width: 100%" :row-style="rowStyle" :header-row-style="rowStyle" :style="dataTableContentStyle" height="calc(100vh - 236px)" max-height="calc(100vh - 236px)" :stripe="tableProps.stripe" :row-key="tableProps.rowKey" :highlight-current-row="tableProps.highlightCurrentRow" :header-cell-class-name="tableProps.headerCellClassName" :tooltip-effect="tableProps.tooltipEffect" :summary-method="totalOutPrice" :show-summary="tableProps.showSummary" :header-cell-style="{ background: '#F9FAFC' }">
-          <el-table-column prop="flight_date" label="日期" :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip" :align="tableColumnProperty.align">
-          </el-table-column>
           <el-table-column prop="allstock" label="总运单数" class-name="elChgTbeClmn" :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip" :align="tableColumnProperty.align">
             <template #header>
               <div class="elHeadCon">
                 <div class="headerCon1">总运单数</div>
                 <div class="headerCon2">问题类型</div>
-                <div style="transform: rotate(-53deg);" class="headerLine"></div>
+                <div class="headerLine"></div>
               </div>
             </template>
           </el-table-column>
@@ -457,6 +453,8 @@
         <el-table :data="tableList" style="width: 100%" :row-style="rowStyle" :header-row-style="rowStyle" :style="dataTableContentStyle" height="calc(100vh - 236px)" max-height="calc(100vh - 236px)" :stripe="tableProps.stripe" :row-key="tableProps.rowKey" :highlight-current-row="tableProps.highlightCurrentRow" :header-cell-class-name="tableProps.headerCellClassName" :tooltip-effect="tableProps.tooltipEffect" :header-cell-style="{ background: '#F9FAFC' }">
           <el-table-column prop="flight_all_no" label="航班号" :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip" :align="tableColumnProperty.align">
           </el-table-column>
+          <el-table-column prop="flight_date" label="航班日期" :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip" :align="tableColumnProperty.align">
+          </el-table-column>
           <el-table-column prop="stock_code" label="运单号" :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip" :align="tableColumnProperty.align">
           </el-table-column>
           <el-table-column prop="index_class" label="指标分类" :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip" :align="tableColumnProperty.align">

+ 110 - 50
src/views/statisticalanalysis/dataException/views/detail.vue

@@ -126,41 +126,17 @@ export default {
         {
           prop: "flighttype",
           inputType: "select",
-          placeholder: "节点名称",
+          placeholder: "二级部门",
+          clearable: true,
+          options: [
+          ],
+        },
+        {
+          prop: "flightno",
+          inputType: "input",
+          placeholder: "请输入航班号",
           clearable: true,
           options: [
-            {
-              value: "安检",
-              label: "安检",
-            },
-            {
-              value: "货站交接",
-              label: "货站交接",
-            },
-            {
-              value: "交接复核",
-              label: "交接复核",
-            },
-            {
-              value: "库区到达",
-              label: "库区到达",
-            },
-            {
-              value: "机下交接",
-              label: "机下交接",
-            },
-            {
-              value: "装机",
-              label: "装机",
-            },
-            {
-              value: "关闭舱门",
-              label: "关闭舱门",
-            },
-            {
-              value: "卸机",
-              label: "卸机",
-            },
           ],
         },
         {
@@ -187,27 +163,35 @@ export default {
     newObj: {
       deep: true,
       handler (newVal) {
-        const { fttp, flighttype } = newVal
-        if (fttp && !flighttype) {
-          const datas = this.tableList.filter(item => item.index_class == fttp)
-          this.tableListcop = _.chunk(datas, 10)
-          this.tableNewList = this.tableListcop[0]
-          this.total = datas.length
-        } else if (!fttp && flighttype) {
-          const datas = this.tableList.filter(item => item.node == flighttype)
-          this.tableListcop = _.chunk(datas, 10)
-          this.tableNewList = this.tableListcop[0]
-          this.total = datas.length
-        } else if (fttp && flighttype) {
-          const datas = this.tableList.filter(item => item.node == flighttype && item.index_class == fttp)
+        const { fttpId, fttp, flighttype, flightno } = newVal
+        this.setClub(fttpId)
+        if (flightno) {
+          const datas = this.tableList.filter(item => item.flight_all_no == flightno)
           this.tableListcop = _.chunk(datas, 10)
           this.tableNewList = this.tableListcop[0]
           this.total = datas.length
         } else {
-          const datas = this.tableList
-          this.tableListcop = _.chunk(datas, 10)
-          this.tableNewList = this.tableListcop[0]
-          this.total = datas.length
+          if (fttp && !flighttype) {
+            const datas = this.tableList.filter(item => item.index_class == fttp)
+            this.tableListcop = _.chunk(datas, 10)
+            this.tableNewList = this.tableListcop[0]
+            this.total = datas.length
+          } else if (!fttp && flighttype) {
+            const datas = this.tableList.filter(item => item.second_department == flighttype)
+            this.tableListcop = _.chunk(datas, 10)
+            this.tableNewList = this.tableListcop[0]
+            this.total = datas.length
+          } else if (fttp && flighttype) {
+            const datas = this.tableList.filter(item => item.second_department == flighttype && item.index_class == fttp)
+            this.tableListcop = _.chunk(datas, 10)
+            this.tableNewList = this.tableListcop[0]
+            this.total = datas.length
+          } else {
+            const datas = this.tableList
+            this.tableListcop = _.chunk(datas, 10)
+            this.tableNewList = this.tableListcop[0]
+            this.total = datas.length
+          }
         }
       },
     },
@@ -250,6 +234,82 @@ export default {
         data.dateTime;
       this.listHeader = ["序号", "时间", "航班(班)", "环比(%)"];
     },
+    setClub (id) {
+      switch (id) {
+        case 52233:
+          this.formItems[2].options = [
+            {
+              label: '货邮检查一大队',
+              value: '货邮检查一大队'
+            },
+            {
+              label: '运输部(万事通)',
+              value: '运输部(万事通)'
+            },
+            {
+              label: '装卸部(美华)',
+              value: '装卸部(美华)'
+            }
+          ]
+          break;
+        case 52234:
+          this.formItems[2].options = [
+            {
+              label: '国内进港部',
+              value: '国内进港部'
+            },
+            {
+              label: '运输部(万事通)',
+              value: '运输部(万事通)'
+            },
+            {
+              label: '装卸部(美华)',
+              value: '装卸部(美华)'
+            }
+          ]
+          break;
+        case 52235:
+          this.formItems[2].options = [
+            {
+              label: '龙略',
+              value: '龙略'
+            }
+          ]
+          break;
+        case 52236:
+          this.formItems[2].options = [
+            {
+              label: '操作二部',
+              value: '操作二部'
+            },
+            {
+              label: '货机装载组',
+              value: '货机装载组'
+            },
+            {
+              label: '龙略',
+              value: '龙略'
+            }
+          ]
+          break;
+        default:
+          this.formItems[2].options = [
+            {
+              label: '货邮检查一大队',
+              value: '货邮检查一大队'
+            },
+            {
+              label: '运输部(万事通)',
+              value: '运输部(万事通)'
+            },
+            {
+              label: '装卸部(美华)',
+              value: '装卸部(美华)'
+            }
+          ]
+          break;
+      }
+    },
     //获取表格数据
     async getQuery (id, data, dat) {
       this.loading = true

+ 3 - 7
src/views/statisticalanalysis/dataException/views/dimension.vue

@@ -116,15 +116,11 @@ export default {
         },
         {
           prop: "dateTime",
-          inputType: "erdatime",
+          inputType: "datePicker",
           requiredWarning: "请先选择日期",
           clearable: true,
           width: "240px",
           options: [],
-          haveDisabled: true,
-          disabledDate: function (time) {
-            return !(time.getTime() < Date.now() - 3600 * 1000 * 24)
-          }
         },
       ],
       newObj: {}
@@ -150,8 +146,8 @@ export default {
       let option = [
         {
           flighttype: data.flighttype,
-          fd1: data.dateTime,
-          fd2: data.dateTime
+          fd1: data.dateTime[0],
+          fd2: data.dateTime[1]
         },
       ];
       this.getQuery(data.fttp, option, null);

+ 3 - 7
src/views/statisticalanalysis/dataException/views/flight.vue

@@ -116,15 +116,11 @@ export default {
         },
         {
           prop: "dateTime",
-          inputType: "erdatime",
+          inputType: "datePicker",
           requiredWarning: "请先选择日期",
           clearable: true,
           width: "240px",
           options: [],
-          haveDisabled: true,
-          disabledDate: function (time) {
-            return !(time.getTime() < Date.now() - 3600 * 1000 * 24)
-          }
         },
       ],
     };
@@ -148,8 +144,8 @@ export default {
       let option = [
         {
           flighttype: data.flighttype,
-          fd1: data.dateTime,
-          fd2: data.dateTime
+          fd1: data.dateTime[0],
+          fd2: data.dateTime[1]
         },
       ];
       this.getQuery(data.fttp, option, null);

+ 3 - 7
src/views/statisticalanalysis/dataException/views/waybill.vue

@@ -116,15 +116,11 @@ export default {
         },
         {
           prop: "dateTime",
-          inputType: "erdatime",
+          inputType: "datePicker",
           requiredWarning: "请先选择日期",
           clearable: true,
           width: "240px",
           options: [],
-          haveDisabled: true,
-          disabledDate: function (time) {
-            return !(time.getTime() < Date.now() - 3600 * 1000 * 24)
-          }
         },
       ],
     };
@@ -148,8 +144,8 @@ export default {
       let option = [
         {
           flighttype: data.flighttype,
-          fd1: data.dateTime,
-          fd2: data.dateTime
+          fd1: data.dateTime[0],
+          fd2: data.dateTime[1]
         },
       ];
       this.getQuery(data.fttp, option, null);