tml 3 місяців тому
батько
коміт
0a8551ada5

+ 0 - 417
nngkxxdp/src/main/resources/static/natj/dataCenter/culturalTourism.html

@@ -1,417 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-
-<head>
-    <meta charset="UTF-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1.0">
-    <title>数据中心</title>
-    <link rel="stylesheet" href="css/conmon.css">
-    <link rel="stylesheet" href="css/index.css">
-    <meta name="SiteName" content="重庆市南岸区人民政府">
-    <meta name="SiteDomain" content="http://www.cqna.gov.cn">
-    <meta name="SiteIDCode" content="5001080014">
-
-    <!--栏目类-->
-    <meta name="ColumnName" content="数据开放_文化旅游">
-    <meta name="ColumnDescription" content="">
-    <meta name="ColumnKeywords" content="">
-    <meta name="ColumnType" content="数据开放_文化旅游">
-    <style>
-        #whlyEchar {
-            width: 100%;
-            height: 710px;
-        }
-    </style>
-</head>
-
-<body>
-    <div style="width:100%;height:280px" id="header"></div>
-    <div class="main">
-        <div class="menu">
-            <ul class="tabs">
-                <li onclick="window.location.href='socialSecurity.html'">
-                    <img src="images/menu_shbz.png" alt="" style="width: 27px;height: 21px;"
-                        data-name="shbz"><span>社会保障</span>
-                    <div class="arrow" style="visibility: hidden;"></div>
-                </li>
-                <li class="click" onclick="window.location.href='culturalTourism.html'"><img src="images/menu_whlxp.png"
-                        alt="" style="width: 22px;height: 26px;" data-name="whlx"><span>文化旅游</span>
-                    <div class="arrow"></div>
-                </li>
-                <li onclick="window.location.href='healthCare.html'"><img src="images/menu_wsyl.png" alt=""
-                        style="width: 30px;height: 29px;" data-name="wsyl"><span>卫生医疗</span>
-                    <div class="arrow" style="visibility: hidden;"></div>
-                </li>
-                <li onclick="window.location.href='socialAssistance.html'"><img src="images/menu_shjz.png" alt=""
-                        style="width: 31px;height: 27px;" data-name="shjz"><span>社会救助</span>
-                    <div class="arrow" style="visibility: hidden;"></div>
-                </li>
-            </ul>
-        </div>
-        <div class="content">
-            <div class="year"><span>年份:</span>
-                <select id="year">
-                    <option value="2022">2022年</option>
-                </select>
-            </div>
-            <div class="items div-wsyl">
-                <div class="range">
-                    <button class="thisMonth click" style="border-radius: 4px 0px 0px 4px;border-right: none;"
-                        onlick="thisMonth()">本月</button>
-                    <button class="cumulat" style="border-radius: 0px 4px 4px 0px;border-left: none;"
-                        onclick="cumulat()">累计</button>
-                </div>
-                <div id="whlyEchar"></div>
-            </div>
-        </div>
-    </div>
-    <div style="width:100%;" id="footer"></div>
-</body>
-<script src="js/jquery-3.5.1.min.js"></script>
-<script src="js/echarts.min.js"></script>
-<script>
-
-    var chartDom = document.getElementById('whlyEchar');
-    var myChart = echarts.init(chartDom);
-    var alldata = [[4256415, 225424, 322450, 31012], [31762696, 1724264, 2370899, 286838]];
-    var option;
-    var data = alldata[0]
-    option = {
-        grid: {
-            // 网格线配置
-            show: true,
-            lineStyle: {
-                color: ["#e9e9e9"],
-                width: 1,
-                type: "solid",
-            },
-        },
-        tooltip: {
-            trigger: 'axis',
-            axisPointer: {
-                type: 'shadow'
-            },
-            backgroundColor: "rgb(0 0 0 / 40%)",
-            borderColor: 'none',
-            formatter: function (params) {
-                let total = params[0].value + params[1].value;
-                var html = "";
-                html = `<div
-                    style="font-size: 14px;font-family: Microsoft YaHei;color: #FFFFFF;width: 306px;border-radius: 10px;box-sizing: border-box;position: relative;">
-                    <div>`+ params[0].axisValue + `:</div>
-                    <div>`+ total + `人<span style="margin-left:20px;"></span></div>
-                    <div style="width: 272px;height: 1px;background:rgb(255 255 255 / 32%);margin: 10px 0;"></div>
-                    <div><span
-                            style="width: 11px;height: 11px;background: `+ params[0].color + `;border-radius: 6px;"></span><span>` + params[0].seriesName + `:
-                        `+ params[0].value + `人</span>
-                    </div>
-                    <div><span
-                            style="width: 11px;height: 11px;background: `+ params[1].color + `;border-radius: 6px;"></span><span>` + params[1].seriesName + `:
-                        `+ params[1].value + `人</span><span style="margin-left:20px;"></span>
-                    </div>
-                    <div style="position: absolute;border-right: 20px solid transparent;border-left: 20px solid transparent;
-                    border-top: 20px solid rgb(0 0 0 / 60%);bottom: -30px;left: 20px;"></div>
-                </div>`
-                return html;
-            }
-        },
-        xAxis: {
-            type: 'category',
-            data: ['接待海内外游客', '过夜游客', '旅游总收入', '旅游从业人员'],
-            axisLabel: {
-                show: true,
-                textStyle: {
-                    color: '#333',  //更改坐标轴文字颜色
-                    fontSize: 14      //更改坐标轴文字大小
-                }
-            },
-            isTick: {
-                show: true  //坐标轴刻度线
-            },
-            axisLine: { //轴线
-                show: true
-            },
-            splitLine: { //网格线
-                show: true
-            },
-        },
-        yAxis: {
-            type: 'value',
-            min: 0,
-            max: 5000000,
-            interval: 1000000,
-            axisLabel: {
-                formatter: '{value}(个/万元)'
-            },
-            axisTick: {
-                show: true  //坐标轴刻度线
-            },
-            axisLine: { //轴线
-                show: true
-            },
-            splitLine: { //网格线
-                show: true
-            }
-        },
-        series: [
-            {
-                name: '海外游客',
-                data: [0, 0, 0, 0],
-                type: 'bar',
-                itemStyle: {
-                    color: '#A7D0FD'
-                }
-            },
-            //4256415 225424 322450 31012
-            //31762696 1724264 2370899 286838
-            {
-                name: '海内游客',
-                data: data,
-                type: 'bar',
-                barGap: '-100%',//移动第二个柱子的位置实现重叠
-                z: '-1',//改变这根柱子的层级使这根柱子在下面,
-                itemStyle: {
-                    color: '#509EF3'
-                }
-
-            }
-        ]
-    };
-    option && myChart.setOption(option);
-    // 文化旅游
-    $('.thisMonth').click(function () {
-        $('.cumulat').removeClass('click');
-        $('.thisMonth').addClass('click');
-        var option;
-        var data = alldata[0]
-        option = {
-            grid: {
-                // 网格线配置
-                show: true,
-                lineStyle: {
-                    color: ["#e9e9e9"],
-                    width: 1,
-                    type: "solid",
-                },
-            },
-            tooltip: {
-                trigger: 'axis',
-                axisPointer: {
-                    type: 'shadow'
-                },
-                backgroundColor: "rgb(0 0 0 / 40%)",
-                borderColor: 'none',
-                formatter: function (params) {
-                    let total = params[0].value + params[1].value;
-                    var html = "";
-                    html = `<div
-                    style="font-size: 14px;font-family: Microsoft YaHei;color: #FFFFFF;width: 306px;border-radius: 10px;box-sizing: border-box;position: relative;">
-                    <div>`+ params[0].axisValue + `:</div>
-                    <div>`+ total + `人<span style="margin-left:20px;"></span></div>
-                    <div style="width: 272px;height: 1px;background:rgb(255 255 255 / 32%);margin: 10px 0;"></div>
-                    <div><span
-                            style="width: 11px;height: 11px;background: `+ params[0].color + `;border-radius: 6px;"></span><span>` + params[0].seriesName + `:
-                        `+ params[0].value + `人</span>
-                    </div>
-                    <div><span
-                            style="width: 11px;height: 11px;background: `+ params[1].color + `;border-radius: 6px;"></span><span>` + params[1].seriesName + `:
-                        `+ params[1].value + `人</span><span style="margin-left:20px;"></span>
-                    </div>
-                    <div style="position: absolute;border-right: 20px solid transparent;border-left: 20px solid transparent;
-                    border-top: 20px solid rgb(0 0 0 / 60%);bottom: -30px;left: 20px;"></div>
-                </div>`
-                    return html;
-                }
-            },
-            xAxis: {
-                type: 'category',
-                data: ['接待海内外游客', '过夜游客', '旅游总收入', '旅游从业人员'],
-                axisLabel: {
-                    show: true,
-                    textStyle: {
-                        color: '#333',  //更改坐标轴文字颜色
-                        fontSize: 14      //更改坐标轴文字大小
-                    }
-                },
-                isTick: {
-                    show: true  //坐标轴刻度线
-                },
-                axisLine: { //轴线
-                    show: true
-                },
-                splitLine: { //网格线
-                    show: true
-                },
-            },
-            yAxis: {
-                type: 'value',
-                min: 0,
-                max: 5000000,
-                interval: 1000000,
-                axisLabel: {
-                    formatter: '{value}(个/万元)'
-                },
-                axisTick: {
-                    show: true  //坐标轴刻度线
-                },
-                axisLine: { //轴线
-                    show: true
-                },
-                splitLine: { //网格线
-                    show: true
-                }
-            },
-            series: [
-                {
-                    name: '海外游客',
-                    data: [0, 0, 0, 0],
-                    type: 'bar',
-                    itemStyle: {
-                        color: '#A7D0FD'
-                    }
-                },
-                //4256415 225424 322450 31012
-                //31762696 1724264 2370899 286838
-                {
-                    name: '海内游客',
-                    data: data,
-                    type: 'bar',
-                    barGap: '-100%',//移动第二个柱子的位置实现重叠
-                    z: '-1',//改变这根柱子的层级使这根柱子在下面,
-                    itemStyle: {
-                        color: '#509EF3'
-                    }
-
-                }
-            ]
-        };
-        myChart.clear();
-        option && myChart.setOption(option);
-    })
-    $('.cumulat').click(function () {
-
-        $('.cumulat').addClass('click');
-        $('.thisMonth').removeClass('click');
-        var option;
-        var data = alldata[1]
-        option = {
-            grid: {
-                // 网格线配置
-                show: true,
-                lineStyle: {
-                    color: ["#e9e9e9"],
-                    width: 1,
-                    type: "solid",
-                },
-            },
-            tooltip: {
-                trigger: 'axis',
-                axisPointer: {
-                    type: 'shadow'
-                },
-                backgroundColor: "rgb(0 0 0 / 40%)",
-                borderColor: 'none',
-                formatter: function (params) {
-                    let total = params[0].value + params[1].value;
-                    var html = "";
-                    html = `<div
-                    style="font-size: 14px;font-family: Microsoft YaHei;color: #FFFFFF;width: 306px;border-radius: 10px;box-sizing: border-box;position: relative;">
-                    <div>`+ params[0].axisValue + `:</div>
-                    <div>`+ total + `人<span style="margin-left:20px;"></span></div>
-                    <div style="width: 272px;height: 1px;background:rgb(255 255 255 / 32%);margin: 10px 0;"></div>
-                    <div><span
-                            style="width: 11px;height: 11px;background: `+ params[0].color + `;border-radius: 6px;"></span><span>` + params[0].seriesName + `:
-                        `+ params[0].value + `人</span>
-                    </div>
-                    <div><span
-                            style="width: 11px;height: 11px;background: `+ params[1].color + `;border-radius: 6px;"></span><span>` + params[1].seriesName + `:
-                        `+ params[1].value + `人</span><span style="margin-left:20px;"></span>
-                    </div>
-                    <div style="position: absolute;border-right: 20px solid transparent;border-left: 20px solid transparent;
-                    border-top: 20px solid rgb(0 0 0 / 60%);bottom: -30px;left: 20px;"></div>
-                </div>`
-                    return html;
-                }
-            },
-            xAxis: {
-                type: 'category',
-                data: ['接待海内外游客', '过夜游客', '旅游总收入', '旅游从业人员'],
-                axisLabel: {
-                    show: true,
-                    textStyle: {
-                        color: '#333',  //更改坐标轴文字颜色
-                        fontSize: 14      //更改坐标轴文字大小
-                    }
-                },
-                isTick: {
-                    show: true  //坐标轴刻度线
-                },
-                axisLine: { //轴线
-                    show: true
-                },
-                splitLine: { //网格线
-                    show: true
-                },
-            },
-            yAxis: {
-                type: 'value',
-                min: 0,
-                max: 5000000,
-                interval: 1000000,
-                axisLabel: {
-                    formatter: '{value}(个/万元)'
-                },
-                axisTick: {
-                    show: true  //坐标轴刻度线
-                },
-                axisLine: { //轴线
-                    show: true
-                },
-                splitLine: { //网格线
-                    show: true
-                }
-            },
-            series: [
-                {
-                    name: '海外游客',
-                    data: [0, 0, 0, 0],
-                    type: 'bar',
-                    itemStyle: {
-                        color: '#A7D0FD'
-                    }
-                },
-                //4256415 225424 322450 31012
-                //31762696 1724264 2370899 286838
-                {
-                    name: '海内游客',
-                    data: data,
-                    type: 'bar',
-                    barGap: '-100%',//移动第二个柱子的位置实现重叠
-                    z: '-1',//改变这根柱子的层级使这根柱子在下面,
-                    itemStyle: {
-                        color: '#509EF3'
-                    }
-
-                }
-            ]
-        };
-        myChart.clear();
-        option && myChart.setOption(option);
-    })
-
-
-</script>
-<script>
-    setHeader()
-    setFooter()
-    function setHeader() {
-        $("#header").load("https://www.cqna.gov.cn/ggbf_search/top/top_style.html  ")
-    }
-
-    function setFooter() {
-        $("#footer").load("https://www.cqna.gov.cn/data/footer/footer.html")
-    }
-</script>
-
-</html>

