| | |
| | | <template> |
| | | <public-sector> |
| | | <template v-slot:tabs> |
| | | <public-tabs ref='refsTabsData' :storagePlaceId="storagePlaceId"></public-tabs> |
| | | <public-tabs :storagePlaceId="storagePlaceId"></public-tabs> |
| | | </template> |
| | | <template v-slot:table> |
| | | <public-echarts ref="refsTableData"></public-echarts> |
| | | <public-echarts></public-echarts> |
| | | </template> |
| | | <template v-slot:video> |
| | | <public-video></public-video> |
| | |
| | | mounted () { |
| | | console.log(this.storagePlaceId) |
| | | this.$nextTick(() => { |
| | | this.refsData() |
| | | // 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> |