Răsfoiți Sursa

Merge branch 'nacyy' of http://116.63.33.55/git/nazw into nacyy

# Conflicts:
#	nngkxxdp/src/main/resources/static/naxsb/cytzs.html
#	nngkxxdp/src/main/resources/static/naxsb/dqfwNews.html
#	nngkxxdp/src/main/resources/static/naxsb/ztcrdetail.html
Elis 6 luni în urmă
părinte
comite
a184b1c8e4

+ 57 - 0
nngkxxdp/src/main/java/com/example/nngkxxdp/controller/QjingtController.java

@@ -0,0 +1,57 @@
+package com.example.nngkxxdp.controller;
+
+import com.example.nngkxxdp.util.BaseResult;
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+import java.time.DayOfWeek;
+import java.time.LocalDate;
+import java.time.LocalTime;
+import java.util.ArrayList;
+import java.util.Random;
+
+@RestController
+@RequestMapping("/qjt")
+public class QjingtController {
+
+    @GetMapping
+    public BaseResult isWeekend() {
+        ArrayList<Object> num = new ArrayList<>();
+        LocalDate today = LocalDate.now();
+        LocalTime now = LocalTime.now();
+        boolean isWorkday = isTodayWorkday(today, now);
+
+        // 根据是否是工作日来生成输出
+        if (isWorkday) {
+            num = generateRandomNumbers(10);
+            return BaseResult.ok(num);
+        } else if (isSaturdayBeforeNoon(now)) {
+            num = generateRandomNumbers(6);
+            return BaseResult.ok(num);
+        } else {
+            num.add(0);
+            num.add(0);
+            return BaseResult.ok(num);
+        }
+    }
+
+    private boolean isTodayWorkday(LocalDate date, LocalTime time) {
+        DayOfWeek dayOfWeek = date.getDayOfWeek();
+        return !(dayOfWeek == DayOfWeek.SATURDAY || dayOfWeek == DayOfWeek.SUNDAY);
+    }
+
+    private boolean isSaturdayBeforeNoon(LocalTime time) {
+        return time.isBefore(LocalTime.of(12, 0));
+    }
+
+    private ArrayList<Object> generateRandomNumbers(int upperBound) {
+        ArrayList<Object> num = new ArrayList<>();
+        Random random = new Random();
+        int num1 = random.nextInt(upperBound); // 生成0到upperBound-1之间的随机数
+        int num2 = random.nextInt(upperBound); // 再次生成0到upperBound-1之间的随机数
+        num.add(num1);
+        num.add(num2);
+        return num;
+    }
+}

+ 2 - 2
nngkxxdp/src/main/resources/mapper/SellBuildDao.xml

@@ -38,7 +38,7 @@
            <result property="complement" column="complement" jdbcType="VARCHAR"/>
          <association property="parkData" javaType="com.example.nngkxxdp.entity.ParkData">
             <result column="title" property="title"/>
-            <result column="id" property="id"/>
+            <result column="parkId" property="id"/>
              <result column="industry" property="industry"/>
             <result column="parkAddr" property="addr"/>
            </association>
@@ -84,7 +84,7 @@
         left join t_park_data pd on pd.id=sb.belong
     </select>
     <select id="findById" resultType="com.example.nngkxxdp.entity.SellBuild" resultMap="BaseResultMap">
-        select sb.*, sb.addr as landAddr,pd.title,pd.industry, pd.addr as parkAddr
+        select sb.*, sb.addr as landAddr,pd.title,pd.industry, pd.addr as parkAddr, pd.id as parkId
         from t_sell_build  sb
         left join t_park_data pd on pd.id=sb.belong
         where sb.id =#{id}

+ 2 - 2
nngkxxdp/src/main/resources/static/naxsb/css/qjt.css

@@ -23,7 +23,7 @@ body {
     font-size: 12px;
     width: 120px;
     position: absolute;
-    top: -84px;
+    top: 186px;
     left: -58px;
 }
 
@@ -50,7 +50,7 @@ body {
     height: 40px;
     border-left: 1px dashed #18A65A;
     position: absolute;
-    top: -41px;
+    top: 229px;
     left: 2px;
 }
 

+ 0 - 50
nngkxxdp/src/main/resources/static/naxsb/cytzs.html

