{"remainingRequest":"D:\\jenkins\\workspace\\bzzgj-fvue\\node_modules\\thread-loader\\dist\\cjs.js!D:\\jenkins\\workspace\\bzzgj-fvue\\node_modules\\babel-loader\\lib\\index.js!D:\\jenkins\\workspace\\bzzgj-fvue\\node_modules\\cache-loader\\dist\\cjs.js??ref--0-0!D:\\jenkins\\workspace\\bzzgj-fvue\\node_modules\\vue-loader\\lib\\index.js??vue-loader-options!D:\\jenkins\\workspace\\bzzgj-fvue\\src\\views\\Device\\signboardDevice\\RealTimeMonitorSignboard.vue?vue&type=script&lang=js&","dependencies":[{"path":"D:\\jenkins\\workspace\\bzzgj-fvue\\src\\views\\Device\\signboardDevice\\RealTimeMonitorSignboard.vue","mtime":1695626572392},{"path":"D:\\jenkins\\workspace\\bzzgj-fvue\\node_modules\\cache-loader\\dist\\cjs.js","mtime":499162500000},{"path":"D:\\jenkins\\workspace\\bzzgj-fvue\\node_modules\\thread-loader\\dist\\cjs.js","mtime":499162500000},{"path":"D:\\jenkins\\workspace\\bzzgj-fvue\\node_modules\\babel-loader\\lib\\index.js","mtime":315532800000},{"path":"D:\\jenkins\\workspace\\bzzgj-fvue\\node_modules\\cache-loader\\dist\\cjs.js","mtime":499162500000},{"path":"D:\\jenkins\\workspace\\bzzgj-fvue\\node_modules\\vue-loader\\lib\\index.js","mtime":499162500000}],"contextDependencies":[],"result":["import \"core-js/modules/es6.function.name\";\nimport \"core-js/modules/web.dom.iterable\";\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//\n//\n//\n//\nimport { TableMixin } from '@/mixins/tableMixin';\nimport signboardDevice from '@/api/device/signboardDevice.js';\nimport dictUtils from '@/components/dict/DictSelectUtils.js';\nimport RealTimeMonitorDialog from '@/components/detailsDialog/RealTimeMonitorDialog.vue';\nexport default {\n name: 'RealTimeMonitor',\n components: {\n RealTimeMonitorDialog: RealTimeMonitorDialog\n },\n mixins: [TableMixin],\n data: function data() {\n return {\n querys: [{\n group: 'main',\n operation: 'BETWEEN',\n parentGroup: '',\n property: 'b.coll_time_',\n relation: 'AND',\n value: ''\n }],\n sorter: [{\n direction: 'DESC',\n property: 'createTime'\n }],\n dataTypeList: [] //数据类型字典\n\n };\n },\n created: function created() {\n if (this.$route.query.code) {\n this.querys.push({\n group: 'main',\n operation: 'EQUAL',\n parentGroup: '',\n property: 'b.device_code_',\n relation: 'AND',\n value: this.$route.query.code\n });\n }\n\n this.dataTypeList = dictUtils.getDictItemsFromCache('sjlx');\n },\n mounted: function mounted() {},\n methods: {\n toDialog: function toDialog(name) {\n this.$refs.RealTimeMonitorDialog.add(name);\n },\n handleUpdate: function handleUpdate(row) {\n console.log(row);\n },\n clearQuerys: function clearQuerys() {\n this.querys[0].value = '';\n },\n loadData: function loadData(page) {\n var _this = this;\n\n if (page) {\n this.queryParam.pageBean.page = page;\n }\n\n this.loading = true;\n this.tableData = [];\n this.queryParam.querys = [];\n this.queryParam = Object.assign(this.queryParam, {\n sorter: this.sorter\n });\n\n if (this.querys[0].value) {\n this.queryParam.querys.push(this.querys[0]);\n }\n\n if (this.$route.query.code) {\n this.queryParam.querys.push(this.querys[1]);\n }\n\n signboardDevice.getQuery(this.queryParam, function (res) {\n _this.tableData = res.rows;\n _this.total = res.total;\n\n _this.$set(_this.tableData);\n\n _this.loading = false;\n\n _this.tableData.forEach(function (item) {\n _this.dataTypeList.forEach(function (val) {\n if (item.dataType && item.dataType == val.value) {\n item['dataTypeName'] = val.name;\n }\n });\n });\n });\n }\n }\n};",null]}