From 704714d2bbb1cf97cb16d452332c4334bc78a24c Mon Sep 17 00:00:00 2001 From: 徐旺旺 <11530253@qq.com> Date: 星期二, 20 四月 2021 18:43:24 +0800 Subject: [PATCH] 加排口, 比例尺显示隐藏有BUG,暂时注释 --- src/components/BaseNav/WasteGas/WasteGasIndex.vue | 20 ++++++++++---------- 1 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/components/BaseNav/WasteGas/WasteGasIndex.vue b/src/components/BaseNav/WasteGas/WasteGasIndex.vue index cbf990a..0fb7f62 100644 --- a/src/components/BaseNav/WasteGas/WasteGasIndex.vue +++ b/src/components/BaseNav/WasteGas/WasteGasIndex.vue @@ -1,10 +1,10 @@ <template> <public-sector> <template v-slot:tabs> - <public-tabs ref='refsTabsData'></public-tabs> + <public-tabs :storagePlaceId="storagePlaceId"></public-tabs> </template> - <template v-slot:table> - <public-echarts ref="refsTableData"></public-echarts> + <template v-slot:publicPart> + <public-echarts></public-echarts> </template> <template v-slot:video> <public-video></public-video> @@ -29,20 +29,20 @@ PublicVideo }, mounted () { + console.log(this.storagePlaceId) this.$nextTick(() => { - this.refsData() - console.log(this.storagePlaceId) + // this.refsData() }) }, data () { return {} }, methods: { - refsData () { - const data = this.storagePlaceId - this.$refs.refsTabsData.refsDataTabs(data) - this.$refs.refsTableData.refsDataTable(data) - } + // refsData () { + // const data = this.storagePlaceId + // this.$refs.refsTabsData.refsDataTabs(data) + // this.$refs.refsTableData.refsDataTable(data) + // } } } </script> -- Gitblit v1.8.0