@@ -1,50 +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" />
-    <meta name=”SiteName” content=”重庆市南岸区人民政府”>
-    <meta name="SiteDomain" content="http://ww.cqna.gov.cn" />
-    <meta name="SiteIDCode" content="5001080014">
-    <meta name="ColumnName" content="产业园区">
-    <meta name="ColumnDescription" content="产业园区" />
-    <meta name="ColumnKeywords" content="产业园区" />
-    <meta name="ColumnType" content="产业园区" />
-    <title>产业园区-重庆市南岸区人民政府网</title>
-</head>
-<style>
-    body {
-        width: 100%;
-        height: 100%;
-        margin: 0px;
-        padding: 0px;
-    }
-</style>
-
-<body>
-    <div style="width:100%;" id="header"></div>
-    <div id="childshell"></div>
-    <div style="width:100%;" id="footer"></div>
-
-</body>
-<script src="https://cqna.gov.cn/syygapi/naxsb/js/jquery-3.5.1.min.js"></script>
-
-<script>
-    setContent()
-    setHeader()
-    setFooter()
-    function setContent() {
-        $("#childshell").load("https://cqna.gov.cn/syygapi/naxsb/cytz.html")
-    }
-    function setHeader() {
-        $("#header").load("https://cqna.gov.cn/syygapi/naxsb//top/top_style.html")
-    }
-    function setFooter() {
-        $("#footer").load("https://cqna.gov.cn/syygapi/naxsb//footer/footer.html")
-    }
-</script>
-
-
-</html>

+ 2 - 0
nngkxxdp/src/main/resources/static/naxsb/dqfwNew.html

@@ -105,6 +105,8 @@
       padding: 20px;
       flex: 1;
       overflow: auto;
