@@ -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'] }
@@ -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)) {
+ RegExp.$1.length === 1 ? o[k] : ("00" + o[k]).substr(("" + o[k]).length)
+ return fmt;
+};
@@ -141,7 +141,7 @@ export default {
area: '',
airport: [],
terminal: '',
- dateTime: '',
+ dateTime: [],
flightType: '',
baggageType: '',
passengerType: []
@@ -169,7 +169,7 @@ export default {
title: "运送效率报表统计",
- path: "transitTable",
+ path: "transitTables",
title: "中转四个流向统计",
@@ -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 = [
@@ -26,6 +26,7 @@
<script>
@@ -95,6 +96,9 @@ export default {
StatisticsHeader,
Tableformbrs,
+ this.dataContent = ['日','PEK',Format("yyyy-MM-dd",new Date()) ,Format("yyyy-MM-dd",new Date())]
this.dataContent = [];
@@ -89,6 +90,9 @@ export default {
+ 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']
@@ -120,8 +121,12 @@ export default {
+ debugger
data.timedim,
@@ -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',