guonan
8 天以前 d06f7ad0231d5fb029ab8520bf442590d3bab20b
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
<template>
    <div class="river">
        <div class="plotting-title">降雨效果</div>
        <div class="plotting-btn">降雨影响区域</div>
        <div class="plotting-btn">降雨影响区域热力图</div>
        <div class="plotting-btn">降雨淹没</div>
    </div>
</template>
 
<script>
 
export default {
    name: 'River',
    components: {
 
    }
}
</script>
<style lang="less" scoped>
.river {
    background: url('@/assets/img/tools/plottingbg.png');
    width: 235px;
    height: 45px;
}
 
.river div {
    float: left;
 
}
 
.plotting-title {
    height: 30px;
    width: 60px;
    line-height: 30px;
    margin-top: 9px;
    margin-left: 10px;  
    font-weight: 700;
    font-size: 14px;
    color: #9dc3cc;
    cursor: pointer;
}
 
.plotting-btn {
    border: 1px solid #83b8b9;
    height: 30px;
    width: 40px;
    line-height: 30px;
    margin-top: 9px;
    margin-left: 10px;
    text-align: center;
    color: #9ec6cf;
    cursor: pointer;
}
.plotting-btn:hover{
    border: 1px solid #fff;
    color: #fff;
}
</style>