+      width: 100%;
+      box-sizing: border-box;
     }
 
     .yqfw {

+ 0 - 50
nngkxxdp/src/main/resources/static/naxsb/dqfwNews.html

@@ -1,50 +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" />
-    <meta name=”SiteName” content=”重庆市南岸区人民政府”>
-    <meta name="SiteDomain" content="http://ww.cqna.gov.cn" />
-    <meta name="SiteIDCode" content="5001080014">
-    <meta name="ColumnName" content="产业园区">
-    <meta name="ColumnDescription" content="产业园区" />
-    <meta name="ColumnKeywords" content="产业园区" />
-    <meta name="ColumnType" content="产业园区" />
-    <title>产业园区-重庆市南岸区人民政府网</title>
-</head>
-<style>
-    body {
-        width: 100%;
-        height: 100%;
-        margin: 0px;
-        padding: 0px;
-    }
-</style>
-
-<body>
-    <div style="width:100%;" id="header"></div>
-    <div id="childshell"></div>
-    <div style="width:100%;" id="footer"></div>
-
-</body>
-<script src="https://cqna.gov.cn/syygapi/naxsb/js/jquery-3.5.1.min.js"></script>
-
-<script>
-    setContent()
-    setHeader()
-    setFooter()
-    function setContent() {
-        $("#childshell").load("https://cqna.gov.cn/syygapi/naxsb/dqfwNew.html")
-    }
-    function setHeader() {
-        $("#header").load("https://cqna.gov.cn/syygapi/naxsb//top/top_style.html")
-    }
-    function setFooter() {
-        $("#footer").load("https://cqna.gov.cn/syygapi/naxsb/footer/footer.html")
-    }
-</script>
-
-
-</html>

+ 12 - 12
nngkxxdp/src/main/resources/static/naxsb/qjt.html

@@ -81,7 +81,7 @@
 
 <body>
     <div style="width:100%;" class="header"></div>
-    <div class="container">
+    <div class="container" style="position: relative;">
         <div class="row">
             <div class="col-sm-12">
                 <div class="model-container"
@@ -348,14 +348,14 @@
                     const div = document.createElement('div');
                     div.id = child.uuid;
                     let html = '';
-                    html += '<div class="building-box" style="width: 100px; top: -146px; left: -48px;">';
+                    html += '<div class="building-box" style="width: 100px; top: 70px; left: -48px;">';
                     html += '<div class="building-text" style="background: #1D96E9;" onclick="handleClick()">';
                     html += '<span>1号楼</span><span style="font-size: 10px;">社保大厅、医保大厅</span>';
                     html += '</div>';
                     html += '<svg width="10" height="10"><polygon id="triangle" points="0,0 10,0 5,10" fill="#1D96E9"/></svg>';
                     html += '</div>';
-                    html += '<div class="building-line" style="border-left: 1px dashed #1D96E9; height: 100px; top: -102px;"></div>';
-                    html += '<div class="building-bottom" style="background: #1D96E9;"></div>';
+                    html += '<div class="building-line" style="border-left: 1px dashed #1D96E9; height: 100px; top: 110px;"></div>';
+                    // html += '<div class="building-bottom" style="background: #1D96E9;"></div>';
                     div.innerHTML = html;
                     let tag = new THREE.CSS2DObject(div);
                     child.add(tag);
@@ -371,15 +371,15 @@
                     const div = document.createElement('div');
                     div.id = child.uuid;
                     let html = '';
-                    html += '<div class="building-box" style="width: 100px; top: -146px; left: -48px;">';
+                    html += '<div class="building-box" style="width: 100px; top: 28px; left: -48px;">';
                     html += '<i class="el-icon-thumb" style="animation:blink 1s infinite;">点我</i>';
                     html += '<div class="building-text" style="background: #1D96E9;">';
                     html += '<span>2号楼</span></span></span><span style="font-size: 10px;">南岸区政务服务中心</span>';
                     html += '</div>';
                     html += '<svg width="10" height="10"><polygon id="triangle" points="0,0 10,0 5,10" fill="#1D96E9"/></svg>';
                     html += '</div>';
-                    html += '<div class="building-line" style="border-left: 1px dashed #1D96E9; height: 100px; top: -102px;"></div>';
-                    html += '<div class="building-bottom" style="background: #1D96E9;"></div>';
+                    html += '<div class="building-line" style="border-left: 1px dashed #1D96E9; height: 100px; top: 72px;"></div>';
+                    // html += '<div class="building-bottom" style="background: #1D96E9;"></div>';
                     div.innerHTML = html;
                     let tag = new THREE.CSS2DObject(div);
                     child.add(tag);
@@ -394,14 +394,14 @@
                     const div = document.createElement('div');
                     div.id = child.uuid;
                     let html = '';
-                    html += '<div class="building-box" style="width: 50px; top: -133px; left: -23px;">';
+                    html += '<div class="building-box" style="width: 50px; top: 73px; left: -23px;">';
                     html += '<div class="building-text" style="background: #1D96E9;">';
                     html += '<span>3号楼</span><span style="font-size: 10px;"></span>';
                     html += '</div>';
                     html += '<svg width="10" height="10"><polygon id="triangle" points="0,0 10,0 5,10" fill="#1D96E9"/></svg>';
                     html += '</div>';
-                    html += '<div class="building-line" style="border-left: 1px dashed #1D96E9; height: 100px; top: -102px;"></div>';
-                    html += '<div class="building-bottom" style="background: #1D96E9;"></div>';
+                    html += '<div class="building-line" style="border-left: 1px dashed #1D96E9; height: 100px; top: 90px;"></div>';
+                    // html += '<div class="building-bottom" style="background: #1D96E9;"></div>';
                     div.innerHTML = html;
                     let tag = new THREE.CSS2DObject(div);
                     child.add(tag);
@@ -412,7 +412,7 @@
                     div.id = child.uuid;
                     let html = '';
                     html += '<div class="building-box">';
-                    html += `<div class="text" style="top: -15px;left: 146px;position: absolute;display: flex;flex-direction: column;align-items: flex-start;color: #1A95EB;">
+                    html += `<div class="text" style="top: -30px;left: 146px;position: absolute;display: flex;flex-direction: column;align-items: flex-start;color: #1A95EB;">
                                 <span style="font-size: 18px;font-weight: bold;margin-bottom: 5px;">地铁6号线</span>
                                 <span>邱家湾站2B出口</span>
                                 <span>距离:800米</span>
@@ -424,7 +424,7 @@
                     html += '<svg width="10" height="10"><polygon id="triangle" points="0,0 10,0 5,10" fill="#18A65A"/></svg>';
                     html += '</div>';
                     html += '<div class="building-line"></div>';
-                    html += '<div class="building-bottom"></div>';
+                    // html += '<div class="building-bottom"></div>';
                     div.innerHTML = html;
                     let tag = new THREE.CSS2DObject(div);
                     child.add(tag);

+ 12 - 12
nngkxxdp/src/main/resources/static/naxsb/tdcr.html

@@ -260,8 +260,8 @@
                             <tr>
                                 <td class="tit">地块面积</td>
                                 <td class="cont">{{ tdcrDetail.landArea?tdcrDetail.landArea:'无' }}&nbsp;亩</td>
-                                <td class="tit">所属区</td>
-                                <td class="cont">{{tdcrDetail.parkData?tdcrDetail.parkData.title:''}}</td>
+                                <td class="tit">所属区</td>
+                                <td class="cont">{{tdcrDetail.parkData?tdcrDetail.parkData.title:'南岸区'}}</td>
                                 <td class="tit">联系人</td>
                                 <td class="cont">{{ tdcrDetail.contactName?tdcrDetail.contactName:'无' }}</td>
                             </tr>
@@ -292,7 +292,7 @@
         $(".footer").load('footer/footer.html');
     });
 </script>
