派生自 wuyushui/SewerAndRainNetwork

chenyabin
2021-04-19 71f75cd55d11dda80118c0c3e278a8c531d98dc5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<template>
    <!-- 附属设施 -弹框 -->
    <div class="affiliatedFacilities">
        <el-dialog
                custom-class="affiliatedFacilities-dialog"
                title="提示"
                :visible.sync="dialogVisible"
                :append-to-body="true"
                :modal="false"
                 v-dialogDrag
                >
            <div>
                <h3>附属设施分类</h3>
                <ul>
                    <li>附属设施子类</li>
                    <li>附属设施子类</li>
                    <li>附属设施子类</li>
                    <li>附属设施子类</li>
                    <li>附属设施子类</li>
                </ul>
            </div>
 
        </el-dialog>
    </div>
</template>
 
<script>
export default {
  name: 'AffiliatedFacilities',
  data () {
    return {
      dialogVisible: true
    }
  },
  methods: {
    handleClose (done) {
      this.$confirm('确认关闭?')
        .then(_ => {
          done()
        })
        .catch(_ => {})
    }
  }
}
</script>
 
<style  lang="less">
.affiliatedFacilities-dialog{
    width: calc(30% - 15px) !important; // calc(30% - 15px);
    left: 50%;
    .el-dialog__body{
        padding: 0.04rem;
        h3{color:#fff;}
        ul {display: flex;flex-wrap: wrap;
            li{margin-left:0.04rem;margin-bottom: 0.04rem;cursor: pointer;color:#00fff6}
        }
    }
}
</style >