1 line
7.2 KiB
JSON
1 line
7.2 KiB
JSON
{"remainingRequest":"D:\\视频边缘1215\\TransFlow\\node_modules\\vue-loader\\lib\\index.js??vue-loader-options!D:\\视频边缘1215\\TransFlow\\src\\components\\target\\headWayChart.vue?vue&type=style&index=0&id=3a3b80e6&scoped=true&lang=css&","dependencies":[{"path":"D:\\视频边缘1215\\TransFlow\\src\\components\\target\\headWayChart.vue","mtime":1673243248432},{"path":"D:\\视频边缘1215\\TransFlow\\node_modules\\css-loader\\dist\\cjs.js","mtime":499162500000},{"path":"D:\\视频边缘1215\\TransFlow\\node_modules\\vue-loader\\lib\\loaders\\stylePostLoader.js","mtime":1671074747916},{"path":"D:\\视频边缘1215\\TransFlow\\node_modules\\postcss-loader\\src\\index.js","mtime":1671074746320},{"path":"D:\\视频边缘1215\\TransFlow\\node_modules\\cache-loader\\dist\\cjs.js","mtime":1671074740928},{"path":"D:\\视频边缘1215\\TransFlow\\node_modules\\vue-loader\\lib\\index.js","mtime":1671074747916}],"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\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\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\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.typeContent {\n box-sizing: border-box;\n}\n\n.border {\n width: 100%;\n margin-bottom: 20px;\n position: relative;\n}\n",{"version":3,"sources":["headWayChart.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAqJA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA","file":"headWayChart.vue","sourceRoot":"src/components/target","sourcesContent":["<template>\n <div class=\"setion\">\n <p class=\"chartTitle\"><span class=\"titleIcon\"></span> 车头时距组件</p>\n <div class=\"typeContent\">\n <p style=\"padding-left:15px;box-sizing: border-box\">数值</p>\n <div v-if=\"pageType == '断面'\" style=\" margin-bottom: 20px;border: 1px solid #E4E7ED;\">\n <tableShow :msg=\"tableData\" :type=\"triggerType\" v-if=\"triggerType == '触发'\" />\n <tableShow :msg=\"periodicStatistic\" :type=\"triggerType\" v-if=\"triggerType == '周期统计'\" />\n </div>\n <div v-if=\"pageType == '区域'\">\n <regionTable :msg=\"tableData\" :type=\"triggerType\" v-if=\"triggerType == '触发'\" />\n <regionTable :msg=\"periodicTime\" :type=\"triggerType\" v-if=\"triggerType == '周期时刻'\" />\n <regionTable :msg=\"periodicStatistic\" :type=\"triggerType\" v-if=\"triggerType == '周期统计'\" />\n </div>\n <div class=\"border\">\n <detailDialog :msg=\"tableData\" />\n <lineChart :list=\"tableData\" v-if=\"triggerType == '触发'\"></lineChart>\n <lineChart :list=\"periodicTime\" v-if=\"triggerType == '周期时刻'\"/>\n <lineChart :list=\"periodicStatistic\" v-if=\"triggerType == '周期统计'\" />\n </div>\n <div class=\"border\">\n <detailDialog :msg=\"tableData\" />\n <barChart :list=\"tableData\" v-if=\"triggerType=='触发'\"/>\n <barChart :list=\"periodicTime\" v-if=\"triggerType=='周期时刻'\"/>\n <barChart :list=\"periodicStatistic\" v-if=\"triggerType=='周期统计'\" />\n </div>\n\n </div>\n </div>\n</template>\n \n<script>\nimport lineChart from '../chart/lineChart.vue';\nimport barChart from '../chart/barChart.vue';\nimport tableShow from '../chart/tableShow.vue';\nimport detailDialog from '../chart/detailDialog.vue';\nimport thermalChart from '../chart/thermalChart.vue';\nimport regionTable from '../chart/regionTable.vue';\nexport default {\n name: 'headWayChart', //车头时距组件\n props:['pageType','triggerType'],\n components: {\n lineChart,\n barChart,\n tableShow,\n detailDialog,\n thermalChart,\n regionTable\n },\n data() {\n return {\n tableData: [\n {\n time: '7:40',\n type: '小汽车',\n carNumber: '苏E.999999',\n lane: '成华大道',\n event: 'in',\n speed: '80',\n headWay: '10'\n },\n {\n time: '9:40',\n type: '货车',\n carNumber: '苏E.888888',\n lane: '成华大道',\n event: 'in',\n speed: '60',\n headWay: '10'\n },\n {\n time: '10:40',\n type: '小汽车',\n carNumber: '苏E.777777',\n lane: '成华大道',\n event: 'in',\n speed: '90',\n headWay: '10'\n }\n ],\n // triggerType: '周期统计',\n periodicTime: [\n {\n time: '17:00',\n type: '货车',\n lane: '西城车道',\n lineUp: '200',\n check: '300',\n ownStatus: '空',\n speed: '50',\n CongestionStatus: '拥堵'\n },\n {\n time: '22:00',\n type: '货车',\n lane: '西城车道',\n lineUp: '200',\n check: '300',\n ownStatus: '空',\n speed: '30',\n CongestionStatus: '拥堵'\n },\n {\n time: '24:00',\n type: '货车',\n lane: '西城车道',\n lineUp: '200',\n check: '300',\n ownStatus: '空',\n speed: '80',\n CongestionStatus: '拥堵'\n }\n ],\n periodicStatistic: [\n {\n time: '9:40',\n type: '小汽车',\n event: 'out',\n lane: '西北大道',\n speed: '60',\n avgFlow: '200'\n },\n {\n time: '10:40',\n type: '小汽车',\n event: 'out',\n lane: '西北大道',\n speed: '55',\n avgFlow: '50'\n },\n {\n time: '11:40',\n type: '小汽车',\n event: 'out',\n lane: '西北大道',\n speed: '61',\n avgFlow: '40'\n }\n ]\n }\n },\n methods: {\n },\n mounted() {\n\n }\n}\n</script>\n<style scoped>\n.typeContent {\n box-sizing: border-box;\n}\n\n.border {\n width: 100%;\n margin-bottom: 20px;\n position: relative;\n}\n</style>"]}]} |