-<script src="swiper/swiper-bundle.js"></script>
+<script src="https://www.cqna.gov.cn/syygapi/naxsb/swiper/swiper-bundle.js"></script>
 <script>
     new Vue({
         el: '#tdcr',
@@ -301,7 +301,7 @@
                 reqPtah: '',
                 tdcrDetail: {},
                 imgUrl: '',
-                backgroundImage: 'images/indexsyyg.png',
+                backgroundImage: 'https://www.cqna.gov.cn/syygapi/naxsb/images/indexsyyg.png',
                 swiperList: []
             }
         },
@@ -323,19 +323,19 @@
                 });
             })
             if (id == 4) {
-                this.backgroundImage = 'image/npxqcyy.jpg';
+                this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/npxqcyy.jpg';
             } else if (id == 6) {
-                this.backgroundImage = 'image/dxkjy.jpg';
+                this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/dxkjy.jpg';
             } else if (id == 5) {
-                this.backgroundImage = 'image/ylcxg.jpg';
+                this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/ylcxg.jpg';
             } else if (id == 1) {
-                this.backgroundImage = 'image/cycyy.jpg';
+                this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/cycyy.jpg';
             } else if (id == 2) {
-                this.backgroundImage = 'image/xjqcdzcyy.jpg';
+                this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/xjqcdzcyy.jpg';
             } else if (id == 3) {
-                this.backgroundImage = 'image/cjlscxcyy.jpg';
+                this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/cjlscxcyy.jpg';
             } else {
-                this.backgroundImage = 'image/tdcy.webp';
+                this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/tdcy.webp';
             }
         },
         methods: {
@@ -343,7 +343,7 @@
                 window.history.go(-1)
             },
             imgDetail(imgurl) {
-                if (imgurl == "images/tdcr0.png") {
+                if (imgurl == "https://www.cqna.gov.cn/syygapi/naxsb/images/tdcr0.png") {
                     return
                 }
                 this.imgUrl = imgurl;

+ 16 - 16
nngkxxdp/src/main/resources/static/naxsb/tdcrlist.html

@@ -313,7 +313,7 @@
                 pointList: [],
                 currentPq: -1,
                 inputValue: '',
-                backgroundImage: 'image/cycyy.jpg',
+                backgroundImage: 'https://www.cqna.gov.cn/syygapi/naxsb/image/cycyy.jpg',
                 pqList: [
                 ],
             }
@@ -326,44 +326,44 @@
             this.getParkData();
             this.getSellLand(id);
             if (id == 4) {
-                this.backgroundImage = 'image/npxqcyy.jpg';
+                this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/npxqcyy.jpg';
             } else if (id == 6) {
-                this.backgroundImage = 'image/dxkjy.jpg';
+                this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/dxkjy.jpg';
             } else if (id == 5) {
-                this.backgroundImage = 'image/ylcxg.jpg';
+                this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/ylcxg.jpg';
             } else if (id == 1) {
-                this.backgroundImage = 'image/cycyy.jpg';
+                this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/cycyy.jpg';
             } else if (id == 2) {
-                this.backgroundImage = 'image/xjqcdzcyy.jpg';
+                this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/xjqcdzcyy.jpg';
             } else if (id == 3) {
-                this.backgroundImage = 'image/cjlscxcyy.jpg';
+                this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/cjlscxcyy.jpg';
             } else {
-                this.backgroundImage = 'image/tdcy.webp';
+                this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/tdcy.webp';
             }
         },
         methods: {
             goDeteil(id) {
                 if (id) {
-                    window.location.href = "ztcrdetail.html?ztid=" + id;
+                    window.location.href = "https://www.cqna.gov.cn/syygapi/naxsb/ztcrdetail.html?ztid=" + id;
                 }
             },
             handleParkChange(data) {
                 this.currentPq = data.id;
                 var id = data.id;
                 if (id == 4) {
-                    this.backgroundImage = 'image/npxqcyy.jpg';
+                    this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/npxqcyy.jpg';
                 } else if (id == 6) {
-                    this.backgroundImage = 'image/dxkjy.jpg';
+                    this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/dxkjy.jpg';
                 } else if (id == 5) {
-                    this.backgroundImage = 'image/ylcxg.jpg';
+                    this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/ylcxg.jpg';
                 } else if (id == 1) {
-                    this.backgroundImage = 'image/cycyy.jpg';
+                    this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/cycyy.jpg';
                 } else if (id == 2) {
-                    this.backgroundImage = 'image/xjqcdzcyy.jpg';
+                    this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/xjqcdzcyy.jpg';
                 } else if (id == 3) {
-                    this.backgroundImage = 'image/cjlscxcyy.jpg';
+                    this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/cjlscxcyy.jpg';
                 } else {
-                    this.backgroundImage = 'image/tdcy.webp';
+                    this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/tdcy.webp';
                 }
                 this.inputValue = '';
                 this.getParkDetail();

+ 2 - 1
nngkxxdp/src/main/resources/static/naxsb/top/top_style.html

@@ -358,7 +358,8 @@
 
         <div class="pBanner">
             <div class="mainWidth">
-                <a href="/static"><img class="plogo" src="./top/images/2022-pBanner-logo-list.png" /></a>
+                <a href="https://www.cqna.gov.cn/"><img class="plogo"
+                        src="./top/images/2022-pBanner-logo-list.png" /></a>
                 <div class="pSearch">
                     <link rel="stylesheet" href="./top/layuiMailbox/css/layui.css">
                     <script src="./top/layuiMailbox/layui.js"></script>

+ 1 - 1
nngkxxdp/src/main/resources/static/naxsb/wybdb.html

@@ -382,7 +382,7 @@
                 </li>
             </ul>
             <div class="name">服务对象</div>
-            <div class="fwdx">重庆市南岸区 重庆经开区辖区范围内的重点产业投资项目。</div>
+            <div class="fwdx">南岸区 重庆经开区辖区范围内的重点产业投资项目。</div>
             <div class="name">服务流程</div>
             <div class="fwlc">
                 <div class="text">受理</div>

+ 7 - 22
nngkxxdp/src/main/resources/static/naxsb/wyyy.html

@@ -244,16 +244,11 @@
                         </el-select>
                     </el-form-item>
                     <el-form-item label="预约时间周六上午" prop="date2">
-                        <!-- <el-col :span="11">
-                        <el-date-picker type="date" placeholder="选择日期" format="yyyy-MM-dd" value-format="yyyy-MM-dd"
-                            v-model="form.date1" style="width: 100%;">
-                        </el-date-picker>
-                    </el-col>
-                    <el-col class="line" :span="2">-</el-col> -->
-                        <el-col :span="11">
-                            <el-time-picker v-model="form.datte2" value-format="HH:mm" placeholder="选择时间"
-                                :picker-options="pickerOptions" style="width: 100%;"> </el-time-picker>
-                        </el-col>
+                        <el-select v-model="form.date2" placeholder="请选择选择时间" style="width: 100%;">
+                            <el-option label="09:00:00-10:00:00" value="09:00:00"></el-option>
+                            <el-option label="10:00:00-11:00:00" value="10:00:00"></el-option>
+                            <el-option label="11:00:00-12:00:00" value="11:00:00"></el-option>
+                        </el-select>
                     </el-form-item>
                     <el-form-item label="验证码" prop="imgCode">
                         <div style="display: flex;">
@@ -370,12 +365,8 @@
                     overtimeAge: '',
                     overtimePhone: '',
                     business: '',
-                    date1: '',
                     date2: '',
-                    imgCode: '',
-                    pickerOptions: {
-                        selectableRange: '09:00:00 - 12:00:00' // 限制可选时间为9点到12点 
-                    }
+                    imgCode: ''
                 },
                 /*图形验证码*/
                 imageCode: "",
@@ -410,12 +401,6 @@
                         message: '请输入验证码',
                         trigger: 'blur'
                     }]