+ 0 - 192
nngkxxdp/src/main/resources/static/natj/dataCenter/healthCare.html

@@ -1,192 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-
-<head>
-    <meta charset="UTF-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1.0">
-    <title>数据中心</title>
-    <link rel="stylesheet" href="css/conmon.css">
-    <link rel="stylesheet" href="css/index.css">
-    <meta name="SiteName" content="重庆市南岸区人民政府">
-    <meta name="SiteDomain" content="http://www.cqna.gov.cn">
-    <meta name="SiteIDCode" content="5001080014">
-
-    <!--栏目类-->
-    <meta name="ColumnName" content="数据开放_医疗卫生">
-    <meta name="ColumnDescription" content="">
-    <meta name="ColumnKeywords" content="">
-    <meta name="ColumnType" content="数据开放_医疗卫生">
-    <style>
-    </style>
-</head>
-
-<body>
-<div style="width:100%;height:280px" id="header"></div>
-<div class="main">
-    <div class="menu">
-        <ul class="tabs">
-            <li onclick="window.location.href='socialSecurity.html'">
-                <img src="images/menu_shbz.png" alt="" style="width: 27px;height: 21px;"
-                     data-name="shbz"><span>社会保障</span>
-                <div class="arrow" style="visibility: hidden;"></div>
-            </li>
-            <li onclick="window.location.href='culturalTourism.html'"><img src="images/menu_whlx.png" alt=""
-                                                                           style="width: 22px;height: 26px;" data-name="whlx"
-                                                                           onclick="window.location.href='culturalTourism.html'"><span>文化旅游</span>
-                <div class="arrow" style="visibility: hidden;"></div>
-            </li>
-            <li class="click"><img src="images/menu_wsylp.png" alt="" style="width: 30px;height: 29px;"
-                                   data-name="wsyl"><span>卫生医疗</span>
-                <div class="arrow"></div>
-            </li>
-            <li onclick="window.location.href='socialAssistance.html'"><img src="images/menu_shjz.png" alt=""
-                                                                            style="width: 31px;height: 27px;" data-name="shjz"><span>社会救助</span>
-                <div class="arrow" style="visibility: hidden;"></div>
-            </li>
-        </ul>
-    </div>
-    <div class="content">
-        <div class="year"><span>年份:</span>
-            <select id="year">
-                <option value="2021">2021年</option>
-                <option value="2022">2022年</option>
-            </select>
-        </div>
-        <div class="items div-wsyl">
-            <div class="cont" style="left: 58px;bottom: 146px;">
-                <div class="detail" style="background: linear-gradient(0deg, #FFFFFF, #E3EDFF);">
-                    <ul class="list ylfirst">
-                        <li><span>医疗卫生机构数:</span><span>628</span></li>
-                        <li><span>医院:</span><span>46</span></li>
-                        <li><span>卫生院:</span><span>7</span></li>
-                        <li><span>社区卫生服务中心(站):</span><span>46</span></li>
-                        <li><span>疾控中心:</span><span>1</span></li>
-                        <li><span>妇幼保健院:</span><span>1</span></li>
-                        <li><span>医疗卫生机构床位数:</span><span>17208</span></li>
-                        <li><span>医院、卫生院床位数:</span><span>7178</span></li>
-                        <li><span>保健院床位数:</span><span>30</span></li>
-                        <li><span>每干人口医院、卫生院床位数:</span><span>5.66</span></li>
-                    </ul>
-                </div>
-                <img src="images/content_tipone.png" alt="">
-            </div>
-            <div class="cont" style="left: 478px;bottom: 154px;">
-                <div class="detail" style="background: linear-gradient(0deg, #FFFFFF, #FFF2E6);">
-                    <ul class="list ylsecond">
-                        <li><span>卫生技术人员(人):</span><span>10856</span></li>
-                        <li><span>执业(助理)医师(人):</span><span>4267</span></li>
-                        <li><span>注册护士(人):</span><span>6589</span></li>
-                        <li><span>每千人口执业(助理):</span><span>3.36</span></li>
-                        <li><span>每千人口注册护士(人):</span><span>5.19</span></li>
-                    </ul>
-                </div>
-                <img src="images/content_tiptwo.png" alt="">
-            </div>
-            <div class="cont" style="left: 894px;bottom: 270px;">
-                <div class="detail" style="background: linear-gradient(0deg, #FFFFFF, #E6FFF8);">
-                    <ul class="list ylthird">
-                        <li><span>总诊疗人次(万人次):</span><span>288.2</span></li>
-                        <li><span>门急诊人次(人次):</span><span>280.0</span></li>
-                        <li><span>入院人次(万人次):</span><span>11.3</span></li>
-                        <li><span>出院人次(万人次):</span><span>11.3</span></li>
-                    </ul>
-                </div>
-                <img src="images/content_tipthree.png" alt="">
-            </div>
-            <img src="images/content_bg.png" alt="" class="bg">
-        </div>
-    </div>
-</div>
-<div style="width:100%;" id="footer"></div>
-</body>
-<script src="js/jquery-3.5.1.min.js"></script>
-<script>
-    var jsonData = [{
-        "year": "2021",
-        "ylwsjg": "682",
-        "yy": "46",
-        "wsy": "7",
-        "sqwsfwz": "46",
-        "jkzx": "1",
-        "fybjy": "1",
-        "ylwsjgcws": "7208",
-        "yycws": "7178",
-        "bjycws": "30",
-        "wsycws": "5.66",
-        "wsjsry": "10856",
-        "zyys": "4267",
-        "zchs": "6589",
-        "qkzyys": "3.36",
-        "qkzchs": "5.19",
-        "zzlrc": "288.2",
-        "mjzrc": "280.0",
-        "ryrc": "11.3",
-        "cyrc": "11.3",
-    }, {
-        "year": "2022",
-        "ylwsjg": "705",
-        "yy": "45",
-        "wsy": "7",
-        "sqwsfwz": "46",
-        "jkzx": "1",
-        "fybjy": "1",
-        "ylwsjgcws": "7255",
-        "yycws": "7225",
-        "bjycws": "30",
-        "wsycws": "6.03",
-        "wsjsry": "10981",
-        "zyys": "4299",
-        "zchs": "6682",
-        "qkzyys": "3.59",
-        "qkzchs": "5.58",
-        "zzlrc": "278.5",
-        "mjzrc": "265.9",
-        "ryrc": "8.0",
-        "cyrc": "8.0",
-    }]
-    $('#year').on('change', function () {
-        var value = $(this).val();
-        for (var i = 0; i < jsonData.length; i++) {
-            if (jsonData[i].year == value) {
-                var ylfirst = '';
-                ylfirst += '<li><span>医疗卫生机构数:</span><span>' + jsonData[i].ylwsjg + '</span></li>'
-                ylfirst += '<li><span>医院:</span><span>' + jsonData[i].yy + '</span></li>'
-                ylfirst += '<li><span>卫生院:</span><span>' + jsonData[i].wsy + '</span></li>'
-                ylfirst += '<li><span>社区卫生服务中心(站):</span><span>' + jsonData[i].sqwsfwz + '</span></li>'
-                ylfirst += '<li><span>疾控中心:</span><span>' + jsonData[i].jkzx + '</span></li>'
-                ylfirst += '<li><span>妇幼保健院:</span><span>' + jsonData[i].fybjy + '</span></li>'
-                ylfirst += '<li><span>医疗卫生机构床位数:</span><span>' + jsonData[i].ylwsjgcws + '</span></li>'
-                ylfirst += '<li><span>医院、卫生院床位数:</span><span>' + jsonData[i].yycws + '</span></li>'
-                ylfirst += '<li><span>保健院床位数:</span><span>' + jsonData[i].bjycws + '</span></li>'
-                ylfirst += '<li><span>每干人口医院、卫生院床位数:</span><span>' + jsonData[i].wsycws + '</span></li>'
-                var ylsecond = '';
-                ylsecond += '<li><span>卫生技术人员(人):</span><span>' + jsonData[i].wsjsry + '</span></li>'
-                ylsecond += '<li><span>执业(助理)医师(人):</span><span>' + jsonData[i].zyys + '</span></li>'
-                ylsecond += '<li><span>注册护士(人):</span><span>' + jsonData[i].zchs + '</span></li>'
-                ylsecond += '<li><span>每千人口执业(助理):</span><span>' + jsonData[i].qkzyys + '</span></li>'
-                ylsecond += '<li><span>每千人口注册护士(人):</span><span>' + jsonData[i].qkzchs + '</span></li>'
-                var ylthird = '';
-                ylthird += '<li><span>总诊疗人次(万人次):</span><span>' + jsonData[i].zzlrc + '</span></li>'
-                ylthird += '<li><span>门急诊人次(人次):</span><span>' + jsonData[i].mjzrc + '</span></li>'
-                ylthird += '<li><span>入院人次(万人次):</span><span>' + jsonData[i].ryrc + '</span></li>'
-                ylthird += '<li><span>出院人次(万人次):</span><span>' + jsonData[i].cyrc + '</span></li>'
-                $(".ylfirst").empty().html(ylfirst)
-                $(".ylsecond").empty().html(ylsecond)
-                $(".ylthird").empty().html(ylthird)
-            }
-        }
-    })
-</script>
-<script>
-    setHeader()
-    setFooter()
-    function setHeader(){
-        $("#header").load("https://www.cqna.gov.cn/ggbf_search/top/top_style.html  ")
-    }
-
-    function setFooter(){
-        $("#footer").load("https://www.cqna.gov.cn/data/footer/footer.html")
-    }
-</script>
-</html>

