派生自 wuyushui/SewerAndRainNetwork

ChenZeping
2021-04-29 c56e506fd34c58209240e97fc29043639fae5d19
src/components/table/components/Warn.vue
@@ -1,4 +1,9 @@
<template>
  <Public>
    <template v-slot:title>
      <span>{{ titleProp }}</span>
    </template>
    <template v-slot:publicTable>
    <el-tabs v-model="activeName">
        <el-tab-pane label="实时统计" name="first">
            <el-scrollbar style="width:100%">
@@ -145,11 +150,17 @@
        </el-tab-pane>
    </el-tabs>
</template>
  </Public>
</template>
<script>
import Public from '@components/table/Public'
export default {
  data () {
    return {
      titleProp: '',
      activeName: 'first',
      tableData: [{
        date: '集团公司',
@@ -181,6 +192,12 @@
        zip: 1
      }]
    }
  },
  components: { Public },
  methods: {
    refsDatatitle (item) {
      this.titleProp = item
    }
  }
}
</script>