| | |
| | | <template> |
| | | <div class="public-bounced map-background" v-drag v-if="flag"> |
| | | <!-- <Echarts></Echarts>--> |
| | | <div class="public-bounced-title panel-title"> |
| | | <div class="public-bounced" v-if="flag"> |
| | | <div class="public-bounced-title" draggable="true" @dragstart="drag($event)"> |
| | | <div class="public-bounced-title panel-title" ref="publicBounced"> |
| | | <span>{{ displayContentTitle }}</span> |
| | | <i class="el-icon-circle-close" @click="closePopup"></i> |
| | | </div> |
| | |
| | | <public-chart v-else :getWasteGasDetails="getWasteGasDetails" |
| | | :value="value" |
| | | :getQueryOnlineMonData="getQueryOnlineMonData" |
| | | :getWasteWaterMonitoringDetails="getWasteWaterMonitoringDetails"> |
| | | :getWasteWaterMonitoringDetails='getWasteWaterMonitoringDetails' |
| | | > |
| | | </public-chart> |
| | | </div> |
| | | </div> |
| | |
| | | </template> |
| | | |
| | | <script> |
| | | import '@/components/BaseNav/SolidWaste/directive/dir' |
| | | |
| | | import '@/utils/dragBoxes' |
| | | import PublicTabs from '@components/BaseNav/PublicBounced/GasComponents/PublicTabs' |
| | | import PublicTable from '@components/BaseNav/PublicBounced/GasComponents/PublicTable' |
| | | import PublicVideo from '@components/BaseNav/PublicBounced/GasComponents/PublicVideo' |
| | |
| | | export default { |
| | | name: 'PublicBounced', |
| | | components: { |
| | | // Echarts |
| | | // Echarts, |
| | | PublicTabs, |
| | | PublicTable, |
| | | PublicChart, |
| | |
| | | // getGasQueryOnlineMonData: [] |
| | | } |
| | | }, |
| | | mounted () { |
| | | this.$nextTick(() => { |
| | | console.log(this.$refs.publicBounced) |
| | | }) |
| | | }, |
| | | methods: { |
| | | drag (event) { |
| | | console.log(event) |
| | | }, |
| | | closePopup () { |
| | | this.flag = false |
| | | }, |
| | |
| | | left: 20%; |
| | | |
| | | .public-bounced-title { |
| | | //cursor: pointer; |
| | | cursor: move; |
| | | height: 0.1rem; |
| | | padding: 10px 0; |
| | |
| | | } |
| | | |
| | | i { |
| | | color: #C0C4CC; |
| | | margin: 0 15px; |
| | | font-size: 22px; |
| | | cursor: pointer; |
| | | color: #C0C4CC; |
| | | margin: 0 15px; |
| | | font-size: 22px; |
| | | cursor: pointer; |
| | | } |
| | | i:hover{ |
| | | color: #00fff6; |
| | | } |
| | | |
| | | i:hover { |
| | | color: #00fff6; |
| | | } |
| | | } |
| | | |
| | | .public-bounced-content { |