+ 40 - 28
nngkxxdp/src/main/resources/static/natj/dataCenter/js/culturalTourism.js

@@ -45,12 +45,15 @@ function culturalTourism() {
           "2023年12月",
           "2024年1月",
           "2024年2月",
-		  "2024年3月",
-		  "2024年4月",
-		  "2024年5月",
-		  "2024年6月",
-		  "2024年7月",
-		  "2024年8月"
+          "2024年3月",
+          "2024年4月",
+          "2024年5月",
+          "2024年6月",
+          "2024年7月",
+          "2024年8月",
+          "2024年9月",
+          "2024年10月",
+          "2024年11月"
         ],
         axisPointer: {
           type: "shadow",
@@ -85,7 +88,7 @@ function culturalTourism() {
             return value + " 人次";
           },
         },
-        data: [0, 788, 1026, 1740, 1967, 2200, 2720, 2748, 3231, 5539,6571,5639,3153,2802, 10793,1668,11773,10442,6194,5736],
+        data: [0, 788, 1026, 1740, 1967, 2200, 2720, 2748, 3231, 5539, 6571, 5639, 3153, 2802, 10793, 1668, 11773, 10442, 6194, 5736, 12817, 19451, 22148],
       },
       {
         name: "国内游客",
@@ -97,7 +100,7 @@ function culturalTourism() {
         },
         data: [
           4741245, 4821452, 4524574, 4054582, 4484144, 3325145, 4047415,
-          3415412, 4851414, 4914414,2175241,2812211,4892451,5132351, 4812451,4301241,4789152,3479836,4314117,3535124
+          3415412, 4851414, 4914414, 2175241, 2812211, 4892451, 5132351, 4812451, 4301241, 4789152, 3479836, 4314117, 3535124, 4912547, 5234589, 2294589
         ],
         itemStyle: {
           color: "#ed9121",
@@ -113,7 +116,7 @@ function culturalTourism() {
           },
         },
         data: [
-          33.46, 20.45, 26.2, 28.72, 18.09, 16.04, 10.66, 17.96, 13.98, 6.38,99.34,3.73,3.19,6.45,6.36,6.08,6.80,4.65,6.59,3.51
+          33.46, 20.45, 26.2, 28.72, 18.09, 16.04, 10.66, 17.96, 13.98, 6.38, 99.34, 3.73, 3.19, 6.45, 6.36, 6.08, 6.80, 4.65, 6.59, 3.51, 1.26, 6.52, 5.49
         ],
       },
       {
@@ -125,7 +128,7 @@ function culturalTourism() {
             return value + " %";
           },
         },
-        data: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0,0,0,0,255.58, 951.95,-4.14,498.53,374.64,127.72,108.73],
+        data: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255.58, 951.95, -4.14, 498.53, 374.64, 127.72, 108.73, 296.69, 251.16, 237.06],
       }
     ],
   };
@@ -182,12 +185,15 @@ function culturalTourism() {
           "2023年12月",
           "2024年1月",
           "2024年2月",
-		  "2024年3月",
-		  "2024年4月",
-		  "2024年5月",
+          "2024年3月",
+          "2024年4月",
+          "2024年5月",
           "2024年6月",
           "2024年7月",
-          "2024年8月"
+          "2024年8月",
+          "2024年9月",
+          "2024年10月",
+          "2024年11月"
         ],
         axisPointer: {
           type: "shadow",
@@ -224,7 +230,7 @@ function culturalTourism() {
         },
         data: [
           254124, 303870, 300848, 355720, 326500, 310942, 389612, 352098,
-          284177, 344331,276747,266758,250869,353031,315379,327435,331638,310273,373967,355736
+          284177, 344331, 276747, 266758, 250869, 353031, 315379, 327435, 331638, 310273, 373967, 355736, 282380, 417504, 350422
         ],
       },
       {
@@ -235,7 +241,7 @@ function culturalTourism() {
             return value + " 人次";
           },
         },
-        data: [0, 788, 1026, 1740, 1967, 2200, 2720, 2748, 3231, 5539,6571,5639,3153,2802, 10793,1668,11773,10442,6194,5736],
+        data: [0, 788, 1026, 1740, 1967, 2200, 2720, 2748, 3231, 5539, 6571, 5639, 3153, 2802, 10793, 1668, 11773, 10442, 6194, 5736, 12817, 19451, 22148],
         itemStyle: {
           color: "#ed9121",
         },
