派生自 wuyushui/SewerAndRainNetwork

徐旺旺
2020-12-18 d780c5484886feff5b197f1fa3b4ef36b5f202d1
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<template>
    <div class="listTable">
        <el-table
                :data="tableData"
                style="width: 100%;height: 300px"
                :default-sort="{prop: 'date', order: 'descending'}"
        >
            <el-table-column
                    prop="date"
                    label="序号"
                    sortable
                    width="180">
            </el-table-column>
            <el-table-column
                    prop="name"
                    label="维护与操作"
                    sortable
                    width="180">
            </el-table-column>
            <el-table-column
                    prop="address"
                    label="管段编码">
            </el-table-column>
            <el-table-column
                    prop="address"
                    label="所属管线名称">
            </el-table-column>
            <el-table-column
                    prop="address"
                    label="管径(mm)">
            </el-table-column>
            <el-table-column
                    prop="address"
                    label="材质">
            </el-table-column>
            <el-table-column
                    prop="address"
                    label="管道压力(Mpa)">
            </el-table-column>
            <el-table-column
                    prop="address"
                    label="流向">
            </el-table-column>
            <el-table-column
                    prop="address"
                    label="管沟类型">
            </el-table-column>
            <el-table-column
                    prop="address"
                    label="埋没方式">
            </el-table-column>
            <el-table-column
                    prop="address"
                    label="埋没时间">
            </el-table-column>
            <el-table-column
                    prop="address"
                    label="探测时间">
            </el-table-column>
        </el-table>
    </div>
</template>
 
<script>
    import 'leaflet/dist/leaflet.css'
 
    export default {
        name: 'PipeLineList',
        datas: {},
        mounted() {
            this.$nextTick(() => {
                this.init()
            })
        },
        methods: {}
    }
</script>
 
<style lang="less">
    .listTable {
        z-index: 999;
        min-height: 300px;
        position: absolute;
        bottom: 0;
    }
</style>>