-                },
-                pickerOptions: {
-                    selectableRange: '09:00:00-12:00:00',
-                    step: '00:15',
-                    format: 'HH:ss'
-
                 }
             }
         },
@@ -447,7 +432,7 @@
                             overtimeAge: this.form.overtimeAge,
                             overtimePhone: this.form.overtimePhone,
                             business: this.form.business,
-                            handleTime: this.form.date1 + ' ' + this.form.date2,
+                            handleTime: this.form.date2,
                             imgCode: this.form.imgCode
                         }
                         // AJAX 请求

+ 10 - 10
nngkxxdp/src/main/resources/static/naxsb/znxz.html

@@ -293,7 +293,7 @@
                 contentList: [
                 ],
                 pointList: [],
-                backgroundImage: 'image/ztcy.webp'
+                backgroundImage: 'https://www.cqna.gov.cn/syygapi/naxsb/image/ztcy.webp'
             }
         },
         methods: {
@@ -315,7 +315,7 @@
             },
             goDeteil(id) {
                 if (id) {
-                    window.location.href = "ztcrdetail.html?ztid=" + id;
+                    window.location.href = "https://www.cqna.gov.cn/syygapi/naxsb/ztcrdetail.html?ztid=" + id;
                 }
             },
             getListData(json) {
@@ -345,7 +345,7 @@
             newchoice() {
                 sessionStorage.setItem('znxztabs', JSON.stringify({}));
                 sessionStorage.setItem('znxz', '');
-                window.location.href = 'znxzchoice.html'
+                window.location.href = 'https://www.cqna.gov.cn/syygapi/naxsb/znxzchoice.html'
             },
             loadMap(currentPoint) {
                 let that = this;
@@ -402,7 +402,7 @@
                         that.parkMap.addOverlay(marker);
                         marker.addEventListener('click', function () {
                             var id = d.id;
-                            window.location.href = 'ztcrdetail.html?ztid=' + id;
+                            window.location.href = 'https://www.cqna.gov.cn/syygapi/naxsb/ztcrdetail.html?ztid=' + id;
                         });
                     });
                 });