@@ -251,7 +257,7 @@ function culturalTourism() {
         },
         data: [
           22.09, 95.24, 132.26, 181.72, 116.83, 32.77, 22.13, 106.47, 26.06,
-          18.81,1076.45,137.03,-1.28,16.18,1.13,-7.95,1.57,-0.22,-4.02,1.03
+          18.81, 1076.45, 137.03, -1.28, 16.18, 1.13, -7.95, 1.57, -0.22, -4.02, 1.03, -0.63, 21.25, 26.62
         ],
       },
       {
@@ -263,7 +269,7 @@ function culturalTourism() {
             return value + " %";
           },
         },
-        data: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0,0,0,0,255.58,951.95,-4.14,498.53,374.64,127.72,108.73],
+        data: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255.58, 951.95, -4.14, 498.53, 374.64, 127.72, 108.73, 296.69, 251.16, 237.06],
       },
     ],
   };
@@ -321,12 +327,15 @@ function culturalTourism() {
           "2023年12月",
           "2024年1月",
           "2024年2月",
-		  "2024年3月",
+          "2024年3月",
           "2024年4月",
           "2024年5月",
           "2024年6月",
           "2024年7月",
-          "2024年8月"
+          "2024年8月",
+          "2024年9月",
+          "2024年10月",
+          "2024年11月"
         ],
         axisPointer: {
           type: "shadow",
@@ -363,7 +372,7 @@ function culturalTourism() {
         },
         data: [
           251414, 304154, 322454, 308451, 424215, 298541, 353411, 296332,
-          384412, 311452, 198541, 163741,271547,325145,342574,335214,461524,318641,383232,306124
+          384412, 311452, 198541, 163741, 271547, 325145, 342574, 335214, 461524, 318641, 383232, 306124, 393214, 341234, 213451
         ],
       },
       {
@@ -376,7 +385,7 @@ function culturalTourism() {
           },
         },
         data: [
-          38.55, 24.93, 34.84, 20.75, 26.53, 20.44, 15.02, 20.03, 19.22, 8.82,122.72,10.78,8.01,6.9,6.24,8.68,8.79,6.73,8.44,6.91
+          38.55, 24.93, 34.84, 20.75, 26.53, 20.44, 15.02, 20.03, 19.22, 8.82, 122.72, 10.78, 8.01, 6.9, 6.24, 8.68, 8.79, 6.73, 8.44, 6.91, 2.29, 9.56, 7.51
         ],
       },
     ],
@@ -435,12 +444,15 @@ function culturalTourism() {
           "2023年12月",
           "2024年1月",
           "2024年2月",
-		  "2024年3月",
+          "2024年3月",
           "2024年4月",
           "2024年5月",
           "2024年6月",
           "2024年7月",
-          "2024年8月"
+          "2024年8月",
+          "2024年9月",
+          "2024年10月",
+          "2024年11月"
         ],
         axisPointer: {
           type: "shadow",
@@ -476,7 +488,7 @@ function culturalTourism() {
           },
         },
         data: [
-          33102, 33104, 33245, 33447, 33541, 33654, 33145, 33210, 32010, 32511,31214,32345,34611,34341,34311,33941,33924,34921,34321,34524
+          33102, 33104, 33245, 33447, 33541, 33654, 33145, 33210, 32010, 32511, 31214, 32345, 34611, 34341, 34311, 33941, 33924, 34921, 34321, 34524, 33214, 33014, 32114
         ],
       },
       {
@@ -488,7 +500,7 @@ function culturalTourism() {
             return value + " 万元";
           },
         },
-        data: [6642, 6647, 6721, 6842, 6847, 6719, 6641, 6652, 6622, 6421,6424,5934,6721,6814,6841,6914,6917,6912,6924,6845],
+        data: [6642, 6647, 6721, 6842, 6847, 6719, 6641, 6652, 6622, 6421, 6424, 5934, 6721, 6814, 6841, 6914, 6917, 6912, 6924, 6845, 6784, 6529, 6524],
       },
       {
         name: "旅游从业人数同比增减",
@@ -499,7 +511,7 @@ function culturalTourism() {
             return value + " %";
           },
         },
-        data: [3.12, 3.05, 3.54, 4.2, 4.86, 5.23, 3.67, 5.57, 3.22, 4.07,3.63,1.13,4.56,3.74,3.21,1.48,1.14,3.76,3.55,3.96],
+        data: [3.12, 3.05, 3.54, 4.2, 4.86, 5.23, 3.67, 5.57, 3.22, 4.07, 3.63, 1.13, 4.56, 3.74, 3.21, 1.48, 1.14, 3.76, 3.55, 3.96, 3.76, 1.55, 2.88],
       },
       {
         name: "旅游直接从业人数同比增减",
@@ -510,7 +522,7 @@ function culturalTourism() {
             return value + " %";
           },
         },
-        data: [3.46, 3.46, 4.69, 6.66, 6.98, 5.15, 4.03, 4.76, 4.88, 2.88,9.53,0.37,1.19,2.51,1.79,1.05,1.02,2.87,2.90],
+        data: [3.46, 3.46, 4.69, 6.66, 6.98, 5.15, 4.03, 4.76, 4.88, 2.88, 9.53, 0.37, 1.19, 2.51, 1.79, 1.05, 1.02, 2.87, 2.90, 2.45, 1.68, 1.56],
       },
     ],
   };

+ 34 - 18
nngkxxdp/src/main/resources/static/natj/dataCenter/js/culturalTourismMobile.js

@@ -49,7 +49,11 @@ function culturalTourism() {
           "2024年4月",
           "2024年5月",
           "2024年6月",
-          "2024年7月"
+          "2024年7月",
+          "2024年8月",
+          "2024年9月",
+          "2024年10月",
+          "2024年11月"
         ],
         axisPointer: {
           type: "shadow",
@@ -84,7 +88,7 @@ function culturalTourism() {
             return value + " 人次";
           },
         },
-        data: [0, 788, 1026, 1740, 1967, 2200, 2720, 2748, 3231, 5539,6571,5639,3153,2802, 10793,1668,11773,10442,6194],
+        data: [0, 788, 1026, 1740, 1967, 2200, 2720, 2748, 3231, 5539, 6571, 5639, 3153, 2802, 10793, 1668, 11773, 10442, 6194, 5736, 12817, 19451, 22148],
       },
       {
         name: "国内游客",
@@ -96,7 +100,7 @@ function culturalTourism() {
         },
         data: [
           4741245, 4821452, 4524574, 4054582, 4484144, 3325145, 4047415,
-          3415412, 4851414, 4914414,2175241,2812211,4892451,5132351, 4812451,4301241,4789152,3479836,4314117
+          3415412, 4851414, 4914414, 2175241, 2812211, 4892451, 5132351, 4812451, 4301241, 4789152, 3479836, 4314117, 3535124, 4912547, 5234589, 2294589
         ],
         itemStyle: {
           color: "#ed9121",
@@ -112,7 +116,7 @@ function culturalTourism() {
           },
         },
         data: [
-          33.46, 20.45, 26.2, 28.72, 18.09, 16.04, 10.66, 17.96, 13.98, 6.38,99.34,3.73,3.19,6.45,6.36,6.08,6.80,4.65,6.59
+          33.46, 20.45, 26.2, 28.72, 18.09, 16.04, 10.66, 17.96, 13.98, 6.38, 99.34, 3.73, 3.19, 6.45, 6.36, 6.08, 6.80, 4.65, 6.59, 3.51, 1.26, 6.52, 5.49
         ],
       },
       {
@@ -124,7 +128,7 @@ function culturalTourism() {
             return value + " %";
           },
         },
-        data: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0,0,0,0,255.58, 951.95,-4.14,498.53,374.64,127.72],
+        data: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255.58, 951.95, -4.14, 498.53, 374.64, 127.72, 108.73, 296.69, 251.16, 237.06],
       }
     ],
   };
@@ -185,7 +189,11 @@ function culturalTourism() {
           "2024年4月",
           "2024年5月",
           "2024年6月",
-          "2024年7月"
+          "2024年7月",
+          "2024年8月",
+          "2024年9月",
+          "2024年10月",
+          "2024年11月"
         ],
         axisPointer: {
           type: "shadow",
@@ -222,7 +230,7 @@ function culturalTourism() {
         },
         data: [
           254124, 303870, 300848, 355720, 326500, 310942, 389612, 352098,
-          284177, 344331,276747,266758,250869,353031,315379,327435,331638,310273,373967
+          284177, 344331, 276747, 266758, 250869, 353031, 315379, 327435, 331638, 310273, 373967, 355736, 282380, 417504, 350422
         ],
       },
       {
@@ -233,7 +241,7 @@ function culturalTourism() {
             return value + " 人次";
           },
         },
-        data: [0, 788, 1026, 1740, 1967, 2200, 2720, 2748, 3231, 5539,6571,5639,3153,2802, 10793,1668,11773,10442,6194],
+        data: [0, 788, 1026, 1740, 1967, 2200, 2720, 2748, 3231, 5539, 6571, 5639, 3153, 2802, 10793, 1668, 11773, 10442, 6194, 5736, 12817, 19451, 22148],
         itemStyle: {
           color: "#ed9121",
         },
