chenrui  2 жил өмнө
parent
commit
2ceda4fa5c

+ 3 - 3
src/router/routes/routes-file-six.js

@@ -227,10 +227,10 @@ const statisticsChartsRoutes = {
               meta: { title: '运送效率报表统计', roles: ['scanning_node_and_location_analysis'] }
             },
             {
-              path: 'transitTable',
-              name: 'TransitTable',
+              path: 'transitTables',
+              name: 'TransitTables',
               hidden: true,
-              component: () => import('@/views/statisticsCharts/views/report/transitTable'),
+              component: () => import('@/views/statisticsCharts/views/report/transitTables'),
               meta: { title: '中转四个流向统计', roles: ['scanning_node_and_location_analysis'] }
             },
             {

+ 28 - 0
src/utils/validate.js

@@ -239,3 +239,31 @@ export const regular = {
   url: /([hH][tT]{2}[pP]:\/\/|[hH][tT]{2}[pP][sS]:\/\/|[wW]{3}.|[wW][aA][pP].|[fF][tT][pP].|[fF][iI][lL][eE].)[-A-Za-z0-9+&@#\/%?=~_|!:,.;]+[-A-Za-z0-9+&@#\/%=~_|]/,
   urlMessage: '请输入正确地址'
 }
+
+export const Format = (fmt, date) => {
+  let o = {
+    "M+": date.getMonth() + 1, // 月份
+    "d+": date.getDate(), // 日
+    "h+": date.getHours(), // 小时
+    "m+": date.getMinutes(), // 分
+    "s+": date.getSeconds(), // 秒
+    "q+": Math.floor((date.getMonth() + 3) / 3), // 季度
+    S: date.getMilliseconds(), // 毫秒
+  };
+  if (/(y+)/.test(fmt)) {
+    fmt = fmt.replace(
+      RegExp.$1,
+      (date.getFullYear() + "").substr(4 - RegExp.$1.length)
+    );
+  }
+  for (var k in o) {
+    if (new RegExp("(" + k + ")").test(fmt)) {
+      fmt = fmt.replace(
+        RegExp.$1,
+        RegExp.$1.length === 1 ? o[k] : ("00" + o[k]).substr(("" + o[k]).length)
+      );
+    }
+  }
+  return fmt;
+};
+

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

@@ -141,7 +141,7 @@ export default {
         area: '',
         airport: [],
         terminal: '',
-        dateTime: '',
+        dateTime: [],
         flightType: '',
         baggageType: '',
         passengerType: []

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

@@ -169,7 +169,7 @@ export default {
               title: "运送效率报表统计",
             },
             {
-              path: "transitTable",
+              path: "transitTables",
               title: "中转四个流向统计",
             },
             {

+ 4 - 0
src/views/statisticsCharts/views/report/baggageProportionTable.vue

@@ -35,6 +35,7 @@
 import StatisticsHeader from "../../components/statisticsHeader.vue";
 // import Tableformcp from "../../components/tableformcp";
 import Tableformbrs from "../../components/tableformbrs";
+import { Format } from "@/utils/validate";
 export default {
   name: "ReportStatistics",
   data() {
@@ -120,6 +121,9 @@ export default {
     // Tableformcp,
     Tableformbrs
   },
+  mounted() {
+    this.dataContent = ['日','日','日','国航','国航','国航','国航',Format("yyyy-MM-dd",new Date()) ,Format("yyyy-MM-dd",new Date()),'PEK']
+  },
   methods: {
     getFormData(data) {
       this.dataContent = [

+ 4 - 0
src/views/statisticsCharts/views/report/rfldTable.vue

@@ -26,6 +26,7 @@
 <script>
 import StatisticsHeader from "../../components/statisticsHeader.vue";
 import Tableformbrs from "../../components/tableformbrs";
+import { Format } from "@/utils/validate";
 export default {
   name: "ReportStatistics",
   data() {
@@ -95,6 +96,9 @@ export default {
     StatisticsHeader,
     Tableformbrs,
   },
+  mounted() {
+    this.dataContent = ['日','PEK',Format("yyyy-MM-dd",new Date()) ,Format("yyyy-MM-dd",new Date())]
+  },
   methods: {
     getFormData(data) {
       this.dataContent = [];

+ 4 - 0
src/views/statisticsCharts/views/report/scanDataTable.vue

@@ -26,6 +26,7 @@
 <script>
 import StatisticsHeader from "../../components/statisticsHeader.vue";
 import Tableformbrs from "../../components/tableformbrs";
+import { Format } from "@/utils/validate";
 export default {
   name: "ReportStatistics",
   data() {
@@ -95,6 +96,9 @@ export default {
     StatisticsHeader,
     Tableformbrs,
   },
+  mounted() {
+    this.dataContent = ['日','PEK',Format("yyyy-MM-dd",new Date()) ,Format("yyyy-MM-dd",new Date())]
+  },
   methods: {
     getFormData(data) {
       this.dataContent = [];

+ 4 - 0
src/views/statisticsCharts/views/report/scanningStatistics.vue

@@ -26,6 +26,7 @@
 <script>
 import StatisticsHeader from "../../components/statisticsHeader.vue";
 import Tableformbrs from "../../components/tableformbrs";
+import { Format } from "@/utils/validate";
 export default {
   name: "ReportStatistics",
   data() {
@@ -89,6 +90,9 @@ export default {
     StatisticsHeader,
     Tableformbrs,
   },
+  mounted() {
+    this.dataContent = ['日','PEK',Format("yyyy-MM-dd",new Date()) ,Format("yyyy-MM-dd",new Date())]
+  },
   methods: {
     getFormData(data) {
       this.dataContent = [];

+ 4 - 0
src/views/statisticsCharts/views/report/transferBaggageTable.vue

@@ -35,6 +35,7 @@
 import StatisticsHeader from "../../components/statisticsHeader.vue";
 // import Tableformcp from "../../components/tableformcp";
 import Tableformbrs from "../../components/tableformbrs";
+import { Format } from "@/utils/validate";
 export default {
   name: "ReportStatistics",
   data() {
@@ -120,6 +121,9 @@ export default {
     // Tableformcp,
     Tableformbrs
   },
+  mounted() {
+    this.dataContent = ['日','日','日','国航','国航','国航','国航',Format("yyyy-MM-dd",new Date()) ,Format("yyyy-MM-dd",new Date()),'PEK',Format("yyyy-MM-dd",new Date()),Format("yyyy-MM-dd",new Date()),'PEK']
+  },
   methods: {
     getFormData(data) {
       this.dataContent = [

+ 4 - 0
src/views/statisticsCharts/views/report/transferDirectionTable.vue

@@ -35,6 +35,7 @@
 import StatisticsHeader from "../../components/statisticsHeader.vue";
 // import Tableformcp from "../../components/tableformcp";
 import Tableformbrs from "../../components/tableformbrs";
+import { Format } from "@/utils/validate";
 export default {
   name: "ReportStatistics",
   data() {
@@ -120,6 +121,9 @@ export default {
     // Tableformcp,
     Tableformbrs
   },
+  mounted() {
+    this.dataContent = ['日','日','日','国航','国航','国航','国航',Format("yyyy-MM-dd",new Date()) ,Format("yyyy-MM-dd",new Date()),'PEK',Format("yyyy-MM-dd",new Date()),Format("yyyy-MM-dd",new Date()),'PEK']
+  },
   methods: {
     getFormData(data) {
       this.dataContent = [

+ 5 - 0
src/views/statisticsCharts/views/report/transitTable.vue → src/views/statisticsCharts/views/report/transitTables.vue

@@ -35,6 +35,7 @@
 import StatisticsHeader from "../../components/statisticsHeader.vue";
 // import Tableformcp from "../../components/tableformcp";
 import Tableformbrs from "../../components/tableformbrs";
+import { Format } from "@/utils/validate";
 export default {
   name: "ReportStatistics",
   data() {
@@ -120,8 +121,12 @@ export default {
     // Tableformcp,
     Tableformbrs
   },
+  mounted() {
+    this.dataContent = ['日','日','日','国航','国航','国航','国航',Format("yyyy-MM-dd",new Date()) ,Format("yyyy-MM-dd",new Date()),'PEK',Format("yyyy-MM-dd",new Date()),Format("yyyy-MM-dd",new Date()),'PEK']
+  },
   methods: {
     getFormData(data) {
+      debugger
       this.dataContent = [
         data.timedim,
         data.timedim,

+ 1 - 1
vue.config.js

@@ -67,7 +67,7 @@ module.exports = {
   },
   chainWebpack(config) {
     // it can improve the speed of the first screen, it is recommended to turn on preload
-    // config.externals({ './cptable': 'var cptable' })
+    config.externals({ './cptable': 'var cptable' })
     config.plugin('preload').tap(() => [
       {
         rel: 'preload',