chenrui  1 년 전
부모
커밋
4006dcba67

+ 2 - 2
public/staticConfig.js

@@ -9,8 +9,8 @@ window.PLATFROM_CONFIG = {
   editRule: /^(?=.*\d)(?=.*[a-zA-Z])(?=.*[`!@#$%^&*()_+{}":?><`,./';=-])[\da-zA-Z`!@#$%^&*()_+{}":?><`,./';=-]{8,}$/
 }
 
-// const baseNewUrl = window.location.hostname
-const baseNewUrl = '10.211.67.177'
+const baseNewUrl = window.location.hostname
+// const baseNewUrl = '10.211.67.177'
 switch (baseNewUrl) {
   case '10.211.66.23':
     PLATFROM_CONFIG = {

+ 11 - 0
src/router/routes/routes-file-temp.js

@@ -398,6 +398,17 @@ const statisticsChartsRoutes = {
                 roles: ['scanning_node_and_location_analysis'],
               },
             },
+            {
+              path: 'Percentageofbaggage',
+              name: 'Percentageofbaggage',
+              hidden: true,
+              component: () =>
+                import('@/views/statisticsCharts/views/report/Percentageofbaggage'),
+              meta: {
+                title: '行李全流程服务水平百分比',
+                roles: ['scanning_node_and_location_analysis'],
+              },
+            },
           ],
         },
         {

+ 4 - 0
src/views/statisticsCharts/components/statisticsTabs.vue

@@ -209,6 +209,10 @@ export default {
               path: 'rfldTable',
               title: '航易行RFID扫描数据统计表',
             },
+            {
+              path: 'Percentageofbaggage',
+              title: '行李全流程服务水平百分比',
+            },
           ],
         },
         {

+ 28 - 0
src/views/statisticsCharts/components/tableformbrs.vue

@@ -1094,6 +1094,30 @@
           </el-table-column>
         </el-table>
       </template>
+      <template v-else-if="tableData.length && upid == 8">
+        <el-table
+          :data="tableData"
+          style="width: 100%"
+          :show-summary="true"
+          ref="userTableData"
+        >
+          <el-table-column
+            prop="bpm"
+            label="有BPM行李数量"
+          >
+          </el-table-column>
+          <el-table-column
+            prop="bsm"
+            label="总数量"
+          >
+          </el-table-column>
+          <el-table-column
+            prop="lv"
+            label="行李全流程跟踪服务水平(%)"
+          >
+          </el-table-column>
+        </el-table>
+      </template>
       <template v-else>
         <NoData
           image-width="auto"
@@ -1443,6 +1467,10 @@ export default {
 
 
 
+            });
+          } else if (this.upid == 8) {
+            this.tableData.forEach(element => {
+              element.lv = element.lv.toFixed(2)
             });
           }
           // setTimeout(() => {

+ 110 - 0
src/views/statisticsCharts/views/report/Percentageofbaggage.vue

@@ -0,0 +1,110 @@
+<template>
+  <!-- 行李全流程服务水平百分比 -->
+  <div class="statstics-wrapper">
+    <StatisticsHeader title="行李全流程服务水平百分比" :items="formItems" :data.sync="formData" with-setting :withSetting="false" @export="exportup" @getFormData="getFormData" />
+    <!-- <Tableformcp
+      :isloadings="isloadings"
+      :rows="12"
+      label-width="140px"
+      :min-height="70"
+      width="800px"
+      tableHeight="750"
+    /> -->
+    <Tableformbrs :data-id="dataId" upid="8" :textShow="textShow" :isloadings="isloadings" :data-content="dataContent" :rows="12" label-width="140px" :min-height="70" width="800px" tableHeight="750"/>
+  </div>
+</template>
+<script>
+import StatisticsHeader from '../../components/statisticsHeader.vue'
+// import Tableformcp from "../../components/tableformcp";
+import Tableformbrs from '../../components/tableformbrs'
+import TableDialog from '../../components/TableDialog.vue'
+import { Format } from '@/utils/validate'
+export default {
+  name: 'ReportStatistics',
+  data () {
+    return {
+      textShow: null,
+      formData: {
+        airport: '',
+        dateTime: [],
+        company: '',
+        timedim: '',
+        trd: [],
+      },
+      isloadings: 1,
+      dataContent: [],
+      dataId: '1847',
+      formItems: [
+        {
+          prop: 'dateTime',
+          inputType: 'datePicker',
+          clearable: true,
+          width: '240px',
+          options: [],
+        },
+      ],
+      dialogFlag: false,
+      dialogTitle: '',
+      queryParams: [],
+    }
+  },
+  components: {
+    StatisticsHeader,
+    // Tableformcp,
+    Tableformbrs,
+    TableDialog,
+  },
+  mounted () {
+    this.dataContent = [
+      this.formData.dateTime[0] || Format('yyyy-MM-dd', new Date()),
+      this.formData.dateTime[1] || Format('yyyy-MM-dd', new Date()),
+    ]
+  },
+  methods: {
+    getFormData (data) {
+      this.textShow = data.trd
+      this.dataContent = [
+        data.dateTime[0],
+        data.dateTime[1]
+      ]
+    },
+    exportup () {
+      this.isloadings = this.isloadings += 1
+    },
+    cellClickHandler (row, column, cell, event) {
+      if (
+        column.property.includes('trans_bag') &&
+        row[column.property] &&
+        Number(row[column.property])
+      ) {
+        const queryParams = [
+          this.formData.airport || 'PEK',
+          row.fd || Format('yyyy-MM-dd', new Date()),
+          row.fd || Format('yyyy-MM-dd', new Date()),
+          ...Array(4).fill(this.formData.company || '国航'),
+        ]
+        const flow = column.property
+          .split('_')
+          .pop()
+          .toUpperCase()
+          .split('')
+          .join('-')
+        queryParams.push(...Array(4).fill(flow))
+        queryParams.push(...Array(4).fill(null))
+        const processMap = {
+          need: '需中转',
+          finish: '已中转',
+          not: '未中转',
+        }
+        const process = processMap[column.property.split('_')[0]]
+        queryParams.push(...Array(3).fill(process))
+        // console.log(queryParams)
+        this.queryParams = queryParams
+        this.dialogTitle = column.label
+        this.dialogFlag = true
+      }
+    },
+  },
+}
+</script>
+<style lang="scss" scoped></style>