@@ -249,7 +257,7 @@ function culturalTourism() {
         },
         data: [
           22.09, 95.24, 132.26, 181.72, 116.83, 32.77, 22.13, 106.47, 26.06,
-          18.81,1076.45,137.03,-1.28,16.18,1.13,-7.95,1.57,-0.22,-4.02
+          18.81, 1076.45, 137.03, -1.28, 16.18, 1.13, -7.95, 1.57, -0.22, -4.02, 1.03, -0.63, 21.25, 26.62
         ],
       },
       {
@@ -261,7 +269,7 @@ function culturalTourism() {
             return value + " %";
           },
         },
-        data: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0,0,0,0,255.58,951.95,-4.14,498.53,374.64,127.72],
+        data: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255.58, 951.95, -4.14, 498.53, 374.64, 127.72, 108.73, 296.69, 251.16, 237.06],
       },
     ],
   };
@@ -323,7 +331,11 @@ function culturalTourism() {
           "2024年4月",
           "2024年5月",
           "2024年6月",
-          "2024年7月"
+          "2024年7月",
+          "2024年8月",
+          "2024年9月",
+          "2024年10月",
+          "2024年11月"
         ],
         axisPointer: {
           type: "shadow",
@@ -360,7 +372,7 @@ function culturalTourism() {
         },
         data: [
           251414, 304154, 322454, 308451, 424215, 298541, 353411, 296332,
-          384412, 311452, 198541, 163741,271547,325145,342574,335214,461524,318641,383232
+          384412, 311452, 198541, 163741, 271547, 325145, 342574, 335214, 461524, 318641, 383232, 306124, 393214, 341234, 213451
         ],
       },
       {
@@ -373,7 +385,7 @@ function culturalTourism() {
           },
         },
         data: [
-          38.55, 24.93, 34.84, 20.75, 26.53, 20.44, 15.02, 20.03, 19.22, 8.82,122.72,10.78,8.01,6.9,6.24,8.68,8.79,6.73,8.44
+          38.55, 24.93, 34.84, 20.75, 26.53, 20.44, 15.02, 20.03, 19.22, 8.82, 122.72, 10.78, 8.01, 6.9, 6.24, 8.68, 8.79, 6.73, 8.44, 6.91, 2.29, 9.56, 7.51
         ],
       },
     ],
@@ -436,7 +448,11 @@ function culturalTourism() {
           "2024年4月",
           "2024年5月",
           "2024年6月",
-          "2024年7月"
+          "2024年7月",
+          "2024年8月",
+          "2024年9月",
+          "2024年10月",
+          "2024年11月"
         ],
         axisPointer: {
           type: "shadow",
@@ -472,7 +488,7 @@ function culturalTourism() {
           },
         },
         data: [
-          33102, 33104, 33245, 33447, 33541, 33654, 33145, 33210, 32010, 32511,31214,32345,34611,34341,34311,33941,33924,34921,34321
+          33102, 33104, 33245, 33447, 33541, 33654, 33145, 33210, 32010, 32511, 31214, 32345, 34611, 34341, 34311, 33941, 33924, 34921, 34321, 34524, 33214, 33014, 32114
         ],
       },
       {
@@ -484,7 +500,7 @@ function culturalTourism() {
             return value + " 万元";
           },
         },
-        data: [6642, 6647, 6721, 6842, 6847, 6719, 6641, 6652, 6622, 6421,6424,5934,6721,6814,6841,6914,6917,6912,6924],
+        data: [6642, 6647, 6721, 6842, 6847, 6719, 6641, 6652, 6622, 6421, 6424, 5934, 6721, 6814, 6841, 6914, 6917, 6912, 6924, 6845, 6784, 6529, 6524],
       },
       {
         name: "旅游从业人数同比增减",
@@ -495,7 +511,7 @@ function culturalTourism() {
             return value + " %";
           },
         },
-        data: [3.12, 3.05, 3.54, 4.2, 4.86, 5.23, 3.67, 5.57, 3.22, 4.07,3.63,1.13,4.56,3.74,3.21,1.48,1.14,3.76,3.55],
+        data: [3.12, 3.05, 3.54, 4.2, 4.86, 5.23, 3.67, 5.57, 3.22, 4.07, 3.63, 1.13, 4.56, 3.74, 3.21, 1.48, 1.14, 3.76, 3.55, 3.96, 3.76, 1.55, 2.88],
       },
       {
         name: "旅游直接从业人数同比增减",
@@ -506,7 +522,7 @@ function culturalTourism() {
             return value + " %";
           },
         },
-        data: [3.46, 3.46, 4.69, 6.66, 6.98, 5.15, 4.03, 4.76, 4.88, 2.88,9.53,0.37,1.19,2.51,1.79,1.05,1.02,2.87,4.26],
+        data: [3.46, 3.46, 4.69, 6.66, 6.98, 5.15, 4.03, 4.76, 4.88, 2.88, 9.53, 0.37, 1.19, 2.51, 1.79, 1.05, 1.02, 2.87, 2.90, 2.45, 1.68, 1.56],
       },
     ],
   };

+ 31 - 19
nngkxxdp/src/main/resources/static/natj/dataCenter/js/culturalTourismMobileZt.js

@@ -50,7 +50,10 @@ function culturalTourism() {
           "2024年5月",
           "2024年6月",
           "2024年7月",
-          "2024年8月"
+          "2024年8月",
+          "2024年9月",
+          "2024年10月",
+          "2024年11月"
         ],
         axisPointer: {
           type: "shadow",
@@ -85,7 +88,7 @@ function culturalTourism() {
             return value + " 人次";
           },
         },
-        data: [0, 788, 1026, 1740, 1967, 2200, 2720, 2748, 3231, 5539,6571,5639,3153,2802, 10793,1668,11773,10442,6194,5736],
+        data: [0, 788, 1026, 1740, 1967, 2200, 2720, 2748, 3231, 5539, 6571, 5639, 3153, 2802, 10793, 1668, 11773, 10442, 6194, 5736, 12817, 19451, 22148],
       },
       {
         name: "国内游客",
@@ -97,7 +100,7 @@ function culturalTourism() {
         },
         data: [
           4741245, 4821452, 4524574, 4054582, 4484144, 3325145, 4047415,
-          3415412, 4851414, 4914414,2175241,2812211,4892451,5132351, 4812451,4301241,4789152,3479836,4314117,3535124
+          3415412, 4851414, 4914414, 2175241, 2812211, 4892451, 5132351, 4812451, 4301241, 4789152, 3479836, 4314117, 3535124, 4912547, 5234589, 2294589
         ],
         itemStyle: {
           color: "#ed9121",
@@ -113,7 +116,7 @@ function culturalTourism() {
           },
         },
         data: [
-          33.46, 20.45, 26.2, 28.72, 18.09, 16.04, 10.66, 17.96, 13.98, 6.38,99.34,3.73,3.19,6.45,6.36,6.08,6.80,4.65,6.59,3.51
+          33.46, 20.45, 26.2, 28.72, 18.09, 16.04, 10.66, 17.96, 13.98, 6.38, 99.34, 3.73, 3.19, 6.45, 6.36, 6.08, 6.80, 4.65, 6.59, 3.51, 1.26, 6.52, 5.49
         ],
       },
       {
@@ -125,7 +128,7 @@ function culturalTourism() {
             return value + " %";
           },
         },
-        data: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0,0,0,0,255.58, 951.95,-4.14,498.53,374.64,127.72,108.73],
+        data: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255.58, 951.95, -4.14, 498.53, 374.64, 127.72, 108.73, 296.69, 251.16, 237.06],
       }
     ],
   };
@@ -133,7 +136,7 @@ function culturalTourism() {
   option && myChart.setOption(option);
 
   var chartDom = document.getElementById("gyykEchart");
-  if(!chartDom){
+  if (!chartDom) {
     return
   }
   var myChart = echarts.init(chartDom);
@@ -190,7 +193,10 @@ function culturalTourism() {
           "2024年5月",
           "2024年6月",
           "2024年7月",
-          "2024年8月"
+          "2024年8月",
+          "2024年9月",
+          "2024年10月",
+          "2024年11月"
         ],
         axisPointer: {
           type: "shadow",
@@ -227,7 +233,7 @@ function culturalTourism() {
         },
         data: [
           254124, 303870, 300848, 355720, 326500, 310942, 389612, 352098,
-          284177, 344331,276747,266758,250869,353031,315379,327435,331638,310273,373967,355736
+          284177, 344331, 276747, 266758, 250869, 353031, 315379, 327435, 331638, 310273, 373967, 355736, 282380, 417504, 350422
         ],
       },
       {
@@ -238,7 +244,7 @@ function culturalTourism() {
             return value + " 人次";
           },
         },
-        data: [0, 788, 1026, 1740, 1967, 2200, 2720, 2748, 3231, 5539,6571,5639,3153,2802, 10793,1668,11773,10442,6194,5736],
+        data: [0, 788, 1026, 1740, 1967, 2200, 2720, 2748, 3231, 5539, 6571, 5639, 3153, 2802, 10793, 1668, 11773, 10442, 6194, 5736, 12817, 19451, 22148],
         itemStyle: {
           color: "#ed9121",
         },
@@ -254,7 +260,7 @@ function culturalTourism() {
         },
         data: [
           22.09, 95.24, 132.26, 181.72, 116.83, 32.77, 22.13, 106.47, 26.06,
-          18.81,1076.45,137.03,-1.28,16.18,1.13,-7.95,1.57,-0.22,-4.02,1.03
+          18.81, 1076.45, 137.03, -1.28, 16.18, 1.13, -7.95, 1.57, -0.22, -4.02, 1.03, -0.63, 21.25, 26.62
         ],
       },
       {
@@ -266,7 +272,7 @@ function culturalTourism() {
             return value + " %";
           },
         },
-        data: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0,0,0,0,255.58,951.95,-4.14,498.53,374.64,127.72,108.73],
+        data: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255.58, 951.95, -4.14, 498.53, 374.64, 127.72, 108.73, 296.69, 251.16, 237.06],
       },
     ],
   };
