From 6dbdc96268f562e4daf6c409868fac038ee57ca1 Mon Sep 17 00:00:00 2001 From: limingyu Date: Tue, 16 Jan 2024 13:54:52 +0800 Subject: [PATCH 01/19] =?UTF-8?q?=E7=9B=91=E7=AE=A1=E7=AB=AFbug=E4=BF=AE?= =?UTF-8?q?=E5=A4=8D=EF=BC=9A13342=E3=80=8110223=E3=80=8110225=E3=80=81124?= =?UTF-8?q?38=E3=80=8112688=E3=80=8112868?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/personnel_list.vue | 45 +++++++++++- .../outsourced/components/edit.vue | 50 ++++++++++++++ src/views/map/index.vue | 3 +- .../inspection/components/edit.vue | 68 ++++++++++--------- 4 files changed, 133 insertions(+), 33 deletions(-) diff --git a/src/views/evaluation/personnel_evaluation_status/components/personnel_list.vue b/src/views/evaluation/personnel_evaluation_status/components/personnel_list.vue index 729e52b..1cdc487 100644 --- a/src/views/evaluation/personnel_evaluation_status/components/personnel_list.vue +++ b/src/views/evaluation/personnel_evaluation_status/components/personnel_list.vue @@ -32,7 +32,7 @@ style="width: 100%;"/> - + 搜索 @@ -40,6 +40,9 @@ 重置 + + 导出数据 + @@ -78,6 +81,9 @@ 批量兑换 全选兑换 +
+ 合计:奖励总得分: {{ totalScores }} ,已兑换分数: {{ userdScores }} ,未兑换奖励数: {{ totalScores - userdScores }} +
@@ -95,9 +101,12 @@ export default { directives: { waves }, data() { return { + config: config, total: 0, varList: [], treeData: [], + totalScores: 0, + userdScores: 0, normalizer(node) { return { id: node.id, @@ -168,6 +177,8 @@ export default { this.listLoading = false this.varList = data.varList this.total = data.page.totalResult + this.totalScores = data.allAmounttoScore.totalScores + this.userdScores = data.allAmounttoScore.userdScores }).catch((e) => { this.listLoading = false }) @@ -243,6 +254,38 @@ export default { }, goBack() { this.$parent.activeName = 'List' + }, + // 导出数据 + exportData() { + this.$confirm('确定要导出到excel吗?', { + confirmButtonText: '确定', + cancelButtonText: '取消', + type: 'warning' + }).then(() => { + console.log('开始') + this.listLoading = false + let pageData = '' + if (this.searchForm.KEYWORDS) { + pageData += '&KEYWORDS=' + this.searchForm.KEYWORDS + } + if (this.searchForm.DEPARTMENT_ID) { + pageData += '&DEPARTMENT_ID=' + this.searchForm.DEPARTMENT_ID + } + if (this.searchForm.dates[0]) { + pageData += '&START_TIME=' + this.searchForm.dates[0] + ' 00:00:00' + } + if (this.searchForm.dates[1]) { + pageData += '&END_TIME=' + this.searchForm.dates[1] + ' 23:59:59' + } + if (this.$parent.CORPINFO_ID) { + pageData += '&CORPINFO_ID=' + this.$parent.CORPINFO_ID + } + window.open(this.config.httpurl + 'evaluationscore/excelAll?' + pageData) + }).catch(() => { + console.log('报错') + this.listLoading = false + }) + this.listLoading = false } } } diff --git a/src/views/keyprojects/outsourced/components/edit.vue b/src/views/keyprojects/outsourced/components/edit.vue index 713264b..2fdf10c 100644 --- a/src/views/keyprojects/outsourced/components/edit.vue +++ b/src/views/keyprojects/outsourced/components/edit.vue @@ -37,6 +37,7 @@ @@ -443,6 +446,7 @@ export default { directives: { waves }, data() { return { + updateValue: true, selectUsers: [], // 防止报错,参数无用 chooseUserList: [], punishThePerson: [], @@ -1315,6 +1319,52 @@ export default { this.form.UNITS_PHONE = item.PHONENUM } }) + }, + // 将树节点的子节点全部添加到数组中 + pullSelectedNodes(selectedItems) { + if (selectedItems.nodes && selectedItems.nodes.length > 0) { + for (let i = 0; i < selectedItems.nodes.length; i++) { + if (!this.form.JURISDICTION_UNIT.includes(selectedItems.nodes[i].id)) { + this.form.JURISDICTION_UNIT.push(selectedItems.nodes[i].id) + } + this.pullSelectedNodes(selectedItems.nodes[i]) + } + } + }, + // 选择项时触发的事件 + handleSelect(selectedItems) { + // 选择父节点时同时勾选全部子节点 + if (!this.form.JURISDICTION_UNIT.includes(selectedItems.id)) { + this.form.JURISDICTION_UNIT.push(selectedItems.id) + } + this.pullSelectedNodes(selectedItems) + this.onClick() + }, + // 将选中项的子节点全部移除 + removeSelectedNodes(selectedItems) { + if (selectedItems.nodes && selectedItems.nodes.length > 0) { + for (let i = 0; i < selectedItems.nodes.length; i++) { + if (this.form.JURISDICTION_UNIT.includes(selectedItems.nodes[i].id)) { + this.form.JURISDICTION_UNIT.splice(this.form.JURISDICTION_UNIT.indexOf(selectedItems.nodes[i].id), 1) + } + this.removeSelectedNodes(selectedItems.nodes[i]) + } + } + }, + // 移除选中项时触发的事件 + handleRemove(selectedItems) { + // 移除选中项时同时移除全部子节点 + if (this.form.JURISDICTION_UNIT.includes(selectedItems.id)) { + this.form.JURISDICTION_UNIT.splice(this.form.JURISDICTION_UNIT.indexOf(selectedItems.id), 1) + } + this.removeSelectedNodes(selectedItems) + this.onClick() + }, + onClick() { + this.updateValue = false + this.$nextTick(() => { + this.updateValue = true + }) } } } diff --git a/src/views/map/index.vue b/src/views/map/index.vue index 0c5a106..96c7677 100644 --- a/src/views/map/index.vue +++ b/src/views/map/index.vue @@ -298,7 +298,8 @@ export default { 'x': 117.91412, 'y': 38.35902 }, - CORP_INFO_ID: '016d19225e9d4ece863cce8a256a3e72' + // CORP_INFO_ID: '016d19225e9d4ece863cce8a256a3e72' + CORP_INFO_ID: 'f8da1790b1034058ae2efefd69af3284' }, { 'id': '00003', diff --git a/src/views/safetyenvironmental/inspection/components/edit.vue b/src/views/safetyenvironmental/inspection/components/edit.vue index 4e36afc..0f550ff 100644 --- a/src/views/safetyenvironmental/inspection/components/edit.vue +++ b/src/views/safetyenvironmental/inspection/components/edit.vue @@ -531,8 +531,8 @@ export default { this.getDict() await this.getDictTreeData() await this.getDictInspectDept() + await this.handleEdit(this.$parent.INSPECTION_ID) await this.getHiddenReginTreeList() - this.handleEdit(this.$parent.INSPECTION_ID) loading.close() }, mounted() { @@ -547,36 +547,39 @@ export default { // 修改 handleEdit(ID) { - requestFN( - '/safetyenvironmental/goEdit', - { - INSPECTION_ID: ID - } - ).then((data) => { - this.form = Object.assign(this.form, data.pd) // copy obj - if (this.form.INSPECTION_TYPE_OTHER) { - this.switchInspectionType = 'value' - } else { - this.switchInspectionType = 'select' - } - for (let i = 0; i < this.form.inspectorList.length; i++) { - this.INSPECTOR_List.push([]) - this.getInspectorList(this.form.inspectorList[i].INSPECTION_DEPARTMENT_ID, i) - } - for (let i = 0; i < this.form.hiddenList.length; i++) { - const formData = { fileHdImgList: [], fileVideoList: [] } - this.hdFile.push(formData) - } - this.$nextTick(() => { // 此处使用这个可以等节点渲染后再获取节点 - if (this.switchInspectionType === 'select') { - this.$refs['tree_InspectionType'].handleNodeClick({ id: this.form.INSPECTION_TYPE }) + return new Promise((resolve) => { + requestFN( + '/safetyenvironmental/goEdit', + { + INSPECTION_ID: ID } - this.$refs['deptTree_Inspected'].handleNodeClick({ id: this.form.INSPECTED_DEPARTMENT_ID }) - this.getUserList(this.form.INSPECTED_DEPARTMENT_ID) - console.info(this.form) + ).then((data) => { + this.form = Object.assign(this.form, data.pd) // copy obj + if (this.form.INSPECTION_TYPE_OTHER) { + this.switchInspectionType = 'value' + } else { + this.switchInspectionType = 'select' + } + for (let i = 0; i < this.form.inspectorList.length; i++) { + this.INSPECTOR_List.push([]) + this.getInspectorList(this.form.inspectorList[i].INSPECTION_DEPARTMENT_ID, i) + } + for (let i = 0; i < this.form.hiddenList.length; i++) { + const formData = { fileHdImgList: [], fileVideoList: [] } + this.hdFile.push(formData) + } + this.$nextTick(() => { // 此处使用这个可以等节点渲染后再获取节点 + if (this.switchInspectionType === 'select') { + this.$refs['tree_InspectionType'].handleNodeClick({ id: this.form.INSPECTION_TYPE }) + } + this.$refs['deptTree_Inspected'].handleNodeClick({ id: this.form.INSPECTED_DEPARTMENT_ID }) + this.getUserList(this.form.INSPECTED_DEPARTMENT_ID) + console.info(this.form) + resolve() + }) + }).catch((e) => { + this.listLoading = false }) - }).catch((e) => { - this.listLoading = false }) }, changeSwitch(type) { @@ -1080,8 +1083,11 @@ export default { return new Promise((resolve) => { this.treeLoading = true requestFN( - '/hiddenRegion/listAll', - {} + '/hiddenRegion/gerRegionList', + { + parentId: '0', + DEPARTMENT_ID: this.form.INSPECTED_DEPARTMENT_ID + } ).then((data) => { this.treeLoading = false this.hiddenPartList = JSON.parse(data.zTreeNodes) From 34bb3bce3c9309cb2c9040dae465956316e93f28 Mon Sep 17 00:00:00 2001 From: dearlin <1261008090@qq.com> Date: Wed, 17 Jan 2024 15:47:21 +0800 Subject: [PATCH 02/19] =?UTF-8?q?=E6=B2=A7=E5=B7=9E=E7=9F=BF=E7=9F=B3?= =?UTF-8?q?=E5=9C=B0=E5=9B=BE=E5=B1=95=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 1 + src/views/map/components/caofeidian_index.vue | 2 +- src/views/map/components/czks_index.vue | 587 ++++ src/views/map/components/menjinCzks.vue | 424 +++ src/views/map/components/renyuanCzks.vue | 429 +++ src/views/map/dialog/index.vue | 3 +- src/views/map/dialog/video_play_plat.vue | 23 +- src/views/map/index.vue | 143 +- src/views/map/js/dragentity.js | 2 + src/views/map/js/mapboxCzks.js | 2505 +++++++++++++++++ static/config.js | 3 +- 11 files changed, 4102 insertions(+), 20 deletions(-) create mode 100644 src/views/map/components/czks_index.vue create mode 100644 src/views/map/components/menjinCzks.vue create mode 100644 src/views/map/components/renyuanCzks.vue create mode 100644 src/views/map/js/mapboxCzks.js diff --git a/package.json b/package.json index 3b75732..f913dd4 100644 --- a/package.json +++ b/package.json @@ -24,6 +24,7 @@ "js-cookie": "^2.2.1", "jspdf": "^2.5.1", "lodash": "^4.17.21", + "md5": "^2.3.0", "moment": "^2.29.3", "motion": "^10.16.4", "mqtt": "^4.2.1", diff --git a/src/views/map/components/caofeidian_index.vue b/src/views/map/components/caofeidian_index.vue index 6b40b3e..91a76c6 100644 --- a/src/views/map/components/caofeidian_index.vue +++ b/src/views/map/components/caofeidian_index.vue @@ -1,7 +1,7 @@ @@ -428,7 +428,7 @@ export default { }) }, fnDelvaluation(hiddenId) { - this.$confirm('确定要删除选中的评审记录吗?', { + this.$confirm('确定要重置选中的评审记录吗?', { confirmButtonText: '确定', cancelButtonText: '取消', type: 'warning' From dda1af7787c35c92f34000767848a2b2618e5367 Mon Sep 17 00:00:00 2001 From: zhaoyu Date: Thu, 18 Jan 2024 14:58:36 +0800 Subject: [PATCH 06/19] =?UTF-8?q?=E8=B4=A3=E4=BB=BB=E7=8A=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../promise_book_issued/components/add.vue | 28 ++++++++++++++++--- 1 file changed, 24 insertions(+), 4 deletions(-) diff --git a/src/views/security_commitment/promise_book_issued/components/add.vue b/src/views/security_commitment/promise_book_issued/components/add.vue index ad55ba3..97d9dd7 100644 --- a/src/views/security_commitment/promise_book_issued/components/add.vue +++ b/src/views/security_commitment/promise_book_issued/components/add.vue @@ -3,7 +3,10 @@ - + + + + @@ -43,9 +46,10 @@
- 承诺人 + 承诺人 + 受状人 - + 添加 @@ -148,7 +152,8 @@ - 被承诺人 + 被承诺人 + 发状人 @@ -649,6 +654,21 @@ export default { this.form.TYPE = row.TYPE this.dialog.visible = false this.isSelectTemplate = true + if (this.form.TYPE == '1') { + this.form.people = [ + { + treeData: [], + postList: [], + userList: [], + CORPINFO_ID: '', + DEPARTMENT_ID: null, + POST_ID: '', + USER_ID: [], + id: Math.random() + } + ] + this.$forceUpdate() + } }).catch((e) => { }) }, From efc32a194f3433859a049e41b1a919e81927a01f Mon Sep 17 00:00:00 2001 From: guoyuepeng <770272267@qq.com> Date: Thu, 18 Jan 2024 15:27:08 +0800 Subject: [PATCH 07/19] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=9B=B9=E5=A6=83?= =?UTF-8?q?=E7=94=B8=E8=A7=86=E9=A2=91,=E9=98=B2=E6=AD=A2=E6=8A=A5?= =?UTF-8?q?=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/map/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/map/index.vue b/src/views/map/index.vue index 04773b4..4ebbc95 100644 --- a/src/views/map/index.vue +++ b/src/views/map/index.vue @@ -1125,7 +1125,7 @@ export default { this.pointBoxCfd = loadMapBoxCfd() this.pointBox = loadMapBox() this.pointBoxCzks = loadMapBoxCzks() - this.ysVideoInit() + // this.ysVideoInit() }, methods: { getRandom() { From fdc8c7f346440d35ea7e2b87334cb8c72b0e3916 Mon Sep 17 00:00:00 2001 From: liujun Date: Thu, 18 Jan 2024 15:56:12 +0800 Subject: [PATCH 08/19] =?UTF-8?q?13707=20=E6=9C=89=E9=97=B2=E7=A9=BA?= =?UTF-8?q?=E9=97=B4=E6=A0=87=E7=82=B9=E4=BF=A1=E6=81=AF=20=E5=AE=89?= =?UTF-8?q?=E5=85=A8=E6=8E=AA=E6=96=BD=E4=B8=8D=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/map/dialog/confinedspace.vue | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/views/map/dialog/confinedspace.vue b/src/views/map/dialog/confinedspace.vue index d6fbf90..b293563 100644 --- a/src/views/map/dialog/confinedspace.vue +++ b/src/views/map/dialog/confinedspace.vue @@ -264,7 +264,15 @@ export default { this.pd.CONFIRM_USER_MEASURES = this.pd.OTHER_PROTECTIVE_MEASURES.split(';_;')[0] this.pd.APPROVE_USER_MEASURES = this.pd.OTHER_PROTECTIVE_MEASURES.split(';_;')[1] }).catch((e) => { + console.log(e) }) + }, + findCharIndex(str, char, num) { + let index = str.indexOf(char) + for (let i = 0; i < num - 1; i++) { + index = str.indexOf(char, index + 1) + } + return index } } } From c01d29032b963b621f5fc74b3bf630a56ff80dc4 Mon Sep 17 00:00:00 2001 From: limingyu Date: Thu, 18 Jan 2024 16:28:49 +0800 Subject: [PATCH 09/19] =?UTF-8?q?=E4=BF=AE=E5=A4=8Dbug:13708=20=E6=9C=89?= =?UTF-8?q?=E9=97=B2=E7=A9=BA=E9=97=B4=E6=A0=87=E7=82=B9=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=20=E6=B0=94=E4=BD=93=E5=88=86=E6=9E=90=E5=90=8E=20=E6=B2=A1?= =?UTF-8?q?=E6=9C=89=E6=98=BE=E7=A4=BA=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/map/dialog/confinedspace.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/map/dialog/confinedspace.vue b/src/views/map/dialog/confinedspace.vue index b293563..96d2fa8 100644 --- a/src/views/map/dialog/confinedspace.vue +++ b/src/views/map/dialog/confinedspace.vue @@ -261,8 +261,8 @@ export default { this.measuresList = data.measuresList // 参数map this.gasList = data.gasList // 参数map this.gas = data.gas || {} // 参数map - this.pd.CONFIRM_USER_MEASURES = this.pd.OTHER_PROTECTIVE_MEASURES.split(';_;')[0] - this.pd.APPROVE_USER_MEASURES = this.pd.OTHER_PROTECTIVE_MEASURES.split(';_;')[1] + this.info.CONFIRM_USER_MEASURES = data.pd.OTHER_PROTECTIVE_MEASURES.split(';_;')[0] + this.info.APPROVE_USER_MEASURES = data.pd.OTHER_PROTECTIVE_MEASURES.split(';_;')[1] }).catch((e) => { console.log(e) }) From 00f4b5ff34701b2c128315aceabc7a486c32a909 Mon Sep 17 00:00:00 2001 From: zhaoyu Date: Thu, 18 Jan 2024 17:43:14 +0800 Subject: [PATCH 10/19] =?UTF-8?q?=E8=B4=A3=E4=BB=BB=E7=8A=B6=E9=97=AE?= =?UTF-8?q?=E9=A2=98=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../promise_book_issued/components/add.vue | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/views/security_commitment/promise_book_issued/components/add.vue b/src/views/security_commitment/promise_book_issued/components/add.vue index 97d9dd7..a9e0c71 100644 --- a/src/views/security_commitment/promise_book_issued/components/add.vue +++ b/src/views/security_commitment/promise_book_issued/components/add.vue @@ -141,7 +141,10 @@ }" >
- + + + + 删除 @@ -193,7 +196,10 @@ }" >
- + + + + From 852d67810c3e158e8aeb85331cde35033279fe0d Mon Sep 17 00:00:00 2001 From: zhaoyu Date: Thu, 18 Jan 2024 18:08:44 +0800 Subject: [PATCH 11/19] =?UTF-8?q?=E8=B4=A3=E4=BB=BB=E7=8A=B6=E4=BA=BA?= =?UTF-8?q?=E6=95=B0=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../promise_book_issued/components/list.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/views/security_commitment/promise_book_issued/components/list.vue b/src/views/security_commitment/promise_book_issued/components/list.vue index 72630ce..11cc357 100644 --- a/src/views/security_commitment/promise_book_issued/components/list.vue +++ b/src/views/security_commitment/promise_book_issued/components/list.vue @@ -86,7 +86,8 @@ From 00d698280a9ccb0fe55774976ad9e08bcb22dcbd Mon Sep 17 00:00:00 2001 From: liujun Date: Thu, 18 Jan 2024 18:13:51 +0800 Subject: [PATCH 12/19] =?UTF-8?q?13732=20=E6=A0=B7=E5=BC=8F=E8=B0=83?= =?UTF-8?q?=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../branch_hazard_assessment/components/evaluation.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/evaluation/branch_hazard_assessment/components/evaluation.vue b/src/views/evaluation/branch_hazard_assessment/components/evaluation.vue index 1324c69..3516c98 100644 --- a/src/views/evaluation/branch_hazard_assessment/components/evaluation.vue +++ b/src/views/evaluation/branch_hazard_assessment/components/evaluation.vue @@ -154,7 +154,7 @@ - + @@ -427,7 +427,7 @@ export default { } }) }, - fnDelvaluation(hiddenId) { + fnDelvaluation(row) { this.$confirm('确定要重置选中的评审记录吗?', { confirmButtonText: '确定', cancelButtonText: '取消', @@ -437,7 +437,8 @@ export default { requestFN( '/hiddenevaluationrecord/deleteEvaluation', { - HIDDEN_ID: hiddenId + HIDDEN_ID: row.HIDDEN_ID, + USER_ID: row.CREATOR } ).then((data) => { this.listLoading = false From ee4a885e332b9de692b02269be3a8ce55d483d20 Mon Sep 17 00:00:00 2001 From: guoyuepeng <770272267@qq.com> Date: Fri, 19 Jan 2024 17:43:56 +0800 Subject: [PATCH 14/19] =?UTF-8?q?2024=E5=B9=B41=E6=9C=8819=E6=97=A5V01.00.?= =?UTF-8?q?51?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/index.js | 8 +- package-lock.json | 650 +++++++++++++++++++++-- src/views/map/dialog/video_play_plat.vue | 7 +- src/views/system/appment/index.vue | 301 +++++++++++ static/config.js | 2 +- 5 files changed, 914 insertions(+), 54 deletions(-) create mode 100644 src/views/system/appment/index.vue diff --git a/config/index.js b/config/index.js index f6ea675..c558cc6 100644 --- a/config/index.js +++ b/config/index.js @@ -9,7 +9,13 @@ module.exports = { // Paths assetsSubDirectory: 'static', assetsPublicPath: '/', - proxyTable: {}, + proxyTable: { '/ysapi': { + target: 'http://10.30.20.54:8088', + changeOrigin: true, + pathRewrite: { + '^/ysapi': '' + } + }}, // Various Dev Server settings host: 'localhost', // can be overwritten by process.env.HOST diff --git a/package-lock.json b/package-lock.json index e664441..0d6a797 100644 --- a/package-lock.json +++ b/package-lock.json @@ -17,8 +17,10 @@ "js-cookie": "^2.2.1", "jspdf": "^2.5.1", "lodash": "^4.17.21", + "md5": "^2.3.0", "moment": "^2.29.3", "motion": "^10.16.4", + "mqtt": "^4.2.1", "nprogress": "^0.2.0", "relation-graph": "^1.1.0", "v-viewer": "^1.6.3", @@ -2299,8 +2301,7 @@ "node_modules/balanced-match": { "version": "1.0.0", "resolved": "https://registry.npm.taobao.org/balanced-match/download/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", - "dev": true + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" }, "node_modules/base": { "version": "0.11.2", @@ -2424,6 +2425,38 @@ "file-uri-to-path": "1.0.0" } }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/bl/node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmmirror.com/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/bl/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/bluebird": { "version": "3.7.2", "resolved": "https://registry.npm.taobao.org/bluebird/download/bluebird-3.7.2.tgz?cache=0&sync_timestamp=1602657218976&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbluebird%2Fdownload%2Fbluebird-3.7.2.tgz", @@ -2560,7 +2593,6 @@ "version": "1.1.11", "resolved": "https://registry.npm.taobao.org/brace-expansion/download/brace-expansion-1.1.11.tgz?cache=0&sync_timestamp=1614010785257&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbrace-expansion%2Fdownload%2Fbrace-expansion-1.1.11.tgz", "integrity": "sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=", - "dev": true, "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -2767,8 +2799,7 @@ "node_modules/buffer-from": { "version": "1.1.1", "resolved": "https://registry.npm.taobao.org/buffer-from/download/buffer-from-1.1.1.tgz", - "integrity": "sha1-MnE7wCj3XAL9txDXx7zsHyxgcO8=", - "dev": true + "integrity": "sha1-MnE7wCj3XAL9txDXx7zsHyxgcO8=" }, "node_modules/buffer-indexof": { "version": "1.1.1", @@ -3056,6 +3087,14 @@ "integrity": "sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I=", "dev": true }, + "node_modules/charenc": { + "version": "0.0.2", + "resolved": "https://registry.npmmirror.com/charenc/-/charenc-0.0.2.tgz", + "integrity": "sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==", + "engines": { + "node": "*" + } + }, "node_modules/check-types": { "version": "7.4.0", "resolved": "https://registry.npm.taobao.org/check-types/download/check-types-7.4.0.tgz", @@ -3591,6 +3630,15 @@ "integrity": "sha1-vXerfebelCBc6sxy8XFtKfIKd78=", "dev": true }, + "node_modules/commist": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/commist/-/commist-1.1.0.tgz", + "integrity": "sha512-rraC8NXWOEjhADbZe9QBNzLAN5Q3fsTPQtBV+fEVj6xKIgDgNiEVE6ZNfHpZOqfQ21YUzfVNUXLOEZquYvQPPg==", + "dependencies": { + "leven": "^2.1.0", + "minimist": "^1.1.0" + } + }, "node_modules/commondir": { "version": "1.0.1", "resolved": "https://registry.npm.taobao.org/commondir/download/commondir-1.0.1.tgz", @@ -3645,8 +3693,7 @@ "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npm.taobao.org/concat-map/download/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", - "dev": true + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" }, "node_modules/concat-stream": { "version": "1.6.2", @@ -3887,6 +3934,14 @@ "which": "^1.2.9" } }, + "node_modules/crypt": { + "version": "0.0.2", + "resolved": "https://registry.npmmirror.com/crypt/-/crypt-0.0.2.tgz", + "integrity": "sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==", + "engines": { + "node": "*" + } + }, "node_modules/crypto-browserify": { "version": "3.12.0", "resolved": "https://registry.npm.taobao.org/crypto-browserify/download/crypto-browserify-3.12.0.tgz", @@ -5595,7 +5650,6 @@ "version": "1.4.4", "resolved": "https://registry.npm.taobao.org/end-of-stream/download/end-of-stream-1.4.4.tgz", "integrity": "sha1-WuZKX0UFe682JuwU2gyl5LJDHrA=", - "dev": true, "dependencies": { "once": "^1.4.0" } @@ -7028,8 +7082,7 @@ "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npm.taobao.org/fs.realpath/download/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", - "dev": true + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" }, "node_modules/fsevents": { "version": "1.2.13", @@ -7173,7 +7226,6 @@ "version": "7.1.6", "resolved": "https://registry.npm.taobao.org/glob/download/glob-7.1.6.tgz", "integrity": "sha1-FB8zuBp8JJLhJVlDB0gMRmeSeKY=", - "dev": true, "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -7612,6 +7664,28 @@ "he": "bin/he" } }, + "node_modules/help-me": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/help-me/-/help-me-3.0.0.tgz", + "integrity": "sha512-hx73jClhyk910sidBB7ERlnhMlFsJJIBqSVMFDwPN8o2v9nmp5KgLq1Xz1Bf1fCMMZ6mPrX159iG0VLy/fPMtQ==", + "dependencies": { + "glob": "^7.1.6", + "readable-stream": "^3.6.0" + } + }, + "node_modules/help-me/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/hex-color-regex": { "version": "1.1.0", "resolved": "https://registry.npm.taobao.org/hex-color-regex/download/hex-color-regex-1.1.0.tgz", @@ -8355,7 +8429,6 @@ "version": "1.0.6", "resolved": "https://registry.npm.taobao.org/inflight/download/inflight-1.0.6.tgz", "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "dev": true, "dependencies": { "once": "^1.3.0", "wrappy": "1" @@ -9579,6 +9652,11 @@ "resolved": "https://registry.npm.taobao.org/js-cookie/download/js-cookie-2.2.1.tgz", "integrity": "sha1-aeEG3F1YBolFYpAqpbrsN0Tpsrg=" }, + "node_modules/js-sdsl": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/js-sdsl/-/js-sdsl-4.3.0.tgz", + "integrity": "sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ==" + }, "node_modules/js-tokens": { "version": "3.0.2", "resolved": "https://registry.npm.taobao.org/js-tokens/download/js-tokens-3.0.2.tgz", @@ -9818,7 +9896,6 @@ "version": "2.1.0", "resolved": "https://registry.npm.taobao.org/leven/download/leven-2.1.0.tgz", "integrity": "sha1-wuep93IJTe6dNCAq6KzORoeHVYA=", - "dev": true, "engines": { "node": ">=0.10.0" } @@ -10352,6 +10429,16 @@ "integrity": "sha1-XdaUPJOFSCZwFtTjTwV1gwgMUUw=", "dev": true }, + "node_modules/md5": { + "version": "2.3.0", + "resolved": "https://registry.npmmirror.com/md5/-/md5-2.3.0.tgz", + "integrity": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==", + "dependencies": { + "charenc": "0.0.2", + "crypt": "0.0.2", + "is-buffer": "~1.1.6" + } + }, "node_modules/md5.js": { "version": "1.3.5", "resolved": "https://registry.npm.taobao.org/md5.js/download/md5.js-1.3.5.tgz", @@ -10693,7 +10780,6 @@ "version": "3.0.4", "resolved": "https://registry.npm.taobao.org/minimatch/download/minimatch-3.0.4.tgz", "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=", - "dev": true, "dependencies": { "brace-expansion": "^1.1.7" }, @@ -10930,6 +11016,173 @@ "run-queue": "^1.0.3" } }, + "node_modules/mqtt": { + "version": "4.3.7", + "resolved": "https://registry.npmmirror.com/mqtt/-/mqtt-4.3.7.tgz", + "integrity": "sha512-ew3qwG/TJRorTz47eW46vZ5oBw5MEYbQZVaEji44j5lAUSQSqIEoul7Kua/BatBW0H0kKQcC9kwUHa1qzaWHSw==", + "dependencies": { + "commist": "^1.0.0", + "concat-stream": "^2.0.0", + "debug": "^4.1.1", + "duplexify": "^4.1.1", + "help-me": "^3.0.0", + "inherits": "^2.0.3", + "lru-cache": "^6.0.0", + "minimist": "^1.2.5", + "mqtt-packet": "^6.8.0", + "number-allocator": "^1.0.9", + "pump": "^3.0.0", + "readable-stream": "^3.6.0", + "reinterval": "^1.1.0", + "rfdc": "^1.3.0", + "split2": "^3.1.0", + "ws": "^7.5.5", + "xtend": "^4.0.2" + }, + "bin": { + "mqtt": "bin/mqtt.js", + "mqtt_pub": "bin/pub.js", + "mqtt_sub": "bin/sub.js" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/mqtt-packet": { + "version": "6.10.0", + "resolved": "https://registry.npmmirror.com/mqtt-packet/-/mqtt-packet-6.10.0.tgz", + "integrity": "sha512-ja8+mFKIHdB1Tpl6vac+sktqy3gA8t9Mduom1BA75cI+R9AHnZOiaBQwpGiWnaVJLDGRdNhQmFaAqd7tkKSMGA==", + "dependencies": { + "bl": "^4.0.2", + "debug": "^4.1.1", + "process-nextick-args": "^2.0.1" + } + }, + "node_modules/mqtt-packet/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/mqtt-packet/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "node_modules/mqtt/node_modules/concat-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/concat-stream/-/concat-stream-2.0.0.tgz", + "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", + "engines": [ + "node >= 6.0" + ], + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.0.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/mqtt/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/mqtt/node_modules/duplexify": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/duplexify/-/duplexify-4.1.2.tgz", + "integrity": "sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==", + "dependencies": { + "end-of-stream": "^1.4.1", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1", + "stream-shift": "^1.0.0" + } + }, + "node_modules/mqtt/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmmirror.com/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/mqtt/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "node_modules/mqtt/node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/mqtt/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/mqtt/node_modules/ws": { + "version": "7.5.9", + "resolved": "https://registry.npmmirror.com/ws/-/ws-7.5.9.tgz", + "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/mqtt/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, "node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz?cache=0&sync_timestamp=1607433856030&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fms%2Fdownload%2Fms-2.0.0.tgz", @@ -11311,6 +11564,36 @@ "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=", "dev": true }, + "node_modules/number-allocator": { + "version": "1.0.14", + "resolved": "https://registry.npmmirror.com/number-allocator/-/number-allocator-1.0.14.tgz", + "integrity": "sha512-OrL44UTVAvkKdOdRQZIJpLkAdjXGTRda052sN4sO77bKEzYYqWKMBjQvrJFzqygI99gL6Z4u2xctPW1tB8ErvA==", + "dependencies": { + "debug": "^4.3.1", + "js-sdsl": "4.3.0" + } + }, + "node_modules/number-allocator/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/number-allocator/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, "node_modules/number-is-nan": { "version": "1.0.1", "resolved": "https://registry.npm.taobao.org/number-is-nan/download/number-is-nan-1.0.1.tgz", @@ -11595,7 +11878,6 @@ "version": "1.4.0", "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "dev": true, "dependencies": { "wrappy": "1" } @@ -12030,7 +12312,6 @@ "version": "1.0.1", "resolved": "https://registry.npm.taobao.org/path-is-absolute/download/path-is-absolute-1.0.1.tgz", "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", - "devOptional": true, "engines": { "node": ">=0.10.0" } @@ -16398,6 +16679,11 @@ "jsesc": "bin/jsesc" } }, + "node_modules/reinterval": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/reinterval/-/reinterval-1.1.0.tgz", + "integrity": "sha512-QIRet3SYrGp0HUHO88jVskiG6seqUGC5iAG7AwI/BV4ypGcuqk9Du6YQBUOUqm9c8pw1eyLoIaONifRua1lsEQ==" + }, "node_modules/relateurl": { "version": "0.2.7", "resolved": "https://registry.npm.taobao.org/relateurl/download/relateurl-0.2.7.tgz", @@ -16697,6 +16983,11 @@ "node": ">=0.12" } }, + "node_modules/rfdc": { + "version": "1.3.0", + "resolved": "https://registry.npmmirror.com/rfdc/-/rfdc-1.3.0.tgz", + "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==" + }, "node_modules/rgb-regex": { "version": "1.0.1", "resolved": "https://registry.npm.taobao.org/rgb-regex/download/rgb-regex-1.0.1.tgz", @@ -17907,6 +18198,27 @@ "node": ">=0.10.0" } }, + "node_modules/split2": { + "version": "3.2.2", + "resolved": "https://registry.npmmirror.com/split2/-/split2-3.2.2.tgz", + "integrity": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==", + "dependencies": { + "readable-stream": "^3.0.0" + } + }, + "node_modules/split2/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npm.taobao.org/sprintf-js/download/sprintf-js-1.0.3.tgz", @@ -18112,8 +18424,7 @@ "node_modules/stream-shift": { "version": "1.0.1", "resolved": "https://registry.npm.taobao.org/stream-shift/download/stream-shift-1.0.1.tgz", - "integrity": "sha1-1wiCgVWasneEJCebCHfaPDktWj0=", - "dev": true + "integrity": "sha1-1wiCgVWasneEJCebCHfaPDktWj0=" }, "node_modules/strict-uri-encode": { "version": "1.1.0", @@ -19472,8 +19783,7 @@ "node_modules/typedarray": { "version": "0.0.6", "resolved": "https://registry.npm.taobao.org/typedarray/download/typedarray-0.0.6.tgz", - "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", - "dev": true + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" }, "node_modules/uc.micro": { "version": "1.0.6", @@ -22002,8 +22312,7 @@ "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npm.taobao.org/wrappy/download/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", - "dev": true + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" }, "node_modules/write": { "version": "0.2.1", @@ -24147,8 +24456,7 @@ "balanced-match": { "version": "1.0.0", "resolved": "https://registry.npm.taobao.org/balanced-match/download/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", - "dev": true + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" }, "base": { "version": "0.11.2", @@ -24238,6 +24546,37 @@ "file-uri-to-path": "1.0.0" } }, + "bl": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "requires": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + }, + "dependencies": { + "buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmmirror.com/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } + }, "bluebird": { "version": "3.7.2", "resolved": "https://registry.npm.taobao.org/bluebird/download/bluebird-3.7.2.tgz?cache=0&sync_timestamp=1602657218976&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbluebird%2Fdownload%2Fbluebird-3.7.2.tgz", @@ -24366,7 +24705,6 @@ "version": "1.1.11", "resolved": "https://registry.npm.taobao.org/brace-expansion/download/brace-expansion-1.1.11.tgz?cache=0&sync_timestamp=1614010785257&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbrace-expansion%2Fdownload%2Fbrace-expansion-1.1.11.tgz", "integrity": "sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=", - "dev": true, "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -24544,8 +24882,7 @@ "buffer-from": { "version": "1.1.1", "resolved": "https://registry.npm.taobao.org/buffer-from/download/buffer-from-1.1.1.tgz", - "integrity": "sha1-MnE7wCj3XAL9txDXx7zsHyxgcO8=", - "dev": true + "integrity": "sha1-MnE7wCj3XAL9txDXx7zsHyxgcO8=" }, "buffer-indexof": { "version": "1.1.1", @@ -24791,6 +25128,11 @@ "integrity": "sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I=", "dev": true }, + "charenc": { + "version": "0.0.2", + "resolved": "https://registry.npmmirror.com/charenc/-/charenc-0.0.2.tgz", + "integrity": "sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==" + }, "check-types": { "version": "7.4.0", "resolved": "https://registry.npm.taobao.org/check-types/download/check-types-7.4.0.tgz", @@ -25221,6 +25563,15 @@ "integrity": "sha1-vXerfebelCBc6sxy8XFtKfIKd78=", "dev": true }, + "commist": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/commist/-/commist-1.1.0.tgz", + "integrity": "sha512-rraC8NXWOEjhADbZe9QBNzLAN5Q3fsTPQtBV+fEVj6xKIgDgNiEVE6ZNfHpZOqfQ21YUzfVNUXLOEZquYvQPPg==", + "requires": { + "leven": "^2.1.0", + "minimist": "^1.1.0" + } + }, "commondir": { "version": "1.0.1", "resolved": "https://registry.npm.taobao.org/commondir/download/commondir-1.0.1.tgz", @@ -25268,8 +25619,7 @@ "concat-map": { "version": "0.0.1", "resolved": "https://registry.npm.taobao.org/concat-map/download/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", - "dev": true + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" }, "concat-stream": { "version": "1.6.2", @@ -25480,6 +25830,11 @@ "which": "^1.2.9" } }, + "crypt": { + "version": "0.0.2", + "resolved": "https://registry.npmmirror.com/crypt/-/crypt-0.0.2.tgz", + "integrity": "sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==" + }, "crypto-browserify": { "version": "3.12.0", "resolved": "https://registry.npm.taobao.org/crypto-browserify/download/crypto-browserify-3.12.0.tgz", @@ -26907,7 +27262,6 @@ "version": "1.4.4", "resolved": "https://registry.npm.taobao.org/end-of-stream/download/end-of-stream-1.4.4.tgz", "integrity": "sha1-WuZKX0UFe682JuwU2gyl5LJDHrA=", - "dev": true, "requires": { "once": "^1.4.0" } @@ -28066,8 +28420,7 @@ "fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npm.taobao.org/fs.realpath/download/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", - "dev": true + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" }, "fsevents": { "version": "1.2.13", @@ -28190,7 +28543,6 @@ "version": "7.1.6", "resolved": "https://registry.npm.taobao.org/glob/download/glob-7.1.6.tgz", "integrity": "sha1-FB8zuBp8JJLhJVlDB0gMRmeSeKY=", - "dev": true, "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -28535,6 +28887,27 @@ "integrity": "sha1-hK5l+n6vsWX922FWauFLrwVmTw8=", "dev": true }, + "help-me": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/help-me/-/help-me-3.0.0.tgz", + "integrity": "sha512-hx73jClhyk910sidBB7ERlnhMlFsJJIBqSVMFDwPN8o2v9nmp5KgLq1Xz1Bf1fCMMZ6mPrX159iG0VLy/fPMtQ==", + "requires": { + "glob": "^7.1.6", + "readable-stream": "^3.6.0" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } + }, "hex-color-regex": { "version": "1.1.0", "resolved": "https://registry.npm.taobao.org/hex-color-regex/download/hex-color-regex-1.1.0.tgz", @@ -29148,7 +29521,6 @@ "version": "1.0.6", "resolved": "https://registry.npm.taobao.org/inflight/download/inflight-1.0.6.tgz", "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "dev": true, "requires": { "once": "^1.3.0", "wrappy": "1" @@ -30174,6 +30546,11 @@ "resolved": "https://registry.npm.taobao.org/js-cookie/download/js-cookie-2.2.1.tgz", "integrity": "sha1-aeEG3F1YBolFYpAqpbrsN0Tpsrg=" }, + "js-sdsl": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/js-sdsl/-/js-sdsl-4.3.0.tgz", + "integrity": "sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ==" + }, "js-tokens": { "version": "3.0.2", "resolved": "https://registry.npm.taobao.org/js-tokens/download/js-tokens-3.0.2.tgz", @@ -30378,8 +30755,7 @@ "leven": { "version": "2.1.0", "resolved": "https://registry.npm.taobao.org/leven/download/leven-2.1.0.tgz", - "integrity": "sha1-wuep93IJTe6dNCAq6KzORoeHVYA=", - "dev": true + "integrity": "sha1-wuep93IJTe6dNCAq6KzORoeHVYA=" }, "levn": { "version": "0.3.0", @@ -30847,6 +31223,16 @@ "integrity": "sha1-XdaUPJOFSCZwFtTjTwV1gwgMUUw=", "dev": true }, + "md5": { + "version": "2.3.0", + "resolved": "https://registry.npmmirror.com/md5/-/md5-2.3.0.tgz", + "integrity": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==", + "requires": { + "charenc": "0.0.2", + "crypt": "0.0.2", + "is-buffer": "~1.1.6" + } + }, "md5.js": { "version": "1.3.5", "resolved": "https://registry.npm.taobao.org/md5.js/download/md5.js-1.3.5.tgz", @@ -31128,7 +31514,6 @@ "version": "3.0.4", "resolved": "https://registry.npm.taobao.org/minimatch/download/minimatch-3.0.4.tgz", "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=", - "dev": true, "requires": { "brace-expansion": "^1.1.7" } @@ -31324,6 +31709,130 @@ "run-queue": "^1.0.3" } }, + "mqtt": { + "version": "4.3.7", + "resolved": "https://registry.npmmirror.com/mqtt/-/mqtt-4.3.7.tgz", + "integrity": "sha512-ew3qwG/TJRorTz47eW46vZ5oBw5MEYbQZVaEji44j5lAUSQSqIEoul7Kua/BatBW0H0kKQcC9kwUHa1qzaWHSw==", + "requires": { + "commist": "^1.0.0", + "concat-stream": "^2.0.0", + "debug": "^4.1.1", + "duplexify": "^4.1.1", + "help-me": "^3.0.0", + "inherits": "^2.0.3", + "lru-cache": "^6.0.0", + "minimist": "^1.2.5", + "mqtt-packet": "^6.8.0", + "number-allocator": "^1.0.9", + "pump": "^3.0.0", + "readable-stream": "^3.6.0", + "reinterval": "^1.1.0", + "rfdc": "^1.3.0", + "split2": "^3.1.0", + "ws": "^7.5.5", + "xtend": "^4.0.2" + }, + "dependencies": { + "concat-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/concat-stream/-/concat-stream-2.0.0.tgz", + "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.0.2", + "typedarray": "^0.0.6" + } + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "requires": { + "ms": "2.1.2" + } + }, + "duplexify": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/duplexify/-/duplexify-4.1.2.tgz", + "integrity": "sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==", + "requires": { + "end-of-stream": "^1.4.1", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1", + "stream-shift": "^1.0.0" + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmmirror.com/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "requires": { + "yallist": "^4.0.0" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "ws": { + "version": "7.5.9", + "resolved": "https://registry.npmmirror.com/ws/-/ws-7.5.9.tgz", + "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "requires": {} + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + } + } + }, + "mqtt-packet": { + "version": "6.10.0", + "resolved": "https://registry.npmmirror.com/mqtt-packet/-/mqtt-packet-6.10.0.tgz", + "integrity": "sha512-ja8+mFKIHdB1Tpl6vac+sktqy3gA8t9Mduom1BA75cI+R9AHnZOiaBQwpGiWnaVJLDGRdNhQmFaAqd7tkKSMGA==", + "requires": { + "bl": "^4.0.2", + "debug": "^4.1.1", + "process-nextick-args": "^2.0.1" + }, + "dependencies": { + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "requires": { + "ms": "2.1.2" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } + } + }, "ms": { "version": "2.0.0", "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz?cache=0&sync_timestamp=1607433856030&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fms%2Fdownload%2Fms-2.0.0.tgz", @@ -31653,6 +32162,30 @@ "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=", "dev": true }, + "number-allocator": { + "version": "1.0.14", + "resolved": "https://registry.npmmirror.com/number-allocator/-/number-allocator-1.0.14.tgz", + "integrity": "sha512-OrL44UTVAvkKdOdRQZIJpLkAdjXGTRda052sN4sO77bKEzYYqWKMBjQvrJFzqygI99gL6Z4u2xctPW1tB8ErvA==", + "requires": { + "debug": "^4.3.1", + "js-sdsl": "4.3.0" + }, + "dependencies": { + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "requires": { + "ms": "2.1.2" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } + } + }, "number-is-nan": { "version": "1.0.1", "resolved": "https://registry.npm.taobao.org/number-is-nan/download/number-is-nan-1.0.1.tgz", @@ -31864,7 +32397,6 @@ "version": "1.4.0", "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "dev": true, "requires": { "wrappy": "1" } @@ -32227,8 +32759,7 @@ "path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npm.taobao.org/path-is-absolute/download/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", - "devOptional": true + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" }, "path-is-inside": { "version": "1.0.2", @@ -35725,6 +36256,11 @@ } } }, + "reinterval": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/reinterval/-/reinterval-1.1.0.tgz", + "integrity": "sha512-QIRet3SYrGp0HUHO88jVskiG6seqUGC5iAG7AwI/BV4ypGcuqk9Du6YQBUOUqm9c8pw1eyLoIaONifRua1lsEQ==" + }, "relateurl": { "version": "0.2.7", "resolved": "https://registry.npm.taobao.org/relateurl/download/relateurl-0.2.7.tgz", @@ -35958,6 +36494,11 @@ "integrity": "sha1-uKSCXVvbH8P29Twrwz+BOIaBx7w=", "devOptional": true }, + "rfdc": { + "version": "1.3.0", + "resolved": "https://registry.npmmirror.com/rfdc/-/rfdc-1.3.0.tgz", + "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==" + }, "rgb-regex": { "version": "1.0.1", "resolved": "https://registry.npm.taobao.org/rgb-regex/download/rgb-regex-1.0.1.tgz", @@ -36964,6 +37505,26 @@ } } }, + "split2": { + "version": "3.2.2", + "resolved": "https://registry.npmmirror.com/split2/-/split2-3.2.2.tgz", + "integrity": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==", + "requires": { + "readable-stream": "^3.0.0" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } + }, "sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npm.taobao.org/sprintf-js/download/sprintf-js-1.0.3.tgz", @@ -37134,8 +37695,7 @@ "stream-shift": { "version": "1.0.1", "resolved": "https://registry.npm.taobao.org/stream-shift/download/stream-shift-1.0.1.tgz", - "integrity": "sha1-1wiCgVWasneEJCebCHfaPDktWj0=", - "dev": true + "integrity": "sha1-1wiCgVWasneEJCebCHfaPDktWj0=" }, "strict-uri-encode": { "version": "1.1.0", @@ -38236,8 +38796,7 @@ "typedarray": { "version": "0.0.6", "resolved": "https://registry.npm.taobao.org/typedarray/download/typedarray-0.0.6.tgz", - "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", - "dev": true + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" }, "uc.micro": { "version": "1.0.6", @@ -40350,8 +40909,7 @@ "wrappy": { "version": "1.0.2", "resolved": "https://registry.npm.taobao.org/wrappy/download/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", - "dev": true + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" }, "write": { "version": "0.2.1", diff --git a/src/views/map/dialog/video_play_plat.vue b/src/views/map/dialog/video_play_plat.vue index 3f33b25..422e14f 100644 --- a/src/views/map/dialog/video_play_plat.vue +++ b/src/views/map/dialog/video_play_plat.vue @@ -37,10 +37,6 @@ export default { type: String, default: '' }, - corpInfoId: { - type: String, - default: '' - }, requestUrl: { type: String, default: '/platformvideomanagement/getHlsPathById' @@ -93,8 +89,7 @@ export default { requestFN( url, { - PLATFORMVIDEOMANAGEMENT_ID: this.id, - CORPINFO_ID: this.corpInfoId + PLATFORMVIDEOMANAGEMENT_ID: this.id } ).then((res) => { this.info = res.pd diff --git a/src/views/system/appment/index.vue b/src/views/system/appment/index.vue new file mode 100644 index 0000000..6a57dcf --- /dev/null +++ b/src/views/system/appment/index.vue @@ -0,0 +1,301 @@ + + diff --git a/static/config.js b/static/config.js index 1ea0900..c002a23 100644 --- a/static/config.js +++ b/static/config.js @@ -1,7 +1,7 @@ // eslint-disable-next-line no-unused-vars const config = { weburl: 'http://192.168.0.45:8082/', // 前台地址 - httpurl: 'http://192.168.0.79:8092/', // 后台地址 + httpurl: 'http://192.168.151.43:8092/', // 后台地址 qyurl: 'http://192.168.0.45:8080/', // 企业前台 fileUrl: 'http://192.168.192.201:8991/file/', // 附件服务器地址 publicKey: 'MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC2zCyUYSD0pNrbtaYdvGfHfWoRV+fo/2N9O2PLLz/jZvMkigkq4eAq4JO+Ek0wDHI9WxP6iTSLYCHhIOs9CQTPvyldJFm8riZtQZlBTD8Plkb3rjrgwTqbBi3w3+HKYdkSvGFXJIdSOPbpXnj5BzN8vlVaybs24R/vpUzG9178lwIDAQAB', From 461b1d6319bd0bda4d74d41cf3d015d861a04f41 Mon Sep 17 00:00:00 2001 From: songwenxuan <1924103812@qq.com> Date: Thu, 25 Jan 2024 14:36:05 +0800 Subject: [PATCH 15/19] =?UTF-8?q?cmt=E6=B8=AF=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/map/components/menjinCmt.vue | 416 +++++++++++++ src/views/map/components/qixiang.vue | 3 +- src/views/map/dialog/index.vue | 15 +- src/views/map/dialog/mkGateMachineCmt.vue | 208 +++++++ src/views/map/dialog/weatherstationCmt.vue | 669 +++++++++++++++++++++ src/views/map/index.vue | 33 +- 6 files changed, 1336 insertions(+), 8 deletions(-) create mode 100644 src/views/map/components/menjinCmt.vue create mode 100644 src/views/map/dialog/mkGateMachineCmt.vue create mode 100644 src/views/map/dialog/weatherstationCmt.vue diff --git a/src/views/map/components/menjinCmt.vue b/src/views/map/components/menjinCmt.vue new file mode 100644 index 0000000..c2a0170 --- /dev/null +++ b/src/views/map/components/menjinCmt.vue @@ -0,0 +1,416 @@ + + + + + diff --git a/src/views/map/components/qixiang.vue b/src/views/map/components/qixiang.vue index 254b199..dc838a2 100644 --- a/src/views/map/components/qixiang.vue +++ b/src/views/map/components/qixiang.vue @@ -203,7 +203,8 @@ export default { requestFN( '/map/listbymeteorological', { - CORPINFO_ID: this.corpInfoId || '035958e685cf4850bc40151c5e0617a6' + CORPINFO_ID: this.corpInfoId || '035958e685cf4850bc40151c5e0617a6', + GANGKOU: this.gangkou } ).then((data) => { this.listLoading = false diff --git a/src/views/map/dialog/index.vue b/src/views/map/dialog/index.vue index 1857048..97e7837 100644 --- a/src/views/map/dialog/index.vue +++ b/src/views/map/dialog/index.vue @@ -7,10 +7,12 @@ + + @@ -63,10 +65,12 @@ import weatherstation from './weatherstation.vue' import temperaturestation from './weatherstation.vue' import humiditystation from './weatherstation.vue' import windspeedstation from './weatherstation.vue' +import windspeedstationCmt from './weatherstationCmt.vue' import XfControl from './xfControl.vue' import XfPoint from './xfPoint.vue' import MkGateMachine from './mkGateMachine.vue' import MkGateMachineCfd from './mkGateMachineCfd.vue' +import MkGateMachineCmt from './mkGateMachineCmt.vue' import Zhong_da_info from './zhong_da_info.vue' import electricityOrder from './electricityOrder.vue' import highworkOrder from './highworkOrder.vue' @@ -106,6 +110,7 @@ export default { temperaturestation, humiditystation, windspeedstation, + windspeedstationCmt, electricityOrder, highworkOrder, cutroadOrder, @@ -129,10 +134,10 @@ export default { videoPlayBianjieruqin, peoplePositionOne, hotworkFirst, - peoplePositionOne, peoplePositionYGS, outSourceInfo, - outSourceVideoInfo + outSourceVideoInfo, + MkGateMachineCmt }, props: { title: { @@ -166,7 +171,11 @@ export default { infoname: { type: String, default: '' - } + }, + name: { + type: String, + default: '' + }, }, methods: { closeDialog() { diff --git a/src/views/map/dialog/mkGateMachineCmt.vue b/src/views/map/dialog/mkGateMachineCmt.vue new file mode 100644 index 0000000..f28a24d --- /dev/null +++ b/src/views/map/dialog/mkGateMachineCmt.vue @@ -0,0 +1,208 @@ + + + + diff --git a/src/views/map/dialog/weatherstationCmt.vue b/src/views/map/dialog/weatherstationCmt.vue new file mode 100644 index 0000000..ef93b02 --- /dev/null +++ b/src/views/map/dialog/weatherstationCmt.vue @@ -0,0 +1,669 @@ + + + + diff --git a/src/views/map/index.vue b/src/views/map/index.vue index 0c5a106..6e9b861 100644 --- a/src/views/map/index.vue +++ b/src/views/map/index.vue @@ -35,7 +35,7 @@ :gangkou="gangkouActive" /> @@ -44,6 +44,11 @@ :corp-info-id="CORP_INFO_ID" :area="area" :gangkou="gangkouActive"/> +
@@ -219,6 +225,7 @@ import fengongsiIndex from './components/fengongsi_index.vue' import caofeidianIndex from './components/caofeidian_index.vue' import menjin from './components/menjin.vue' import menjinCfd from './components/menjinCfd.vue' +import menjinCmt from './components/menjinCmt.vue' import xiaofang from './components/xiaofang.vue' import anquan from './components/anquan.vue' import anquanCfd from './components/anquanCfd.vue' @@ -268,6 +275,7 @@ export default { layoutMenu, menjin, menjinCfd, + menjinCmt, xiaofang, anquan, qixiang, @@ -1105,7 +1113,7 @@ export default { } return S4() + S4() + '-' + S4() + '-' + S4() + '-' + S4() + '-' + S4() + S4() + S4() }, - keepalive(token) { + /*keepalive(token) { // 第二套方案 requestFN( '/map/loginOrKeepAlive', @@ -1159,7 +1167,7 @@ export default { console.error(err) }) }) - }, + },*/ // keepalive(token) { // axios({ // method: 'POST', @@ -1360,12 +1368,24 @@ export default { this.dialog.infoname = infoname return } + if (this.gangkouActive === '00005') { + // if (this.gangkouActive === '00004' && point_type.indexOf('标记点') !== -1 && point_id.substring(0, 1) === '0' || point_id.substring(0, 1) === '5') { + const { label, point_type, data_id, infoname,name, code } = pick.id._monitoItems.data + this.dialog.visible = true + this.dialog.title = label + this.dialog.type = point_type.substring(3) + this.gangkouActive + this.dialog.id = data_id + this.dialog.name = name + this.dialog.id = point_type.substring(3) === 'CAMERA' ? code : point_type.substring(3) === 'platcamera' ? code : data_id + this.dialog.infoname = infoname + console.log(this.dialog) + return + } if (point_type.indexOf('标记点') !== -1) { const { label, point_type, data_id, corpInfoId, dialog_width, infoname } = pick.id._monitoItems.data this.dialog.visible = true this.dialog.title = label this.dialog.type = point_type.substring(3) - this.dialog.id = data_id this.dialog.corpInfoId = corpInfoId this.dialog.infoname = infoname this.dialog.width = dialog_width || '50%' @@ -1958,6 +1978,11 @@ export default { } else { point.infoname = varList[i].NAME } + //曹煤炭数据 + if (this.gangkouActive === '00005') { + point.name = varList[i].MAP_POINT_NAME + point.infoname = varList[i].MAP_POINT_NAME + } points.push(point) } if (this.gangkouActive === '00004' && urlType === 'carPosition') { From 520bd345e8f29426756735604a132bb82ad8baae Mon Sep 17 00:00:00 2001 From: songwenxuan <1924103812@qq.com> Date: Thu, 25 Jan 2024 15:56:04 +0800 Subject: [PATCH 16/19] =?UTF-8?q?cmt=E6=B8=AF=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/map/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/map/index.vue b/src/views/map/index.vue index 6e9b861..e268bf6 100644 --- a/src/views/map/index.vue +++ b/src/views/map/index.vue @@ -347,7 +347,7 @@ export default { 'x': 118.43701, 'y': 38.9866 }, - CORP_INFO_ID: 'c077f4ed66844ed4a191a36fa1fc641c' + CORP_INFO_ID: '6aa255d41602497fa0f934a822820df4' } ], branchPoint: [], @@ -1368,7 +1368,7 @@ export default { this.dialog.infoname = infoname return } - if (this.gangkouActive === '00005') { + if (this.gangkouActive === '00005' && point_id.substring(0, 1) !== '1') { // if (this.gangkouActive === '00004' && point_type.indexOf('标记点') !== -1 && point_id.substring(0, 1) === '0' || point_id.substring(0, 1) === '5') { const { label, point_type, data_id, infoname,name, code } = pick.id._monitoItems.data this.dialog.visible = true From c3e22a8654000519cabf0b5dfcf95579ceb74d50 Mon Sep 17 00:00:00 2001 From: songwenxuan <1924103812@qq.com> Date: Mon, 29 Jan 2024 11:18:23 +0800 Subject: [PATCH 17/19] =?UTF-8?q?cmt=E6=B8=AF=E5=9C=B0=E5=9B=BE=E5=B1=95?= =?UTF-8?q?=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/map/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/map/index.vue b/src/views/map/index.vue index 5e340c7..09aff70 100644 --- a/src/views/map/index.vue +++ b/src/views/map/index.vue @@ -373,7 +373,7 @@ export default { 'x': 118.43701, 'y': 38.9866 }, - CORP_INFO_ID: 'c077f4ed66844ed4a191a36fa1fc641c' + CORP_INFO_ID: '6aa255d41602497fa0f934a822820df4' } ], branchPoint: [], From 4cdccfafa781b9001c4f65ab7a5724a12e1bb107 Mon Sep 17 00:00:00 2001 From: songwenxuan <1924103812@qq.com> Date: Mon, 29 Jan 2024 11:55:14 +0800 Subject: [PATCH 18/19] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=9B=B9=E7=85=A4?= =?UTF-8?q?=E7=82=AD=E6=B8=AF=E5=9C=B0=E5=9B=BE=E8=A7=86=E9=A2=91=E5=BC=B9?= =?UTF-8?q?=E7=AA=97=E4=B8=8D=E6=AD=A3=E7=A1=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/map/dialog/index.vue | 3 ++ src/views/map/dialog/video_play_cmt.vue | 66 +++++++++++++++++++++++++ 2 files changed, 69 insertions(+) create mode 100644 src/views/map/dialog/video_play_cmt.vue diff --git a/src/views/map/dialog/index.vue b/src/views/map/dialog/index.vue index 785972c..3fa0729 100644 --- a/src/views/map/dialog/index.vue +++ b/src/views/map/dialog/index.vue @@ -15,6 +15,7 @@ + @@ -79,6 +80,7 @@ import blindboardOrder from './blindboardOrder.vue' import breakgroundOrder from './breakgroundOrder.vue' import hoistingOrder from './hoistingOrder.vue' import videoPlay from './video_play.vue' +import videoPlayCmt from './video_play_cmt.vue' import videoPlayCfd from './video_play_cfd.vue' import videoPlayPlat from './video_play_plat.vue' import videoPlayBianjieruqin from './video_play_bianjieruqin.vue' @@ -118,6 +120,7 @@ export default { breakgroundOrder, hoistingOrder, videoPlay, + videoPlayCmt, videoPlayCfd, videoPlayPlat, hotworkCfdD, diff --git a/src/views/map/dialog/video_play_cmt.vue b/src/views/map/dialog/video_play_cmt.vue new file mode 100644 index 0000000..706f9b7 --- /dev/null +++ b/src/views/map/dialog/video_play_cmt.vue @@ -0,0 +1,66 @@ + + + + + From fe9303df2c81630cf4eeb801c7bfab98d039ffaf Mon Sep 17 00:00:00 2001 From: songwenxuan <1924103812@qq.com> Date: Mon, 29 Jan 2024 12:08:05 +0800 Subject: [PATCH 19/19] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=9B=B9=E7=85=A4?= =?UTF-8?q?=E7=82=AD=E6=B8=AF=E5=9C=B0=E5=9B=BE=E4=BA=BA=E5=91=98=E5=AE=9A?= =?UTF-8?q?=E4=BD=8D=E7=BB=9F=E8=AE=A1=E9=A1=B5=E4=B8=A2=E5=A4=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/map/components/renyuanCmt.vue | 418 ++++++++++++++++++++++++ src/views/map/index.vue | 9 +- 2 files changed, 426 insertions(+), 1 deletion(-) create mode 100644 src/views/map/components/renyuanCmt.vue diff --git a/src/views/map/components/renyuanCmt.vue b/src/views/map/components/renyuanCmt.vue new file mode 100644 index 0000000..138a6cf --- /dev/null +++ b/src/views/map/components/renyuanCmt.vue @@ -0,0 +1,418 @@ + + + + + diff --git a/src/views/map/index.vue b/src/views/map/index.vue index 09aff70..64ce599 100644 --- a/src/views/map/index.vue +++ b/src/views/map/index.vue @@ -84,7 +84,7 @@ :area="area" :gangkou="gangkouActive"/> @@ -98,6 +98,11 @@ :corp-info-id="CORP_INFO_ID" :area="area" :gangkou="gangkouActive"/> +