{"remainingRequest":"D:\\jenkins\\workspace\\sfz-lh-fvue\\node_modules\\thread-loader\\dist\\cjs.js!D:\\jenkins\\workspace\\sfz-lh-fvue\\node_modules\\babel-loader\\lib\\index.js!D:\\jenkins\\workspace\\sfz-lh-fvue\\node_modules\\cache-loader\\dist\\cjs.js??ref--0-0!D:\\jenkins\\workspace\\sfz-lh-fvue\\node_modules\\vue-loader\\lib\\index.js??vue-loader-options!D:\\jenkins\\workspace\\sfz-lh-fvue\\src\\views\\BigScreen\\trafficReportAI.vue?vue&type=script&lang=js&","dependencies":[{"path":"D:\\jenkins\\workspace\\sfz-lh-fvue\\src\\views\\BigScreen\\trafficReportAI.vue","mtime":1712171298752},{"path":"D:\\jenkins\\workspace\\sfz-lh-fvue\\node_modules\\cache-loader\\dist\\cjs.js","mtime":499162500000},{"path":"D:\\jenkins\\workspace\\sfz-lh-fvue\\node_modules\\thread-loader\\dist\\cjs.js","mtime":499162500000},{"path":"D:\\jenkins\\workspace\\sfz-lh-fvue\\node_modules\\babel-loader\\lib\\index.js","mtime":315532800000},{"path":"D:\\jenkins\\workspace\\sfz-lh-fvue\\node_modules\\cache-loader\\dist\\cjs.js","mtime":499162500000},{"path":"D:\\jenkins\\workspace\\sfz-lh-fvue\\node_modules\\vue-loader\\lib\\index.js","mtime":499162500000}],"contextDependencies":[],"result":["//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\nimport headline from \"./headlineAI.vue\";\nimport report from '@/api/DataReport/Report.js';\nimport moment from 'moment';\nexport default {\n components: {\n headline: headline\n },\n name: 'trafficReportAI',\n data: function data() {\n return {\n tableLoading: false,\n tableData: [],\n column: [{\n name: '日期',\n key: 'transDate'\n }, {\n name: '出口(辆)',\n key: 'exitusTrafficVolume'\n }, // {\n // name: '出口日均',\n // key: 'augExitusTrafficVolume',\n // },\n {\n name: '出口同比',\n key: 'exitusYOY'\n }, {\n name: '出口环比',\n key: 'exitusQOQ'\n }, {\n name: '入口(辆)',\n key: 'inletTrafficVolume'\n }, // {\n // name: '入口日均',\n // key: 'augInletTrafficVolume',\n // },\n {\n name: '入口同比',\n key: 'inletYOY'\n }, {\n name: '入口比',\n key: 'inletQOQ'\n }, {\n name: '出入口(辆)',\n key: 'allTrafficVolume'\n }, // {\n // name: '出入口日均',\n // key: 'augAllTrafficVolume',\n // },\n {\n name: '出入口同比',\n key: 'allYOY'\n }, {\n name: '出入口环比',\n key: 'allQOQ'\n }]\n };\n },\n mounted: function mounted() {},\n activated: function activated() {// this.getData()\n },\n methods: {\n getData: function getData() {\n var _this = this;\n\n this.tableLoading = true;\n var startDate = moment().startOf('month').format('YYYY-MM-DD HH:mm:ss');\n var endDate = moment().startOf('month').subtract('month', -1).format('YYYY-MM-DD HH:mm:ss');\n this.tollStationId = sessionStorage.getItem('tollStationId');\n this.params = {\n pageBean: {\n page: 1,\n pageSize: -1,\n total: 0\n },\n querys: [{\n group: 'main',\n operation: 'LIKE',\n parentGroup: '',\n property: 'toll_station_id_',\n relation: 'AND',\n value: this.tollStationId\n }, {\n group: 'main',\n operation: 'BETWEEN',\n parentGroup: '',\n property: 'transDate',\n relation: 'AND',\n value: [startDate, endDate]\n }]\n };\n report.querytrafficVolume(this.params).then(function (res) {\n _this.tableData = res.value || [];\n }).finally(function () {\n _this.tableLoading = false;\n });\n }\n }\n};",null]}