@@ -329,7 +335,10 @@ function culturalTourism() {
           "2024年5月",
           "2024年6月",
           "2024年7月",
-          "2024年8月"
+          "2024年8月",
+          "2024年9月",
+          "2024年10月",
+          "2024年11月"
         ],
         axisPointer: {
           type: "shadow",
@@ -366,7 +375,7 @@ function culturalTourism() {
         },
         data: [
           251414, 304154, 322454, 308451, 424215, 298541, 353411, 296332,
-          384412, 311452, 198541, 163741,271547,325145,342574,335214,461524,318641,383232,306124
+          384412, 311452, 198541, 163741, 271547, 325145, 342574, 335214, 461524, 318641, 383232, 306124, 393214, 341234, 213451
         ],
       },
       {
@@ -379,7 +388,7 @@ function culturalTourism() {
           },
         },
         data: [
-          38.55, 24.93, 34.84, 20.75, 26.53, 20.44, 15.02, 20.03, 19.22, 8.82,122.72,10.78,8.01,6.9,6.24,8.68,8.79,6.73,8.44,6.91
+          38.55, 24.93, 34.84, 20.75, 26.53, 20.44, 15.02, 20.03, 19.22, 8.82, 122.72, 10.78, 8.01, 6.9, 6.24, 8.68, 8.79, 6.73, 8.44, 6.91, 2.29, 9.56, 7.51
         ],
       },
     ],
@@ -443,7 +452,10 @@ function culturalTourism() {
           "2024年5月",
           "2024年6月",
           "2024年7月",
-          "2024年8月"
+          "2024年8月",
+          "2024年9月",
+          "2024年10月",
+          "2024年11月"
         ],
         axisPointer: {
           type: "shadow",
@@ -479,7 +491,7 @@ function culturalTourism() {
           },
         },
         data: [
-          33102, 33104, 33245, 33447, 33541, 33654, 33145, 33210, 32010, 32511,31214,32345,34611,34341,34311,33941,33924,34921,34321,34524
+          33102, 33104, 33245, 33447, 33541, 33654, 33145, 33210, 32010, 32511, 31214, 32345, 34611, 34341, 34311, 33941, 33924, 34921, 34321, 34524, 33214, 33014, 32114
         ],
       },
       {
@@ -491,7 +503,7 @@ function culturalTourism() {
             return value + " 万元";
           },
         },
-        data: [6642, 6647, 6721, 6842, 6847, 6719, 6641, 6652, 6622, 6421,6424,5934,6721,6814,6841,6914,6917,6912,6924,6845],
+        data: [6642, 6647, 6721, 6842, 6847, 6719, 6641, 6652, 6622, 6421, 6424, 5934, 6721, 6814, 6841, 6914, 6917, 6912, 6924, 6845, 6784, 6529, 6524],
       },
       {
         name: "旅游从业人数同比增减",
@@ -502,7 +514,7 @@ function culturalTourism() {
             return value + " %";
           },
         },
-        data: [3.12, 3.05, 3.54, 4.2, 4.86, 5.23, 3.67, 5.57, 3.22, 4.07,3.63,1.13,4.56,3.74,3.21,1.48,1.14,3.76,3.55,3.96],
+        data: [3.12, 3.05, 3.54, 4.2, 4.86, 5.23, 3.67, 5.57, 3.22, 4.07, 3.63, 1.13, 4.56, 3.74, 3.21, 1.48, 1.14, 3.76, 3.55, 3.96, 3.76, 1.55, 2.88],
       },
       {
         name: "旅游直接从业人数同比增减",
@@ -513,7 +525,7 @@ function culturalTourism() {
             return value + " %";
           },
         },
-        data: [3.46, 3.46, 4.69, 6.66, 6.98, 5.15, 4.03, 4.76, 4.88, 2.88,9.53,0.37,1.19,2.51,1.79,1.05,1.02,2.87,2.90],
+        data: [3.46, 3.46, 4.69, 6.66, 6.98, 5.15, 4.03, 4.76, 4.88, 2.88, 9.53, 0.37, 1.19, 2.51, 1.79, 1.05, 1.02, 2.87, 2.90, 2.45, 1.68, 1.56],
       },
     ],
   };

+ 31 - 19
nngkxxdp/src/main/resources/static/natj/dataCenter/js/culturalTourismNew.js

@@ -50,7 +50,10 @@ function culturalTourism() {
           "2024年5月",
           "2024年6月",
           "2024年7月",
-          "2024年8月"
+          "2024年8月",
+          "2024年9月",
+          "2024年10月",
+          "2024年11月"
         ],
         axisPointer: {
           type: "shadow",
@@ -85,7 +88,7 @@ function culturalTourism() {
             return value + " 人次";
           },
         },
-        data: [0, 788, 1026, 1740, 1967, 2200, 2720, 2748, 3231, 5539,6571,5639,3153,2802, 10793,1668,11773,10442,6194,5736],
+        data: [0, 788, 1026, 1740, 1967, 2200, 2720, 2748, 3231, 5539, 6571, 5639, 3153, 2802, 10793, 1668, 11773, 10442, 6194, 5736, 12817, 19451, 22148],
       },
       {
         name: "国内游客",
@@ -97,7 +100,7 @@ function culturalTourism() {
         },
         data: [
           4741245, 4821452, 4524574, 4054582, 4484144, 3325145, 4047415,
-          3415412, 4851414, 4914414,2175241,2812211,4892451,5132351, 4812451,4301241,4789152,3479836,4314117,3535124
+          3415412, 4851414, 4914414, 2175241, 2812211, 4892451, 5132351, 4812451, 4301241, 4789152, 3479836, 4314117, 3535124, 4912547, 5234589, 2294589
         ],
         itemStyle: {
           color: "#ed9121",
@@ -113,7 +116,7 @@ function culturalTourism() {
           },
         },
         data: [
-          33.46, 20.45, 26.2, 28.72, 18.09, 16.04, 10.66, 17.96, 13.98, 6.38,99.34,3.73,3.19,6.45,6.36,6.08,6.80,4.65,6.59,3.51
+          33.46, 20.45, 26.2, 28.72, 18.09, 16.04, 10.66, 17.96, 13.98, 6.38, 99.34, 3.73, 3.19, 6.45, 6.36, 6.08, 6.80, 4.65, 6.59, 3.51, 1.26, 6.52, 5.49
         ],
       },
       {
@@ -125,7 +128,7 @@ function culturalTourism() {
             return value + " %";
           },
         },
-        data: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0,0,0,0,255.58, 951.95,-4.14,498.53,374.64,127.72,108.73],
+        data: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255.58, 951.95, -4.14, 498.53, 374.64, 127.72, 108.73, 296.69, 251.16, 237.06],
       }
     ],
   };
@@ -133,7 +136,7 @@ function culturalTourism() {
   option && myChart.setOption(option);
 
   var chartDom = document.getElementById("gyykEchart");
-  if(!chartDom){
+  if (!chartDom) {
     return
   }
   var myChart = echarts.init(chartDom);
@@ -190,7 +193,10 @@ function culturalTourism() {
           "2024年5月",
           "2024年6月",
           "2024年7月",
-          "2024年8月"
+          "2024年8月",
+          "2024年9月",
+          "2024年10月",
+          "2024年11月"
         ],
         axisPointer: {
           type: "shadow",
@@ -227,7 +233,7 @@ function culturalTourism() {
         },
         data: [
           254124, 303870, 300848, 355720, 326500, 310942, 389612, 352098,
-          284177, 344331,276747,266758,250869,353031,315379,327435,331638,310273,373967,355736
+          284177, 344331, 276747, 266758, 250869, 353031, 315379, 327435, 331638, 310273, 373967, 355736, 282380, 417504, 350422
         ],
       },
       {
@@ -238,7 +244,7 @@ function culturalTourism() {
             return value + " 人次";
           },
         },
-        data: [0, 788, 1026, 1740, 1967, 2200, 2720, 2748, 3231, 5539,6571,5639,3153,2802, 10793,1668,11773,10442,6194,5736],
+        data: [0, 788, 1026, 1740, 1967, 2200, 2720, 2748, 3231, 5539, 6571, 5639, 3153, 2802, 10793, 1668, 11773, 10442, 6194, 5736, 12817, 19451, 22148],
         itemStyle: {
           color: "#ed9121",
         },
@@ -254,7 +260,7 @@ function culturalTourism() {
         },
         data: [
           22.09, 95.24, 132.26, 181.72, 116.83, 32.77, 22.13, 106.47, 26.06,
-          18.81,1076.45,137.03,-1.28,16.18,1.13,-7.95,1.57,-0.22,-4.02,1.03
+          18.81, 1076.45, 137.03, -1.28, 16.18, 1.13, -7.95, 1.57, -0.22, -4.02, 1.03, -0.63, 21.25, 26.62
         ],
       },
       {
@@ -266,7 +272,7 @@ function culturalTourism() {
             return value + " %";
           },
         },
-        data: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0,0,0,0,255.58,951.95,-4.14,498.53,374.64,127.72,108.73],
+        data: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255.58, 951.95, -4.14, 498.53, 374.64, 127.72, 108.73, 296.69, 251.16, 237.06],
       },
     ],
   };
