index.vue 405 B

123456789101112131415161718192021
  1. <template>
  2. <el-col :span="24" class="fireHazard modular">
  3. <el-col class="title title2">消防隐患</el-col>
  4. <seTable @xfgjClick="xfgjClick" />
  5. </el-col>
  6. </template>
  7. <script>
  8. import seTable from "@/components2/fireHazard/seTable.vue";
  9. export default {
  10. name:"fireHazard",
  11. components: {
  12. seTable,
  13. },
  14. methods:{
  15. xfgjClick(row){
  16. this.$emit("xfgjClick",row)
  17. }
  18. }
  19. };
  20. </script>