web
2025-06-14 d67f0836bd910f171c33d6f49d625e8f79aaf05b
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
87
<template>
    <div class="home">
        <div class="home-l">
            <div class="data-item">
                <div class="item-t">项目简介</div>
                <div class="item-c">
                    <div class="xm">
                        泾川县北部塬区供水保障工程位于玉都镇北部,距县城约 20 公里。工程起点为泾川县玉都镇刘李河水库,库水通过布置在水库大坝下游的预沉池沉淀和取水泵站加压后,中途经过安全调节池,最终到达位于玉都镇的净水厂,输水管线沿线经过寺头冯、小李村、曹家山、任王家等村庄,全长约 8 公里,在净水厂配水井设置灌溉分水口。工程等别为小型 Ⅳ 级,工程规模为小(1)型,由预沉池、取水泵站、输水管线、净水厂等组成。主要建设内容包括新建 1 万立方米 / 天净水厂 1 处、3.7 万立方米 / 天取水泵站 1 座,同步配套 400 立方米安全调节池 1 座、输水管道 8 公里,并安装视频安防、通信系统,实现工程自动化控制和信息化管理。
                    </div>
                </div>
            </div>
            <div class="data-item">
                <div class="item-t">数据管理</div>
                <div class="item-c"></div>
            </div>
            <div class="data-item">
                <div class="item-t">报警消息</div>
                <div class="item-c"></div>
            </div>
        </div>
        <div class="home-c"></div>
        <div class="home-r">
            <div class="data-item">
                <div class="item-t">公司介绍</div>
                <div class="item-c"></div>
            </div>
            <div class="data-item">
                <div class="item-t">生产控制</div>
                <div class="item-c"></div>
            </div>
            <div class="data-item">
                <div class="item-t">运营维护</div>
                <div class="item-c"></div>
            </div>
        </div>
    </div>
</template>
 
 
<script setup>
</script>
 
 
<style scoped lang="scss">
.home{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    .data-item{
        width: 100%;
        height: 33.3%;
        .item-t{
            width: 100%;
            height: 3rem;
            line-height: 2.8rem;
            background: url("@/assets/images/screen/cbox-title.png") no-repeat;
            background-size: 100% 100%;
            font-size: 1.2rem;
            font-weight: bold;
            padding-left: 3rem;
            color: #fff;
        }
        .item-c{
            margin-top: 0.5rem;
            width: 100%;
            height: calc(100% - 3.5rem);
            background: url("@/assets/images/screen/cbox-content.png") no-repeat;
            background-size: 100% 100%;
        }
    }
    &-l{
        width: 25%;
        .xm{
            width: 100%;
            height: 100%;
            padding: 1rem;
            color: #fff;
            font-size: 0.95rem;
            text-indent: 2rem;
        }
    }
    &-r{
        width: 25%;
    }
}
</style>