@@ -329,7 +335,10 @@ function culturalTourism() {
           "2024年5月",
           "2024年6月",
           "2024年7月",
-          "2024年8月"
+          "2024年8月",
+          "2024年9月",
+          "2024年10月",
+          "2024年11月"
         ],
         axisPointer: {
           type: "shadow",
@@ -366,7 +375,7 @@ function culturalTourism() {
         },
         data: [
           251414, 304154, 322454, 308451, 424215, 298541, 353411, 296332,
-          384412, 311452, 198541, 163741,271547,325145,342574,335214,461524,318641,383232,306124
+          384412, 311452, 198541, 163741, 271547, 325145, 342574, 335214, 461524, 318641, 383232, 306124, 393214, 341234, 213451
         ],
       },
       {
@@ -379,7 +388,7 @@ function culturalTourism() {
           },
         },
         data: [
-          38.55, 24.93, 34.84, 20.75, 26.53, 20.44, 15.02, 20.03, 19.22, 8.82,122.72,10.78,8.01,6.9,6.24,8.68,8.79,6.73,8.44,6.91
+          38.55, 24.93, 34.84, 20.75, 26.53, 20.44, 15.02, 20.03, 19.22, 8.82, 122.72, 10.78, 8.01, 6.9, 6.24, 8.68, 8.79, 6.73, 8.44, 6.91, 2.29, 9.56, 7.51
         ],
       },
     ],
@@ -443,7 +452,10 @@ function culturalTourism() {
           "2024年5月",
           "2024年6月",
           "2024年7月",
-          "2024年8月"
+          "2024年8月",
+          "2024年9月",
+          "2024年10月",
+          "2024年11月"
         ],
         axisPointer: {
           type: "shadow",
@@ -479,7 +491,7 @@ function culturalTourism() {
           },
         },
         data: [
-          33102, 33104, 33245, 33447, 33541, 33654, 33145, 33210, 32010, 32511,31214,32345,34611,34341,34311,33941,33924,34921,34321,34524
+          33102, 33104, 33245, 33447, 33541, 33654, 33145, 33210, 32010, 32511, 31214, 32345, 34611, 34341, 34311, 33941, 33924, 34921, 34321, 34524, 33214, 33014, 32114
         ],
       },
       {
@@ -491,7 +503,7 @@ function culturalTourism() {
             return value + " 万元";
           },
         },
-        data: [6642, 6647, 6721, 6842, 6847, 6719, 6641, 6652, 6622, 6421,6424,5934,6721,6814,6841,6914,6917,6912,6924,6845],
+        data: [6642, 6647, 6721, 6842, 6847, 6719, 6641, 6652, 6622, 6421, 6424, 5934, 6721, 6814, 6841, 6914, 6917, 6912, 6924, 6845, 6784, 6529, 6524],
       },
       {
         name: "旅游从业人数同比增减",
@@ -502,7 +514,7 @@ function culturalTourism() {
             return value + " %";
           },
         },
-        data: [3.12, 3.05, 3.54, 4.2, 4.86, 5.23, 3.67, 5.57, 3.22, 4.07,3.63,1.13,4.56,3.74,3.21,1.48,1.14,3.76,3.55,3.96],
+        data: [3.12, 3.05, 3.54, 4.2, 4.86, 5.23, 3.67, 5.57, 3.22, 4.07, 3.63, 1.13, 4.56, 3.74, 3.21, 1.48, 1.14, 3.76, 3.55, 3.96, 3.76, 1.55, 2.88],
       },
       {
         name: "旅游直接从业人数同比增减",
@@ -513,7 +525,7 @@ function culturalTourism() {
             return value + " %";
           },
         },
-        data: [3.46, 3.46, 4.69, 6.66, 6.98, 5.15, 4.03, 4.76, 4.88, 2.88,9.53,0.37,1.19,2.51,1.79,1.05,1.02,2.87,2.90],
+        data: [3.46, 3.46, 4.69, 6.66, 6.98, 5.15, 4.03, 4.76, 4.88, 2.88, 9.53, 0.37, 1.19, 2.51, 1.79, 1.05, 1.02, 2.87, 2.90, 2.45, 1.68, 1.56],
       },
     ],
   };

+ 0 - 88
nngkxxdp/src/main/resources/static/natj/dataCenter/socialAssistance.html

@@ -1,88 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-
-<head>
-    <meta charset="UTF-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1.0">
-    <title>数据中心</title>
-    <link rel="stylesheet" href="css/conmon.css">
-    <link rel="stylesheet" href="css/index.css">
-    <meta name="SiteName" content="重庆市南岸区人民政府">
-    <meta name="SiteDomain" content="http://www.cqna.gov.cn">
-    <meta name="SiteIDCode" content="5001080014">
-
-    <!--栏目类-->
-    <meta name="ColumnName" content="数据开放_社会救助">
-    <meta name="ColumnDescription" content="">
-    <meta name="ColumnKeywords" content="">
-    <meta name="ColumnType" content="数据开放_社会救助">
-    <style>
-        #shjzEchar {
-            width: 100%;
-            height: 710px;
-        }
-    </style>
-</head>
-
-<body>
-<div style="width:100%;height:280px" id="header"></div>
-<div class="main">
-    <div class="menu">
-        <ul class="tabs">
-            <li onclick="window.location.href='socialSecurity.html'">
-                <img src="images/menu_shbz.png" alt="" style="width: 27px;height: 21px;"
-                     data-name="shbz"><span>社会保障</span>
-                <div class="arrow" style="visibility: hidden;"></div>
-            </li>
-            <li onclick="window.location.href='culturalTourism.html'"><img src="images/menu_whlx.png" alt=""
-                                                                           style="width: 22px;height: 26px;" data-name="whlx"><span>文化旅游</span>
-                <div class="arrow" style="visibility: hidden;"></div>
-            </li>
-            <li onclick="window.location.href='healthCare.html'"><img src="images/menu_wsyl.png" alt=""
-                                                                      style="width: 30px;height: 29px;" data-name="wsyl"><span>卫生医疗</span>
-                <div class="arrow" style="visibility: hidden;"></div>
-            </li>
-            <li class="click" onclick="window.location.href='socialAssistance.html'"><img
-                    src="images/menu_shjzp.png" alt="" style="width: 31px;height: 27px;"
-                    data-name="shjz"><span>社会救助</span>
-                <div class="arrow"></div>
-            </li>
-        </ul>
-    </div>
-    <div class="content">
-        <div class="items div-shjz">
-            <ul class="title">
-                <li class="list click" data-type="1">最低生活保障数据</li>
-                <li class="list" data-type="2">特困人员救助供养数据</li>
-                <li class="list" data-type="3">临时救助数据</li>
-            </ul>
-            <div id="shjzEchar"></div>
-        </div>
-    </div>
-</div>
-<div style="width:100%;" id="footer"></div>
-</body>
-<script src="js/jquery-3.5.1.min.js"></script>
-<script src="js/echarts.min.js"></script>
-<script src="js/socialAssistance.js"></script>
-<script>
-    //社会救助菜单导航
-    $('.div-shjz .title').on('click', 'li', function () {
-        var tapsTitleLi = $('.div-shjz .title li');
-        tapsTitleLi.removeClass('click');
-        $(this).addClass('click');
-    })
-</script>
-<script>
-    setHeader()
-    setFooter()
-    function setHeader(){
-        $("#header").load("https://www.cqna.gov.cn/ggbf_search/top/top_style.html  ")
-    }
-
-    function setFooter(){
-        $("#footer").load("https://www.cqna.gov.cn/data/footer/footer.html")
-    }
-</script>
-</html>

+ 0 - 278
nngkxxdp/src/main/resources/static/natj/dataCenter/socialSecurity.html

