shuishen
2022-07-29 71ac571768baab6ca36057be77075b80cfe74739
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
<!DOCTYPE html>
<html>
 
<head>
    <meta charset="utf-8" />
    <title>公共</title>
    <link rel="stylesheet" href="./css/style.css">
    <link rel="stylesheet" href="./css/universal.css">
    <style>
        .universal-container td {
            line-height: 32px !important;
            font-size: 16px !important;
        }
 
        .universal-container tr td:first-child {
            width: 60px;
        }
 
        .universal-container tr td:last-child {
            width: 140px;
        }
    </style>
</head>
 
<body>
    <div class="universal-container">
        <div class="universal-box">
            <div>
                <table>
                    <tbody>
                        <tr>
                            <td>河流名称</td>
                            <td class="riverName"></td>
                        </tr>
                        <tr>
                            <td>地址</td>
                            <td class="address"></td>
                        </tr>
                        <tr>
                            <td>类别</td>
                            <td class="type"></td>
                        </tr>
 
                        <tr>
                            <td>问题</td>
                            <td class="title"></td>
                        </tr>
                    </tbody>
                </table>
            </div>
        </div>
    </div>
    <script src="../../js/jquery-1.11.3.min.js"></script>
    <script src="../../js/echarts.min.js"></script>
    <script src="../../libs/laydate/laydate.js"></script>
    <script src="./js/getUrlParams.js"></script>
    <script>
        var type = {
            '1': '乱占',
            '2': '乱采',
            '3': '乱堆',
            '4': '乱建',
            '5': '其他'
        }
        var params = getUrlParams();
        $('.universal-box .riverName').text(params.riverName);
        $('.universal-box .address').text(params.address);
        $('.universal-box .type').text(type[params.type]);
        $('.universal-box .title').text(params.title);
    </script>
</body>
 
</html>