@@ -424,17 +424,17 @@
                 this.tjdzList = znxztabs.split(',');
             }
             if (id == 4) {
-                this.backgroundImage = 'image/ztnp.webp';
+                this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/ztnp.webp';
             } else if (id == 6) {
-                this.backgroundImage = 'image/ztdx.webp';
+                this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/ztdx.webp';
             } else if (id == 5) {
-                this.backgroundImage = 'image/ztyl.webp';
+                this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/ztyl.webp';
             } else if (id == 3) {
-                this.backgroundImage = 'image/ztcjcx.webp';
+                this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/ztcjcx.webp';
             } else if (id == 2) {
-                this.backgroundImage = 'image/ztxj.webp';
+                this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/ztxj.webp';
             } else {
-                this.backgroundImage = 'image/ztcy.webp';
+                this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/ztcy.webp';
             }
         }
     })

+ 2 - 2
nngkxxdp/src/main/resources/static/naxsb/znxzchoice.html

@@ -308,7 +308,7 @@
                     const znxzString = JSON.stringify(znxz);
                     sessionStorage.setItem('znxztabs', selectTabs);
                     sessionStorage.setItem('znxz', znxzString);
-                    window.location.href = "znxz.html"
+                    window.location.href = "https://www.cqna.gov.cn/syygapi/naxsb/znxz.html"
                 } else {
                     var znxz = {
                         "productModule": this.currfwhy,
@@ -451,7 +451,7 @@
         }
     })
 </script>
-<script type="text/javascript" src="js/rightmap.js"></script>
+<script type="text/javascript" src="https://www.cqna.gov.cn/syygapi/naxsb/js/rightmap.js"></script>
 
 <script>
     var that = this;

+ 12 - 12
nngkxxdp/src/main/resources/static/naxsb/ztcrdetail.html

@@ -284,11 +284,11 @@
         * 导航栏
         * footer CopyRight
         */
-        $(".header").load('top/top_style.html');
-        $(".footer").load('footer/footer.html');
+        $(".header").load('https://www.cqna.gov.cn/syygapi/naxsb/top/top_style.html');
+        $(".footer").load('https://www.cqna.gov.cn/syygapi/naxsb/footer/footer.html');
     });
 </script>
-<script src="swiper/swiper-bundle.js"></script>
+<script src="https://www.cqna.gov.cn/syygapi/naxsb/swiper/swiper-bundle.js"></script>
 <script>
 
 </script>