@@ -1,278 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-
-<head>
-    <meta charset="UTF-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1.0">
-    <title>数据中心</title>
-    <link rel="stylesheet" href="css/conmon.css">
-    <link rel="stylesheet" href="css/index.css">
-    <meta name="SiteName" content="重庆市南岸区人民政府">
-    <meta name="SiteDomain" content="http://www.cqna.gov.cn">
-    <meta name="SiteIDCode" content="5001080014">
-
-    <!--栏目类-->
-    <meta name="ColumnName" content="数据开放_社会救助">
-    <meta name="ColumnDescription" content="">
-    <meta name="ColumnKeywords" content="">
-    <meta name="ColumnType" content="数据开放_社会救助">
-    <style>
-    </style>
-</head>
-
-<body>
-<div style="width:100%;height:280px" id="header"></div>
-    <div class="main">
-        <div class="menu">
-            <ul class="tabs">
-                <li class="click" onclick="window.location.href='socialSecurity.html'">
-                    <img src="images/menu_shbzp.png" alt="" style="width: 27px;height: 21px;"
-                        data-name="shbz"><span>社会保障</span>
-                    <div class="arrow"></div>
-                </li>
-                <li onclick="window.location.href='culturalTourism.html'"><img src="images/menu_whlx.png" alt=""
-                        style="width: 22px;height: 26px;" data-name="whlx"><span>文化旅游</span>
-                    <div class="arrow" style="visibility: hidden;"></div>
-                </li>
-                <li onclick="window.location.href='healthCare.html'"><img src="images/menu_wsyl.png" alt=""
-                        style="width: 30px;height: 29px;" data-name="wsyl"><span>卫生医疗</span>
-                    <div class="arrow" style="visibility: hidden;"></div>
-                </li>
-                <li onclick="window.location.href='socialAssistance.html'"><img src="images/menu_shjz.png" alt=""
-                        style="width: 31px;height: 27px;" data-name="shjz"><span>社会救助</span>
-                    <div class="arrow" style="visibility: hidden;"></div>
-                </li>
-            </ul>
-        </div>
-        <div class="content">
-            <div class="year"><span>年份:</span>
-                <select id="year">
-                    <option value="2021">2021年</option>
-                    <option value="2022">2022年</option>
-                </select>
-            </div>
-            <div class="items div-shbz">
-                <ul class="itemData">
-                    <li>
-                        <img src="images/content_icon_one.png" alt="">
-                        <div class="right">
-                            <div>城镇新增就业人数</div>
-                            <div class="bottom">
-                                <div class="number">3.74</div>
-                                <div class="unit">万人</div>
-                            </div>
-                        </div>
-                    </li>
-                    <li>
-                        <img src="images/content_icon_two.png" alt="">
-                        <div class="right">
-                            <div>城镇登记失业人员就业人数</div>
-                            <div class="bottom">
-                                <div class="number">0.76</div>
-                                <div class="unit">万人</div>
-                            </div>
-                        </div>
-                    </li>
-                    <li>
-                        <img src="images/content_icon_three.png" alt="">
-                        <div class="right">
-                            <div>城镇登记失业率</div>
-                            <div class="bottom">
-                                <div class="number">-</div>
-                                <div class="unit">%</div>
-                            </div>
-                        </div>
-                    </li>
-                    <li>
-                        <img src="images/content_icon_four.png" alt="">
-                        <div class="right">
-                            <div>创业贷款发放基金</div>
-                            <div class="bottom">
-                                <div class="number">3486</div>
-                                <div class="unit">万元</div>
-                            </div>
-                        </div>
-                    </li>
-                    <li>
-                        <img src="images/content_icon_five.png" alt="">
-                        <div class="right">
-                            <div>参加职业技能鉴定</div>
-                            <div class="bottom">
-                                <div class="number">8330</div>
-                                <div class="unit">人</div>
-                            </div>
-                        </div>
-                    </li>
-                    <li>
-                        <img src="images/content_icon_six.png" alt="">
-                        <div class="right">
-                            <div>补贴性职业培训人数</div>
-                            <div class="bottom">
-                                <div class="number">1.84</div>
-                                <div class="unit">万人</div>
-                            </div>
-                        </div>
-                    </li>
-                </ul>
-                <div class="shbzTable">
-                    <div style="text-align: center;width:100%;font-size: 22px;color: #333333;margin: 20px auto;">劳动争议案件
-                    </div>
-                    <ul class="title">
-                        <li style="width: 200px;">年份</li>
-                        <li><span>纠纷总数</span><span>(件)</span></li>
-                        <li><span>涉及人数</span><span>(个)</span></li>
-                        <li><span>结案数量</span><span>(件)</span></li>
-                        <li><span>仲裁裁决</span><span>(件)</span></li>
-                        <li><span>结案率</span><span>(%)</span></li>
-                    </ul>
-                    <ul class="number">
-                        <li style="width: 200px;">2021</li>
-                        <li>4259</li>
-                        <li>4270</li>
-                        <li>4012</li>
-                        <li>386</li>
-                        <li>97</li>
-                    </ul>
-                </div>
-            </div>
-        </div>
-    </div>
-<div style="width:100%;" id="footer"></div>
-</body>
-<script src="js/jquery-3.5.1.min.js"></script>
-<script>
-    var jsonData = [{
-        "year": "2021",
-        "employedPerson": 3.74,
-        "unemployPerson": 0.76,
-        "unemployRate": "-",
-        "ventureFund": 3486,
-        "skillIdentification": 8330,
-        "subsidy": 1.84,
-        "totalDispute": 4259,
-        "involvedPeople": 4270,
-        "casesClose": 4012,
-        "arbitratAward": 386,
-        "closeRate": 97
-
-    }, {
-        "year": "2022",
-        "employedPerson": 3.8,
-        "unemployPerson": 0.93,
-        "unemployRate": "-",
-        "ventureFund": 2466,
-        "skillIdentification": 7489,
-        "subsidy": 0.74,
-        "totalDispute": 4246,
-        "involvedPeople": 4300,
-        "casesClose": 3697,
-        "arbitratAward": 318,
-        "closeRate": 87
-    }]
-    $('#year').on('change', function () {
-        var value = $(this).val();
-        for (var i = 0; i < jsonData.length; i++) {
-            if (jsonData[i].year == value) {
-                var itemDataHtml = `
-                    <li>
-                        <img src="images/content_icon_one.png" alt="">
-                        <div class="right">
-                            <div>城镇新增就业人数</div>
-                            <div class="bottom">
-                                <div class="number">`+ jsonData[i].employedPerson + `</div>
-                                <div class="unit">万人</div>
-                            </div>
-                        </div>
-                    </li>
-                    <li>
-                        <img src="images/content_icon_two.png" alt="">
-                        <div class="right">
-                            <div>城镇登记失业人员就业人数</div>
-                            <div class="bottom">
-                                <div class="number">`+ jsonData[i].unemployPerson + `</div>
-                                <div class="unit">万人</div>
-                            </div>
-                        </div>
-                    </li>
-                    <li>
-                        <img src="images/content_icon_three.png" alt="">
-                        <div class="right">
-                            <div>城镇登记失业率</div>
-                            <div class="bottom">
-                                <div class="number">`+ jsonData[i].unemployRate + `</div>
-                                <div class="unit">%</div>
-                            </div>
-                        </div>
-                    </li>
-                    <li>
-                        <img src="images/content_icon_four.png" alt="">
-                        <div class="right">
-                            <div>创业贷款发放基金</div>
-                            <div class="bottom">
-                                <div class="number">`+ jsonData[i].ventureFund + `</div>
-                                <div class="unit">万元</div>
-                            </div>
-                        </div>
-                    </li>
-                    <li>
-                        <img src="images/content_icon_five.png" alt="">
-                        <div class="right">
-                            <div>参加职业技能鉴定</div>
-                            <div class="bottom">
-                                <div class="number">`+ jsonData[i].skillIdentification + `</div>
-                                <div class="unit">人</div>
-                            </div>
-                        </div>
-                    </li>
-                    <li>
-                        <img src="images/content_icon_six.png" alt="">
-                        <div class="right">
-                            <div>补贴性职业培训人数</div>
-                            <div class="bottom">
-                                <div class="number">`+ jsonData[i].subsidy + `</div>
-                                <div class="unit">万人</div>
-                            </div>
-                        </div>
-                    </li>
-                </ul>`
-                var shbzTableHtml = `
-                    <div style="text-align: center;width:100%;font-size: 22px;color: #333333;margin: 20px auto;">劳动争议案件
-                    </div>
-                    <ul class="title">
-                        <li style="width: 200px;">年份</li>
-                        <li><span>纠纷总数</span><span>(件)</span></li>
-                        <li><span>涉及人数</span><span>(个)</span></li>
-                        <li><span>结案数量</span><span>(件)</span></li>
-                        <li><span>仲裁裁决</span><span>(件)</span></li>
-                        <li><span>结案率</span><span>(%)</span></li>
-                    </ul>
-                    <ul class="number">
-                        <li style="width: 200px;">`+ jsonData[i].year + `</li>
-                        <li>`+ jsonData[i].totalDispute + `</li>
-                        <li>`+ jsonData[i].involvedPeople + `</li>
-                        <li>`+ jsonData[i].casesClose + `</li>
-                        <li>`+ jsonData[i].arbitratAward + `</li>
-                        <li>`+ jsonData[i].closeRate + `</li>
-                    </ul>
-                `
-                $(".itemData").empty().html(itemDataHtml)
-                $(".shbzTable").empty().html(shbzTableHtml)
-
-            }
-        }
-    })
-
-</script>
-<script>
-    setHeader()
-    setFooter()
-    function setHeader(){
-        $("#header").load("https://www.cqna.gov.cn/ggbf_search/top/top_style.html  ")
-    }
-
-    function setFooter(){
-        $("#footer").load("https://www.cqna.gov.cn/data/footer/footer.html")
-    }
-</script>
-</html>

+ 0 - 4
nngkxxdp/src/main/resources/static/natj/dataCenter/详情.txt

@@ -1,4 +0,0 @@
-社会保障:socialSecurity.html
-文化文旅:culturalTourism.html
-卫生医疗:healthCare.html
-社会救助:socialAssistance.html