TransFlow/node_modules/.cache/vue-loader/f407daedce9c3226e3ce6828680...

1 line
8.7 KiB
JSON

{"remainingRequest":"D:\\视频边缘1215\\TransFlow\\node_modules\\vue-loader\\lib\\index.js??vue-loader-options!D:\\视频边缘1215\\TransFlow\\src\\components\\target\\speedChart.vue?vue&type=script&lang=js&","dependencies":[{"path":"D:\\视频边缘1215\\TransFlow\\src\\components\\target\\speedChart.vue","mtime":1673684353176},{"path":"D:\\视频边缘1215\\TransFlow\\node_modules\\cache-loader\\dist\\cjs.js","mtime":1671074740928},{"path":"D:\\视频边缘1215\\TransFlow\\node_modules\\babel-loader\\lib\\index.js","mtime":1671074740599},{"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\nimport lineChart from '../chart/lineChart.vue';\nimport barChart from '../chart/barChart.vue';\nimport thermalChart from '../chart/thermalChart.vue';\nimport tableShow from '../chart/tableShow.vue';\nimport detailDialog from '../chart/detailDialog.vue';\nimport regionTable from '../chart/regionTable.vue';\nimport avgChart from '../chart/avgChart.vue';\nexport default {\n name: 'speedChart', //速度组件\n props: ['pageType', 'triggerType', 'data'],\n // pagetype:断面 || 区域 triggerType 触发||周期时刻||周期统计\n components: {\n lineChart,\n barChart,\n tableShow,\n detailDialog,\n regionTable,\n thermalChart,\n avgChart\n },\n data() {\n return {\n title: '速度组件',\n tableData: [\n {\n steam_id: 0,\n timestamp: '2022-10-01 09:15:10.156',\n obj_id: 125,\n type: 'car',\n plate: '苏A0131M',\n speed: 35.2,\n event: 'in',\n lane: 0,\n headWay: 6.5\n },\n {\n steam_id: 0,\n timestamp: '2022-10-01 09:15:10.156',\n obj_id: 125,\n type: 'car',\n plate: '苏A0131M',\n speed: 70.2,\n event: 'in',\n lane: 0,\n headWay: 6.5\n },\n {\n steam_id: 0,\n timestamp: '2022-10-01 09:15:10.156',\n obj_id: 125,\n type: 'car',\n plate: '苏A0131M',\n speed: 60.2,\n event: 'in',\n lane: 0,\n headWay: 6.5\n },\n {\n steam_id: 0,\n timestamp: '2022-10-01 09:15:10.156',\n obj_id: 125,\n type: 'car',\n plate: '苏A0131M',\n speed: 60.2,\n event: 'in',\n lane: 0,\n headWay: 6.5\n },\n {\n steam_id: 0,\n timestamp: '2022-10-01 09:15:10.156',\n obj_id: 125,\n type: 'car',\n plate: '苏A0131M',\n speed: 60.2,\n event: 'in',\n lane: 0,\n headWay: 6.5\n }\n ]\n // triggerType: '周期统计',\n };\n },\n created() {\n // console.log(this.data);\n },\n methods: {},\n mounted() {}\n};\n",{"version":3,"sources":["speedChart.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAkCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA","file":"speedChart.vue","sourceRoot":"src/components/target","sourcesContent":["<template>\n <!-- 触发类型 -->\n <div class=\"setion\">\n <p class=\"chartTitle\"><span class=\"titleIcon\"></span> {{ title }}</p>\n <div class=\"typeContent\">\n <el-card style=\"width: 150px; margin-bottom: 20px; text-align: center\">\n <div style=\"font-size: 30px; font-weight: bold\">99</div>\n <div style=\"padding: 14px\">\n <span>数值</span>\n <div class=\"bottom clearfix\">\n <time class=\"time\">17:49</time>\n <el-button type=\"text\" class=\"button\">操作按钮</el-button>\n </div>\n </div>\n </el-card>\n <div v-if=\"pageType == '断面'\" style=\"margin-bottom: 20px; border: 1px solid #e4e7ed\">\n <tableShow :msg=\"data\" :type=\"triggerType\" />\n </div>\n <div v-if=\"pageType == '区域'\">\n <regionTable :msg=\"data\" :type=\"triggerType\" />\n </div>\n <div class=\"border\">\n <detailDialog />\n <lineChart :title=\"title\" :pageType=\"pageType\" :list=\"data\" :status=\"triggerType\" />\n </div>\n <div class=\"border\">\n <detailDialog />\n <avgChart :pageType=\"pageType\" :list=\"data\" :status=\"triggerType\" :title=\"title\" />\n </div>\n </div>\n </div>\n</template>\n \n<script>\nimport lineChart from '../chart/lineChart.vue';\nimport barChart from '../chart/barChart.vue';\nimport thermalChart from '../chart/thermalChart.vue';\nimport tableShow from '../chart/tableShow.vue';\nimport detailDialog from '../chart/detailDialog.vue';\nimport regionTable from '../chart/regionTable.vue';\nimport avgChart from '../chart/avgChart.vue';\nexport default {\n name: 'speedChart', //速度组件\n props: ['pageType', 'triggerType', 'data'],\n // pagetype:断面 || 区域 triggerType 触发||周期时刻||周期统计\n components: {\n lineChart,\n barChart,\n tableShow,\n detailDialog,\n regionTable,\n thermalChart,\n avgChart\n },\n data() {\n return {\n title: '速度组件',\n tableData: [\n {\n steam_id: 0,\n timestamp: '2022-10-01 09:15:10.156',\n obj_id: 125,\n type: 'car',\n plate: '苏A0131M',\n speed: 35.2,\n event: 'in',\n lane: 0,\n headWay: 6.5\n },\n {\n steam_id: 0,\n timestamp: '2022-10-01 09:15:10.156',\n obj_id: 125,\n type: 'car',\n plate: '苏A0131M',\n speed: 70.2,\n event: 'in',\n lane: 0,\n headWay: 6.5\n },\n {\n steam_id: 0,\n timestamp: '2022-10-01 09:15:10.156',\n obj_id: 125,\n type: 'car',\n plate: '苏A0131M',\n speed: 60.2,\n event: 'in',\n lane: 0,\n headWay: 6.5\n },\n {\n steam_id: 0,\n timestamp: '2022-10-01 09:15:10.156',\n obj_id: 125,\n type: 'car',\n plate: '苏A0131M',\n speed: 60.2,\n event: 'in',\n lane: 0,\n headWay: 6.5\n },\n {\n steam_id: 0,\n timestamp: '2022-10-01 09:15:10.156',\n obj_id: 125,\n type: 'car',\n plate: '苏A0131M',\n speed: 60.2,\n event: 'in',\n lane: 0,\n headWay: 6.5\n }\n ]\n // triggerType: '周期统计',\n };\n },\n created() {\n // console.log(this.data);\n },\n methods: {},\n mounted() {}\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>"]}]}