@@ -299,7 +299,7 @@
             return {
                 reqPtah: '',
                 ztcrDetail: {},
-                imgUrl: 'https://cqna.gov.cn/syygapi/naxsb/images/slide1.png',
+                imgUrl: 'https://www.cqna.gov.cn/syygapi/naxsb/images/slide1.png',
                 swiperList: [],
                 backgroundImage: '',
                 znptList: '学校,轻轨,公交车站'
@@ -328,7 +328,7 @@
                 window.history.go(-1)
             },
             imgDetail(imgurl) {
-                if (imgurl == "images/tdcr0.png") {
+                if (imgurl == "https://www.cqna.gov.cn/syygapi/naxsb/images/tdcr0.png") {
                     return
                 }
                 this.imgUrl = imgurl;
@@ -345,19 +345,19 @@
                         that.ztcrDetail = mdata;
                         var yqid = mdata.parkData.id;
                         if (yqid == 4) {
-                            that.backgroundImage = 'image/npxq.webp';
+                            that.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/npxq.webp';
                         } else if (yqid == 6) {
-                            that.backgroundImage = 'image/dxkjy.webp';
+                            that.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/dxkjy.webp';
                         } else if (yqid == 5) {
-                            that.backgroundImage = 'image/ylcxg.png';
+                            that.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/ylcxg.png';
                         } else if (yqid == 3) {
-                            that.backgroundImage = 'image/cjls.webp';
+                            that.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/cjls.webp';
                         } else if (yqid == 2) {
-                            that.backgroundImage = 'image/xjcy.webp';
+                            that.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/xjcy.webp';
                         } else if (yqid == 1) {
-                            that.backgroundImage = 'image/cygyy.webp';
+                            that.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/cygyy.webp';
                         } else {
-                            that.backgroundImage = 'image/cygyy.webp';
+                            that.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/cygyy.webp';
                         }
                         that.swiperList = mdata.imgUrl ? mdata.imgUrl.split(",") : [];
                         if (!that.swiperList.length) {

+ 15 - 15
nngkxxdp/src/main/resources/static/naxsb/ztcrlist.html

@@ -341,7 +341,7 @@
                     }
                 ],
                 contentList: [],
-                backgroundImage: 'images/indexsyyg.png',
+                backgroundImage: 'https://www.cqna.gov.cn/syygapi/naxsb/images/indexsyyg.png',
             }
         },
         mounted() {
@@ -352,19 +352,19 @@
             this.getParkDetail();
             this.getSellBuild();
             if (id == 4) {
-                this.backgroundImage = 'image/npxq.webp';
+                this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/npxq.webp';
             } else if (id == 6) {
-                this.backgroundImage = 'image/dxkjy.webp';
+                this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/dxkjy.webp';
             } else if (id == 5) {
-                this.backgroundImage = 'image/ylcxg.png';
+                this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/ylcxg.png';
             } else if (id == 3) {
-                this.backgroundImage = 'image/cjls.webp';
+                this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/cjls.webp';
             } else if (id == 2) {
-                this.backgroundImage = 'image/xjcy.webp';
+                this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/xjcy.webp';
             } else if (id == 1) {
-                this.backgroundImage = 'image/cygyy.webp';
+                this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/cygyy.webp';
             } else {
-                this.backgroundImage = 'image/cygyy.webp';
+                this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/cygyy.webp';
             }
         },
         methods: {
@@ -375,19 +375,19 @@
                 this.currentPq = data.id;
                 var id = data.id;
                 if (id == 4) {
-                    this.backgroundImage = 'image/npxq.webp';
+                    this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/npxq.webp';
                 } else if (id == 6) {
-                    this.backgroundImage = 'image/dxkjy.webp';
+                    this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/dxkjy.webp';
                 } else if (id == 5) {
-                    this.backgroundImage = 'image/ylcxg.png';
+                    this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/ylcxg.png';
                 } else if (id == 3) {
-                    this.backgroundImage = 'image/cjls.webp';
+                    this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/cjls.webp';
                 } else if (id == 2) {
-                    this.backgroundImage = 'image/xjcy.webp';
+                    this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/xjcy.webp';
                 } else if (id == 1) {
-                    this.backgroundImage = 'image/cygyy.webp';
+                    this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/cygyy.webp';
                 } else {
-                    this.backgroundImage = 'image/cygyy.webp';
+                    this.backgroundImage = 'https://www.cqna.gov.cn/syygapi/naxsb/image/cygyy.webp';
                 }
                 this.getSellBuild();
                 this.getParkDetail();