详情页展示
|
@ -40,9 +40,6 @@
|
|||
<div class="fullscreen" onclick="unityInstance.SetFullscreen(1)"></div>
|
||||
<div class="title">ShengDaPing</div>
|
||||
</div>
|
||||
<div class="home">
|
||||
<div class="back" onclick="home()" style="cursor: pointer"></div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -39,10 +39,7 @@
|
|||
<div class="webgl-logo"></div>
|
||||
<div class="fullscreen" onclick="unityInstance.SetFullscreen(1)"></div>
|
||||
<div class="title">ShengDaPing</div>
|
||||
</div>
|
||||
<div class="home">
|
||||
<div class="back" onclick="home()" style="cursor: pointer"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"companyName": "DefaultCompany",
|
||||
"productName": "CityCompany",
|
||||
"productVersion": "0.1",
|
||||
"dataUrl": "double.data.unityweb",
|
||||
"wasmCodeUrl": "double.wasm.code.unityweb",
|
||||
"wasmFrameworkUrl": "double.wasm.framework.unityweb",
|
||||
"graphicsAPI": ["WebGL 2.0","WebGL 1.0"],
|
||||
"webglContextAttributes": {"preserveDrawingBuffer": false},
|
||||
"splashScreenStyle": "Dark",
|
||||
"backgroundColor": "#231F20",
|
||||
"cacheControl": {"default": "must-revalidate"},
|
||||
"developmentBuild": false,
|
||||
"multithreading": false,
|
||||
"unityVersion": "2019.4.36f1c1"
|
||||
}
|
|
@ -0,0 +1,24 @@
|
|||
function UnityProgress(unityInstance, progress) {
|
||||
if (!unityInstance.Module)
|
||||
return;
|
||||
if (!unityInstance.logo) {
|
||||
unityInstance.logo = document.createElement("div");
|
||||
unityInstance.logo.className = "logo " + unityInstance.Module.splashScreenStyle;
|
||||
unityInstance.container.appendChild(unityInstance.logo);
|
||||
}
|
||||
if (!unityInstance.progress) {
|
||||
unityInstance.progress = document.createElement("div");
|
||||
unityInstance.progress.className = "progress " + unityInstance.Module.splashScreenStyle;
|
||||
unityInstance.progress.empty = document.createElement("div");
|
||||
unityInstance.progress.empty.className = "empty";
|
||||
unityInstance.progress.appendChild(unityInstance.progress.empty);
|
||||
unityInstance.progress.full = document.createElement("div");
|
||||
unityInstance.progress.full.className = "full";
|
||||
unityInstance.progress.appendChild(unityInstance.progress.full);
|
||||
unityInstance.container.appendChild(unityInstance.progress);
|
||||
}
|
||||
unityInstance.progress.full.style.width = (100 * progress) + "%";
|
||||
unityInstance.progress.empty.style.width = (100 * (1 - progress)) + "%";
|
||||
if (progress == 1)
|
||||
unityInstance.logo.style.display = unityInstance.progress.style.display = "none";
|
||||
}
|
After Width: | Height: | Size: 13 KiB |
After Width: | Height: | Size: 345 B |
After Width: | Height: | Size: 155 B |
After Width: | Height: | Size: 159 B |
After Width: | Height: | Size: 137 B |
After Width: | Height: | Size: 142 B |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 2.2 KiB |
|
@ -0,0 +1,30 @@
|
|||
html,body{
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
margin: 0px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#unityContainer{
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
margin: 0px;
|
||||
}
|
||||
.webgl-content * {border: 0; margin: 0; padding: 0}
|
||||
.webgl-content {position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%);}
|
||||
|
||||
.webgl-content .logo, .progress {position: absolute; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%);}
|
||||
.webgl-content .logo {background: url('progressLogo.Light.png') no-repeat center / contain; width: 154px; height: 130px;}
|
||||
.webgl-content .progress {height: 18px; width: 141px; margin-top: 90px;}
|
||||
.webgl-content .progress .empty {background: url('progressEmpty.Light.png') no-repeat right / cover; float: right; width: 100%; height: 100%; display: inline-block;}
|
||||
.webgl-content .progress .full {background: url('progressFull.Light.png') no-repeat left / cover; float: left; width: 0%; height: 100%; display: inline-block;}
|
||||
|
||||
.webgl-content .logo.Dark {background-image: url('progressLogo.Dark.png');}
|
||||
.webgl-content .progress.Dark .empty {background-image: url('progressEmpty.Dark.png');}
|
||||
.webgl-content .progress.Dark .full {background-image: url('progressFull.Dark.png');}
|
||||
|
||||
.webgl-content .footer {margin-top: 5px; height: 38px; line-height: 38px; font-family: Helvetica, Verdana, Arial, sans-serif; font-size: 18px;display: none;}
|
||||
.webgl-content .footer .webgl-logo, .title, .fullscreen {height: 100%; display: inline-block; background: transparent center no-repeat;}
|
||||
.webgl-content .footer .webgl-logo {background-image: url('webgl-logo.png'); width: 204px; float: left;}
|
||||
.webgl-content .footer .title {margin-right: 10px; float: right;}
|
||||
.webgl-content .footer .fullscreen {background-image: url('fullscreen.png'); width: 38px; float: right;}
|
After Width: | Height: | Size: 3.5 KiB |
|
@ -0,0 +1,49 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Unity WebGL Player | ShengDaPing</title>
|
||||
<link rel="shortcut icon" href="TemplateData/favicon.ico">
|
||||
<link rel="stylesheet" href="TemplateData/style.css">
|
||||
<script src="TemplateData/UnityProgress.js"></script>
|
||||
<script src="Build/UnityLoader.js"></script>
|
||||
<script>
|
||||
var unityInstance = UnityLoader.instantiate("unityContainer", "Build/double.json", {onProgress: UnityProgress});
|
||||
function home() {
|
||||
window.history.go(-1);
|
||||
}
|
||||
function getFloorName(data) {
|
||||
console.log("data",data)
|
||||
window.parent.getFloorName(data)
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<style>
|
||||
.back{
|
||||
bottom: 20px;
|
||||
right: 50px;
|
||||
width: 38px;
|
||||
height: 38px;
|
||||
}
|
||||
.home{
|
||||
background: #ffffff;
|
||||
position: absolute;
|
||||
bottom: 20px;
|
||||
right: 50px;
|
||||
width: 38px;
|
||||
height: 38px;
|
||||
border-radius:5px
|
||||
}
|
||||
</style>
|
||||
<body>
|
||||
<div class="webgl-content" style="width:100%;height: 100%;">
|
||||
<div id="unityContainer"></div>
|
||||
<div class="footer">
|
||||
<div class="webgl-logo"></div>
|
||||
<div class="fullscreen" onclick="unityInstance.SetFullscreen(1)"></div>
|
||||
<div class="title">ShengDaPing</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"companyName": "DefaultCompany",
|
||||
"productName": "CityCompany",
|
||||
"productVersion": "0.1",
|
||||
"dataUrl": "north.data.unityweb",
|
||||
"wasmCodeUrl": "north.wasm.code.unityweb",
|
||||
"wasmFrameworkUrl": "north.wasm.framework.unityweb",
|
||||
"graphicsAPI": ["WebGL 2.0","WebGL 1.0"],
|
||||
"webglContextAttributes": {"preserveDrawingBuffer": false},
|
||||
"splashScreenStyle": "Dark",
|
||||
"backgroundColor": "#231F20",
|
||||
"cacheControl": {"default": "must-revalidate"},
|
||||
"developmentBuild": false,
|
||||
"multithreading": false,
|
||||
"unityVersion": "2019.4.36f1c1"
|
||||
}
|
|
@ -0,0 +1,24 @@
|
|||
function UnityProgress(unityInstance, progress) {
|
||||
if (!unityInstance.Module)
|
||||
return;
|
||||
if (!unityInstance.logo) {
|
||||
unityInstance.logo = document.createElement("div");
|
||||
unityInstance.logo.className = "logo " + unityInstance.Module.splashScreenStyle;
|
||||
unityInstance.container.appendChild(unityInstance.logo);
|
||||
}
|
||||
if (!unityInstance.progress) {
|
||||
unityInstance.progress = document.createElement("div");
|
||||
unityInstance.progress.className = "progress " + unityInstance.Module.splashScreenStyle;
|
||||
unityInstance.progress.empty = document.createElement("div");
|
||||
unityInstance.progress.empty.className = "empty";
|
||||
unityInstance.progress.appendChild(unityInstance.progress.empty);
|
||||
unityInstance.progress.full = document.createElement("div");
|
||||
unityInstance.progress.full.className = "full";
|
||||
unityInstance.progress.appendChild(unityInstance.progress.full);
|
||||
unityInstance.container.appendChild(unityInstance.progress);
|
||||
}
|
||||
unityInstance.progress.full.style.width = (100 * progress) + "%";
|
||||
unityInstance.progress.empty.style.width = (100 * (1 - progress)) + "%";
|
||||
if (progress == 1)
|
||||
unityInstance.logo.style.display = unityInstance.progress.style.display = "none";
|
||||
}
|
After Width: | Height: | Size: 13 KiB |
After Width: | Height: | Size: 345 B |
After Width: | Height: | Size: 155 B |
After Width: | Height: | Size: 159 B |
After Width: | Height: | Size: 137 B |
After Width: | Height: | Size: 142 B |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 2.2 KiB |
|
@ -0,0 +1,30 @@
|
|||
html,body{
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
margin: 0px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#unityContainer{
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
margin: 0px;
|
||||
}
|
||||
.webgl-content * {border: 0; margin: 0; padding: 0}
|
||||
.webgl-content {position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%);}
|
||||
|
||||
.webgl-content .logo, .progress {position: absolute; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%);}
|
||||
.webgl-content .logo {background: url('progressLogo.Light.png') no-repeat center / contain; width: 154px; height: 130px;}
|
||||
.webgl-content .progress {height: 18px; width: 141px; margin-top: 90px;}
|
||||
.webgl-content .progress .empty {background: url('progressEmpty.Light.png') no-repeat right / cover; float: right; width: 100%; height: 100%; display: inline-block;}
|
||||
.webgl-content .progress .full {background: url('progressFull.Light.png') no-repeat left / cover; float: left; width: 0%; height: 100%; display: inline-block;}
|
||||
|
||||
.webgl-content .logo.Dark {background-image: url('progressLogo.Dark.png');}
|
||||
.webgl-content .progress.Dark .empty {background-image: url('progressEmpty.Dark.png');}
|
||||
.webgl-content .progress.Dark .full {background-image: url('progressFull.Dark.png');}
|
||||
|
||||
.webgl-content .footer {margin-top: 5px; height: 38px; line-height: 38px; font-family: Helvetica, Verdana, Arial, sans-serif; font-size: 18px;display: none;}
|
||||
.webgl-content .footer .webgl-logo, .title, .fullscreen {height: 100%; display: inline-block; background: transparent center no-repeat;}
|
||||
.webgl-content .footer .webgl-logo {background-image: url('webgl-logo.png'); width: 204px; float: left;}
|
||||
.webgl-content .footer .title {margin-right: 10px; float: right;}
|
||||
.webgl-content .footer .fullscreen {background-image: url('fullscreen.png'); width: 38px; float: right;}
|
After Width: | Height: | Size: 3.5 KiB |
|
@ -0,0 +1,49 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Unity WebGL Player | ShengDaPing</title>
|
||||
<link rel="shortcut icon" href="TemplateData/favicon.ico">
|
||||
<link rel="stylesheet" href="TemplateData/style.css">
|
||||
<script src="TemplateData/UnityProgress.js"></script>
|
||||
<script src="Build/UnityLoader.js"></script>
|
||||
<script>
|
||||
var unityInstance = UnityLoader.instantiate("unityContainer", "Build/north.json", {onProgress: UnityProgress});
|
||||
function home() {
|
||||
window.history.go(-1);
|
||||
}
|
||||
function getFloorName(data){
|
||||
console.log("data",data)
|
||||
window.parent.getFloorName(data)
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<style>
|
||||
.back{
|
||||
bottom: 20px;
|
||||
right: 50px;
|
||||
width: 38px;
|
||||
height: 38px;
|
||||
}
|
||||
.home{
|
||||
background: #ffffff;
|
||||
position: absolute;
|
||||
bottom: 20px;
|
||||
right: 50px;
|
||||
width: 38px;
|
||||
height: 38px;
|
||||
border-radius:5px
|
||||
}
|
||||
</style>
|
||||
<body>
|
||||
<div class="webgl-content" style="width:100%;height: 100%;">
|
||||
<div id="unityContainer"></div>
|
||||
<div class="footer">
|
||||
<div class="webgl-logo"></div>
|
||||
<div class="fullscreen" onclick="unityInstance.SetFullscreen(1)"></div>
|
||||
<div class="title">ShengDaPing</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -1,3 +1,15 @@
|
|||
html,body{
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
margin: 0px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#unityContainer{
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
margin: 0px;
|
||||
}
|
||||
.webgl-content * {border: 0; margin: 0; padding: 0}
|
||||
.webgl-content {position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%);}
|
||||
|
||||
|
@ -11,7 +23,7 @@
|
|||
.webgl-content .progress.Dark .empty {background-image: url('progressEmpty.Dark.png');}
|
||||
.webgl-content .progress.Dark .full {background-image: url('progressFull.Dark.png');}
|
||||
|
||||
.webgl-content .footer {margin-top: 5px; height: 38px; line-height: 38px; font-family: Helvetica, Verdana, Arial, sans-serif; font-size: 18px;}
|
||||
.webgl-content .footer {margin-top: 5px; height: 38px; line-height: 38px; font-family: Helvetica, Verdana, Arial, sans-serif; font-size: 18px;display: none;}
|
||||
.webgl-content .footer .webgl-logo, .title, .fullscreen {height: 100%; display: inline-block; background: transparent center no-repeat;}
|
||||
.webgl-content .footer .webgl-logo {background-image: url('webgl-logo.png'); width: 204px; float: left;}
|
||||
.webgl-content .footer .title {margin-right: 10px; float: right;}
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Unity WebGL Player | CityCompany</title>
|
||||
<!-- <title>Unity WebGL Player | ShengDaPing</title> -->
|
||||
<link rel="shortcut icon" href="TemplateData/favicon.ico">
|
||||
<link rel="stylesheet" href="TemplateData/style.css">
|
||||
<script src="TemplateData/UnityProgress.js"></script>
|
||||
|
@ -13,13 +13,13 @@
|
|||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="webgl-content">
|
||||
<div id="unityContainer" style="width: 960px; height: 600px"></div>
|
||||
<div class="footer">
|
||||
<div class="webgl-logo"></div>
|
||||
<div class="fullscreen" onclick="unityInstance.SetFullscreen(1)"></div>
|
||||
<div class="title">CityCompany</div>
|
||||
<div class="webgl-content" style="width:100%;height: 100%;">
|
||||
<div id="unityContainer"></div>
|
||||
<div class="footer">
|
||||
<div class="webgl-logo"></div>
|
||||
<div class="fullscreen" onclick="unityInstance.SetFullscreen(1)"></div>
|
||||
<div class="title">ShengDaPing</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,3 +1,15 @@
|
|||
html,body{
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
margin: 0px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#unityContainer{
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
margin: 0px;
|
||||
}
|
||||
.webgl-content * {border: 0; margin: 0; padding: 0}
|
||||
.webgl-content {position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%);}
|
||||
|
||||
|
@ -11,7 +23,7 @@
|
|||
.webgl-content .progress.Dark .empty {background-image: url('progressEmpty.Dark.png');}
|
||||
.webgl-content .progress.Dark .full {background-image: url('progressFull.Dark.png');}
|
||||
|
||||
.webgl-content .footer {margin-top: 5px; height: 38px; line-height: 38px; font-family: Helvetica, Verdana, Arial, sans-serif; font-size: 18px;}
|
||||
.webgl-content .footer {margin-top: 5px; height: 38px; line-height: 38px; font-family: Helvetica, Verdana, Arial, sans-serif; font-size: 18px;display: none;}
|
||||
.webgl-content .footer .webgl-logo, .title, .fullscreen {height: 100%; display: inline-block; background: transparent center no-repeat;}
|
||||
.webgl-content .footer .webgl-logo {background-image: url('webgl-logo.png'); width: 204px; float: left;}
|
||||
.webgl-content .footer .title {margin-right: 10px; float: right;}
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Unity WebGL Player | CityCompany</title>
|
||||
<!-- <title>Unity WebGL Player | ShengDaPing</title> -->
|
||||
<link rel="shortcut icon" href="TemplateData/favicon.ico">
|
||||
<link rel="stylesheet" href="TemplateData/style.css">
|
||||
<script src="TemplateData/UnityProgress.js"></script>
|
||||
|
@ -13,13 +13,14 @@
|
|||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="webgl-content">
|
||||
<div id="unityContainer" style="width: 960px; height: 600px"></div>
|
||||
<div class="footer">
|
||||
<div class="webgl-logo"></div>
|
||||
<div class="fullscreen" onclick="unityInstance.SetFullscreen(1)"></div>
|
||||
<div class="title">CityCompany</div>
|
||||
<div class="webgl-content" style="width:100%;height: 100%;">
|
||||
<div id="unityContainer"></div>
|
||||
<div class="footer">
|
||||
<div class="webgl-logo"></div>
|
||||
<div class="fullscreen" onclick="unityInstance.SetFullscreen(1)"></div>
|
||||
<div class="title">ShengDaPing</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
|
|
@ -40,9 +40,6 @@
|
|||
<div class="fullscreen" onclick="unityInstance.SetFullscreen(1)"></div>
|
||||
<div class="title">ShengDaPing</div>
|
||||
</div>
|
||||
<div class="home">
|
||||
<div class="back" onclick="home()" style="cursor: pointer"></div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
"zl": "石头城115号",
|
||||
"fwcb": "全民单位房产",
|
||||
"qh": "597155-II-1",
|
||||
"fwyt": "工业、其他",
|
||||
"zh": "",
|
||||
"fh": "",
|
||||
"jg": "钢混",
|
||||
|
@ -24,6 +25,7 @@
|
|||
"zl": "石头城115号",
|
||||
"fwcb": "全民单位房产",
|
||||
"qh": "597155-III-1",
|
||||
"fwyt": "工业、其他",
|
||||
"zh": "",
|
||||
"fh": "",
|
||||
"jg": "混合",
|
||||
|
@ -39,6 +41,7 @@
|
|||
"fwsyqr": "江苏省电力公司南京供电公司",
|
||||
"zl": "石头城115号",
|
||||
"fwcb": "全民单位房产",
|
||||
"fwyt": "工业、其他",
|
||||
"qh": "597155-2",
|
||||
"zh": "3/4/5/13",
|
||||
"fh": "",
|
||||
|
@ -57,6 +60,7 @@
|
|||
"zl": "石头城115号",
|
||||
"fwcb": "全民单位房产",
|
||||
"qh": "597155-II-1",
|
||||
"fwyt": "工业、其他",
|
||||
"zh": "",
|
||||
"fh": "",
|
||||
"jg": "钢混",
|
||||
|
@ -67,12 +71,13 @@
|
|||
},
|
||||
{
|
||||
"tudi": "南京市建邺区奥体大街1号",
|
||||
"jd": "公司大楼",
|
||||
"jd": "公司大楼(市大楼)",
|
||||
"fczh": "宁房权证建初字第421579号",
|
||||
"fwsyqr": "江苏省电力公司",
|
||||
"zl": "奥体大街1号",
|
||||
"fwcb": "",
|
||||
"qh": "14201001004",
|
||||
"fwyt": "科研/实验/车库/其他辅助设施",
|
||||
"zh": "",
|
||||
"fh": "",
|
||||
"jg": "钢混",
|
||||
|
@ -80,19 +85,194 @@
|
|||
"szcs": "1-21层",
|
||||
"jzmj": "56879.53",
|
||||
"cqly": "自建"
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
"tudi": "南京市玄武区中山路251号",
|
||||
"jd": "新纪元宾馆",
|
||||
"fczh": "鼓变字第343364号、鼓变字第331347号",
|
||||
"fwsyqr": "江苏省电力公司南京供电公司",
|
||||
"zl": "中山路251号",
|
||||
"fwcb": "全民单位房产",
|
||||
"qh": "566300-5",
|
||||
"fwyt": "",
|
||||
"zh": "",
|
||||
"fh": "",
|
||||
"jg": "钢混",
|
||||
"fwzcs": "21层",
|
||||
"szcs": "-1-20层",
|
||||
"jzmj": "16097.08平方米",
|
||||
"cqly": "自建"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市江宁区天元中路19号",
|
||||
"jd": "峰电大厦",
|
||||
"fczh": "东山J00026009",
|
||||
"fwsyqr": "南京供电公司江宁供电公司",
|
||||
"zl": "江宁区天元中路19号",
|
||||
"fwcb": "国有",
|
||||
"qh": "",
|
||||
"fwyt": "非住宅",
|
||||
"zh": "1幢",
|
||||
"fh": "",
|
||||
"jg": "钢筋混凝",
|
||||
"fwzcs": "6层",
|
||||
"szcs": "1-6层",
|
||||
"jzmj": "3617.79平方米",
|
||||
"cqly": "自建"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市浦口区龙华路19号",
|
||||
"jd": "龙华路19号基地",
|
||||
"fczh": "宁房权证浦初字第02036219",
|
||||
"fwsyqr": "南京供电公司浦口供电公司",
|
||||
"zl": "浦口区江浦街道龙华路19号",
|
||||
"fwcb": "全民单位房产",
|
||||
"qh": "10808014",
|
||||
"fwyt": "办公",
|
||||
"zh": "",
|
||||
"fh": "001",
|
||||
"jg": "混钢/混钢/混钢/混钢/混钢",
|
||||
"fwzcs": "10层/10层/10层/10层/10层",
|
||||
"szcs": "1层/10层/2层/3层/4层",
|
||||
"jzmj": "1050.45平方米/154.08平方米/1129.44平方米/693.82平方米/693.82平方米",
|
||||
"cqly": "自建"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市六合区雄州镇园林西路8巷13号",
|
||||
"jd": "六合园林路基地",
|
||||
"fczh": "宁房权证合变字第13816号、宁房权证合变字第13821号",
|
||||
"fwsyqr": "南京供电公司六合供电公司",
|
||||
"zl": "六合区雄州镇园林西路8巷13号",
|
||||
"fwcb": "全民单位房产",
|
||||
"qh": "",
|
||||
"fwyt": "其他",
|
||||
"zh": "",
|
||||
"fh": "",
|
||||
"jg": "砖木",
|
||||
"fwzcs": "1层",
|
||||
"szcs": "1层",
|
||||
"jzmj": "33.3平方米",
|
||||
"cqly": "自建"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市六合区雄州镇方州路北侧",
|
||||
"jd": "六合方州路基地",
|
||||
"fczh": "宁房权证合初字004717号",
|
||||
"fwsyqr": "南京供电公司六合供电公司",
|
||||
"zl": "六合区雄州镇方州路北侧",
|
||||
"fwcb": "全民单位房产",
|
||||
"qh": "002025-1",
|
||||
"fwyt": "非住宅",
|
||||
"zh": "6/7",
|
||||
"fh": "",
|
||||
"jg": "混钢/混钢",
|
||||
"fwzcs": "5层/15层",
|
||||
"szcs": "1-5层/1-15层",
|
||||
"jzmj": "3599.56平方米/7104.72平方米",
|
||||
"cqly": "自建"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市浦口区泰西路8号",
|
||||
"jd": "泰西路基地",
|
||||
"fczh": "",
|
||||
"fwsyqr": "",
|
||||
"zl": "南京市浦口区泰西路8号",
|
||||
"fwcb": "全民单位房产",
|
||||
"qh": "",
|
||||
"fwyt": "办公",
|
||||
"zh": "",
|
||||
"fh": "",
|
||||
"jg": "",
|
||||
"fwzcs": "",
|
||||
"szcs": "",
|
||||
"jzmj": "6000平方米",
|
||||
"cqly": "自建"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市江宁区上元大街598号",
|
||||
"jd": "江宁老办公楼基地",
|
||||
"fczh": "江宁房权证东山JN00028984号",
|
||||
"fwsyqr": "南京供电公司江宁供电公司",
|
||||
"zl": "南京市江宁区上元大街598号",
|
||||
"fwcb": "国有",
|
||||
"qh": "",
|
||||
"fwyt": "生产综合楼",
|
||||
"zh": "7",
|
||||
"fh": "",
|
||||
"jg": "混合",
|
||||
"fwzcs": "5层",
|
||||
"szcs": "1-5层",
|
||||
"jzmj": "2581.00平方米",
|
||||
"cqly": "变更"
|
||||
},
|
||||
[
|
||||
{
|
||||
"tudi": "南京市江宁区上元大街598号",
|
||||
"jd": "江宁老办公楼基地",
|
||||
"fczh": "江宁房权证东山JN00028984号",
|
||||
"fwsyqr": "南京供电公司江宁供电公司",
|
||||
"zl": "南京市江宁区上元大街598号",
|
||||
"fwcb": "国有",
|
||||
"qh": "",
|
||||
"fwyt": "生产综合楼",
|
||||
"zh": "7",
|
||||
"fh": "",
|
||||
"jg": "混合",
|
||||
"fwzcs": "5层",
|
||||
"szcs": "1-5层",
|
||||
"jzmj": "2581.00平方米",
|
||||
"cqly": "变更"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市江宁区上元大街598号",
|
||||
"jd": "江宁老办公楼基地",
|
||||
"fczh": "江宁房权证东山JN00028984号",
|
||||
"fwsyqr": "南京供电公司江宁供电公司",
|
||||
"zl": "南京市江宁区上元大街598号",
|
||||
"fwcb": "国有",
|
||||
"qh": "",
|
||||
"fwyt": "运维检修用房",
|
||||
"zh": "1",
|
||||
"fh": "",
|
||||
"jg": "混合",
|
||||
"fwzcs": "5层",
|
||||
"szcs": "1-5层",
|
||||
"jzmj": "1652.66平方米",
|
||||
"cqly": "变更"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市江宁区上元大街598号",
|
||||
"jd": "江宁老办公楼基地",
|
||||
"fczh": "江宁房权证东山JN00028984号",
|
||||
"fwsyqr": "南京供电公司江宁供电公司",
|
||||
"zl": "南京市江宁区上元大街598号",
|
||||
"fwcb": "国有",
|
||||
"qh": "",
|
||||
"fwyt": "生产综合楼",
|
||||
"zh": "2",
|
||||
"fh": "",
|
||||
"jg": "混合",
|
||||
"fwzcs": "6层",
|
||||
"szcs": "1-6层",
|
||||
"jzmj": "3389.37平方米",
|
||||
"cqly": "变更"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市江宁区上元大街598号",
|
||||
"jd": "江宁老办公楼基地",
|
||||
"fczh": "江宁房权证东山JN00028984号",
|
||||
"fwsyqr": "南京供电公司江宁供电公司",
|
||||
"zl": "南京市江宁区上元大街598号",
|
||||
"fwcb": "国有",
|
||||
"qh": "",
|
||||
"fwyt": "其他(食堂)",
|
||||
"zh": "4",
|
||||
"fh": "",
|
||||
"jg": "混合",
|
||||
"fwzcs": "2层",
|
||||
"szcs": "1-2层",
|
||||
"jzmj": "717.95平方米",
|
||||
"cqly": "变更"
|
||||
}
|
||||
]
|
||||
]
|
|
@ -11,12 +11,17 @@
|
|||
"qlxz": "划拨/其它",
|
||||
"yt": "机关团体用地/办公",
|
||||
"mj": "宗地面积:2819.41平方米/建筑面积:9026.8平方米",
|
||||
"zdmj": "2819.41平方米",
|
||||
"jzmj": "9026.8平方米",
|
||||
"syqx": "",
|
||||
"fwjg": "钢筋混凝土结构",
|
||||
"fwzcs": "13层",
|
||||
"szcs": "-1-12",
|
||||
"qqh": "684200-III-1",
|
||||
"ly": "自建"
|
||||
"ly": "自建",
|
||||
"jzwsl": "1处1幢",
|
||||
"jznd": "",
|
||||
"gldw": "本部"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市秦淮区火瓦巷51号",
|
||||
|
@ -30,12 +35,17 @@
|
|||
"qlxz": "划拨/其它",
|
||||
"yt": "商务金融用地/办公,工业",
|
||||
"mj": "2441.31平方米/6752.44平方米",
|
||||
"zdmj": "2441.31平方米",
|
||||
"jzmj": "6752.44平方米",
|
||||
"syqx": "",
|
||||
"fwjg": "混合结构,混合结构",
|
||||
"fwzcs": "7层,4层",
|
||||
"szcs": "1-7层,1-4层",
|
||||
"qqh": "214450-32,214450-32",
|
||||
"ly": "自建"
|
||||
"ly": "自建",
|
||||
"jzwsl": "1处2幢",
|
||||
"jznd": "",
|
||||
"gldw": "本部"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市雨花台区雨花南路32号",
|
||||
|
@ -49,12 +59,17 @@
|
|||
"qlxz": "划拨/其它",
|
||||
"yt": "公共设施用地/办公,变电站,普通仓库,门卫",
|
||||
"mj": "宗地面积:21506.36平方米/建筑面积:22622.82平方米",
|
||||
"zdmj": "21506.36平方米",
|
||||
"jzmj": "22622.82平方米",
|
||||
"syqx": "",
|
||||
"fwjg": "混合结构/钢筋混凝土结构/钢筋混凝土结构/钢筋混凝土结构/钢筋混凝土结构/混合结构/钢筋混凝土结构",
|
||||
"fwzcs": "3层/3层/3层/3层/2层/1层/11层",
|
||||
"szcs": "1-3/1-3/1-3/1-3/1-2/1层/-1-10",
|
||||
"qqh": "905350-3等",
|
||||
"ly": "自建"
|
||||
"ly": "自建",
|
||||
"jzwsl": "1处4幢",
|
||||
"jznd": "",
|
||||
"gldw": "本部"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市鼓楼区中山北路217号",
|
||||
|
@ -67,12 +82,17 @@
|
|||
"qlxz": "让出/其它",
|
||||
"yt": "商务金融用地/经营",
|
||||
"mj": "宗地面积:8838.88平方米/建筑面积:249.32平方米",
|
||||
"zdmj": "8838.88平方米",
|
||||
"jzmj": "249.32平方米",
|
||||
"syqx": "2048年11月17日止",
|
||||
"fwjg": "钢筋混凝土结构",
|
||||
"fwzcs": "33层",
|
||||
"szcs": "14层",
|
||||
"qqh": "523292-I-110",
|
||||
"ly": "买受"
|
||||
"ly": "买受",
|
||||
"jzwsl": "1处13套",
|
||||
"jznd": "",
|
||||
"gldw": "本部"
|
||||
},
|
||||
[
|
||||
{
|
||||
|
@ -86,12 +106,17 @@
|
|||
"qlxz": "让出/其它",
|
||||
"yt": "商务金融用地/经营",
|
||||
"mj": "宗地面积:8838.88平方米/建筑面积:249.32平方米",
|
||||
"zdmj": "8838.88平方米",
|
||||
"jzmj": "249.32平方米",
|
||||
"syqx": "2048年11月17日止",
|
||||
"fwjg": "钢筋混凝土结构",
|
||||
"fwzcs": "33层",
|
||||
"szcs": "14层",
|
||||
"qqh": "523292-I-110",
|
||||
"ly": "买受"
|
||||
"ly": "买受",
|
||||
"jzwsl": "1处13套",
|
||||
"jznd": "",
|
||||
"gldw": "本部"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市鼓楼区中山北路217号",
|
||||
|
@ -109,7 +134,10 @@
|
|||
"fwzcs": "33层",
|
||||
"szcs": "14层",
|
||||
"qqh": "523292-I-111",
|
||||
"ly": "买受"
|
||||
"ly": "买受",
|
||||
"jzwsl": "1处13套",
|
||||
"jznd": "",
|
||||
"gldw": "本部"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市鼓楼区中山北路217号",
|
||||
|
@ -127,7 +155,10 @@
|
|||
"fwzcs": "33层",
|
||||
"szcs": "14层",
|
||||
"qqh": "523292-I-112",
|
||||
"ly": "买受"
|
||||
"ly": "买受",
|
||||
"jzwsl": "1处13套",
|
||||
"jznd": "",
|
||||
"gldw": "本部"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市鼓楼区中山北路217号",
|
||||
|
@ -145,7 +176,10 @@
|
|||
"fwzcs": "33层",
|
||||
"szcs": "14层",
|
||||
"qqh": "523292-I-113",
|
||||
"ly": "买受"
|
||||
"ly": "买受",
|
||||
"jzwsl": "1处13套",
|
||||
"jznd": "",
|
||||
"gldw": "本部"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市鼓楼区中山北路217号",
|
||||
|
@ -163,7 +197,10 @@
|
|||
"fwzcs": "33层",
|
||||
"szcs": "14层",
|
||||
"qqh": "523292-I-114",
|
||||
"ly": "买受"
|
||||
"ly": "买受",
|
||||
"jzwsl": "1处13套",
|
||||
"jznd": "",
|
||||
"gldw": "本部"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市鼓楼区中山北路217号",
|
||||
|
@ -181,7 +218,10 @@
|
|||
"fwzcs": "33层",
|
||||
"szcs": "14层",
|
||||
"qqh": "523292-I-115",
|
||||
"ly": "买受"
|
||||
"ly": "买受",
|
||||
"jzwsl": "1处13套",
|
||||
"jznd": "",
|
||||
"gldw": "本部"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市鼓楼区中山北路217号",
|
||||
|
@ -199,7 +239,10 @@
|
|||
"fwzcs": "33层",
|
||||
"szcs": "14层",
|
||||
"qqh": "523292-I-116",
|
||||
"ly": "买受"
|
||||
"ly": "买受",
|
||||
"jzwsl": "1处13套",
|
||||
"jznd": "",
|
||||
"gldw": "本部"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市鼓楼区中山北路217号",
|
||||
|
@ -217,7 +260,10 @@
|
|||
"fwzcs": "33层",
|
||||
"szcs": "14层",
|
||||
"qqh": "523292-I-117",
|
||||
"ly": "买受"
|
||||
"ly": "买受",
|
||||
"jzwsl": "1处13套",
|
||||
"jznd": "",
|
||||
"gldw": "本部"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市鼓楼区中山北路217号",
|
||||
|
@ -235,7 +281,10 @@
|
|||
"fwzcs": "33层",
|
||||
"szcs": "14层",
|
||||
"qqh": "523292-I-118",
|
||||
"ly": "买受"
|
||||
"ly": "买受",
|
||||
"jzwsl": "1处13套",
|
||||
"jznd": "",
|
||||
"gldw": "本部"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市鼓楼区中山北路217号",
|
||||
|
@ -253,7 +302,10 @@
|
|||
"fwzcs": "33层",
|
||||
"szcs": "14层",
|
||||
"qqh": "523292-I-119",
|
||||
"ly": "买受"
|
||||
"ly": "买受",
|
||||
"jzwsl": "1处13套",
|
||||
"jznd": "",
|
||||
"gldw": "本部"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市鼓楼区中山北路217号",
|
||||
|
@ -271,7 +323,10 @@
|
|||
"fwzcs": "33层",
|
||||
"szcs": "14层",
|
||||
"qqh": "523292-I-120",
|
||||
"ly": "买受"
|
||||
"ly": "买受",
|
||||
"jzwsl": "1处13套",
|
||||
"jznd": "",
|
||||
"gldw": "本部"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市鼓楼区中山北路217号",
|
||||
|
@ -289,7 +344,10 @@
|
|||
"fwzcs": "33层",
|
||||
"szcs": "14层",
|
||||
"qqh": "523292-I-121",
|
||||
"ly": "买受"
|
||||
"ly": "买受",
|
||||
"jzwsl": "1处13套",
|
||||
"jznd": "",
|
||||
"gldw": "本部"
|
||||
}
|
||||
],
|
||||
{
|
||||
|
@ -304,12 +362,17 @@
|
|||
"qlxz": "",
|
||||
"yt": "办公",
|
||||
"mj": "宗地面积:4110.77平方米/建筑面积:4885.32平方米",
|
||||
"zdmj": "4110.77平方米",
|
||||
"jzmj": "4885.32平方米",
|
||||
"syqx": "",
|
||||
"fwjg": "混钢",
|
||||
"fwzcs": "8层",
|
||||
"szcs": "1-8层",
|
||||
"qqh": "",
|
||||
"ly": "自建"
|
||||
"ly": "自建",
|
||||
"jzwsl": "1处1幢",
|
||||
"jznd": "",
|
||||
"gldw": "本部"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市鼓楼区龙池庵66号",
|
||||
|
@ -323,12 +386,17 @@
|
|||
"qlxz": "划拨/其他",
|
||||
"yt": "其他商服用地/教育(教学)",
|
||||
"mj": "宗地面积:5599.09平方米/建筑面积:6138.53平方米",
|
||||
"zdmj": "5599.09平方米",
|
||||
"jzmj": "6138.53平方米",
|
||||
"syqx": "",
|
||||
"fwjg": "钢筋混凝土结构",
|
||||
"fwzcs": "7层",
|
||||
"szcs": "-1-6层",
|
||||
"qqh": "501040-V-1",
|
||||
"ly": "自建"
|
||||
"ly": "自建",
|
||||
"jzwsl": "1处2幢",
|
||||
"jznd": "",
|
||||
"gldw": "本部"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市玄武区中山路250号",
|
||||
|
@ -342,12 +410,17 @@
|
|||
"qlxz": "划拨/其他",
|
||||
"yt": "医卫慈善用地/医疗卫生",
|
||||
"mj": "宗地面积:620.30平方米/建筑面积:1993.25平方米",
|
||||
"zdmj": "620.30平方米",
|
||||
"jzmj": "1993.25平方米",
|
||||
"syqx": "",
|
||||
"fwjg": "混合结构",
|
||||
"fwzcs": "5层",
|
||||
"szcs": "1-5层",
|
||||
"qqh": "108137-5",
|
||||
"ly": "自建"
|
||||
"ly": "自建",
|
||||
"jzwsl": "1处1幢",
|
||||
"jznd": "",
|
||||
"gldw": "本部"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市江宁区天印大道1398号",
|
||||
|
@ -361,12 +434,17 @@
|
|||
"qlxz": "出让/其他",
|
||||
"yt": "工业用地/办公室/后勤服务用房/传达室",
|
||||
"mj": "宗地面积:33003.45平方米/建筑面积:8546.65平方米",
|
||||
"zdmj": "33003.45平方米",
|
||||
"jzmj": "8546.65平方米",
|
||||
"syqx": "2002年01月28日起2052年01月27日止",
|
||||
"fwjg": "钢筋混凝土结构/钢筋混凝土结构",
|
||||
"fwzcs": "6层/2层/1层",
|
||||
"szcs": "1层/2层/1层",
|
||||
"qqh": "11245010-IV-2",
|
||||
"ly": "其他"
|
||||
"ly": "其他",
|
||||
"jzwsl": "1处4幢",
|
||||
"jznd": "",
|
||||
"gldw": "国网南京市江宁区供电公司"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市高淳区北岭路23号",
|
||||
|
@ -380,11 +458,91 @@
|
|||
"qlxz": "划拨/其他",
|
||||
"yt": "公共设施用地/传达室,办公楼,配电房",
|
||||
"mj": "宗地面积:24967.60平方米/建筑面积:9251.51平方米",
|
||||
"zdmj": "8916.5平方米",
|
||||
"jzmj": "6404.8平方米",
|
||||
"syqx": "",
|
||||
"fwjg": "钢筋混凝土结构/钢筋混凝土结构/钢筋混凝土结构/钢筋混凝土结构/钢筋混凝土结构/钢筋混凝土结构/钢筋混凝土结构",
|
||||
"fwzcs": "1层/2层/5层/1层/2层/3层/1层",
|
||||
"szcs": "1层/1-2层/1-5层/1层/1-2层/1-3层/1层",
|
||||
"qqh": "13124010-037",
|
||||
"ly": "自建"
|
||||
"ly": "自建",
|
||||
"jzwsl": "1处7幢",
|
||||
"jznd": "",
|
||||
"gldw": "高淳"
|
||||
},
|
||||
{
|
||||
"tudi": "江苏省南京市溧水县永阳镇交通路99号",
|
||||
"jd": "溧水培训办公楼",
|
||||
"bdczh": "苏(2018)宁溧不动产权第0014070号",
|
||||
"qlr": "国网江苏省电力有限公司南京市溧水区供电分公司",
|
||||
"gyqk": "",
|
||||
"zl": "江苏省南京市溧水县永阳镇交通路99号",
|
||||
"bdcdyh": "320118100013GB00027F00010001,320118100013GB00027F00020001,320118100013GB00027F00030001,320118100013GB00027F00040001,320118100013GB00027F00050001,320118100013GB00027F00060001,320118100013GB00027F00070001",
|
||||
"qllx": "国有建设用地使用权/房屋(构筑物)所有权",
|
||||
"qlxz": "划拨",
|
||||
"yt": "公共设施用地/传达室,办公楼,配电房",
|
||||
"mj": "宗地面积:24967.60平方米/建筑面积:9251.51平方米",
|
||||
"zdmj": "24967.60平方米",
|
||||
"jzmj": "9251.51平方米",
|
||||
"syqx": "",
|
||||
"fwjg": "钢筋混凝土结构/钢筋混凝土结构/钢筋混凝土结构/钢筋混凝土结构/钢筋混凝土结构/钢筋混凝土结构/钢筋混凝土结构",
|
||||
"fwzcs": "1层/2层/5层/1层/2层/3层/1层",
|
||||
"szcs": "1层/1-2层/1-5层/1层/1-2层/1-3层/1层",
|
||||
"qqh": "13124010-037",
|
||||
"ly": "自建",
|
||||
"jzwsl": "1处7幢",
|
||||
"jznd": "",
|
||||
"gldw": "高淳"
|
||||
|
||||
},
|
||||
{
|
||||
"tudi": "江苏省南京市溧水县永阳镇珍珠北路16号",
|
||||
"jd": "溧水综合办公楼",
|
||||
"bdczh": "苏(2018)宁溧不动产权第0014068号",
|
||||
"qlr": "国网江苏省电力有限公司南京市溧水区供电分公司",
|
||||
"gyqk": "",
|
||||
"zl": "江苏省南京市溧水县永阳镇珍珠北路16号",
|
||||
"bdcdyh": "320118100013GB00027F00010001,320118100013GB00027F00020001,320118100013GB00027F00030001,320118100013GB00027F00040001,320118100013GB00027F00050001,320118100013GB00027F00060001,320118100013GB00027F00070001",
|
||||
"qllx": "国有建设用地使用权/房屋(构筑物)所有权",
|
||||
"qlxz": "划拨",
|
||||
"yt": "公共设施用地/传达室,办公楼,配电房",
|
||||
"mj": "宗地面积:24967.60平方米/建筑面积:9251.51平方米",
|
||||
"zdmj": "3561.8",
|
||||
"jzmj": "3828.02",
|
||||
"syqx": "",
|
||||
"fwjg": "钢筋混凝土结构/钢筋混凝土结构/钢筋混凝土结构/钢筋混凝土结构/钢筋混凝土结构/钢筋混凝土结构/钢筋混凝土结构",
|
||||
"fwzcs": "1层/2层/5层/1层/2层/3层/1层",
|
||||
"szcs": "1层/1-2层/1-5层/1层/1-2层/1-3层/1层",
|
||||
"qqh": "13124010-037",
|
||||
"ly": "自建",
|
||||
"jzwsl": "1处7幢",
|
||||
"jznd": "",
|
||||
"gldw": "溧水"
|
||||
|
||||
},
|
||||
{
|
||||
"tudi": "南京市高淳区镇兴路1号",
|
||||
"jd": "高淳老办公楼基地",
|
||||
"bdczh": "苏(2020)宁高不动产权第0011112号",
|
||||
"qlr": "国网江苏省电力有限公司南京市高淳区供电分公司",
|
||||
"gyqk": "",
|
||||
"zl": "淳溪镇北岭路23号1幢等",
|
||||
"bdcdyh": "320118100013GB00027F00010001,320118100013GB00027F00020001,320118100013GB00027F00030001,320118100013GB00027F00040001,320118100013GB00027F00050001,320118100013GB00027F00060001,320118100013GB00027F00070001",
|
||||
"qllx": "国有建设用地使用权/房屋(构筑物)所有权",
|
||||
"qlxz": "划拨/其他",
|
||||
"yt": "公共设施用地/传达室,办公楼,配电房",
|
||||
"mj": "宗地面积:24967.60平方米/建筑面积:9251.51平方米",
|
||||
"zdmj": "4745.6",
|
||||
"jzmj": "5606.85",
|
||||
"syqx": "",
|
||||
"fwjg": "钢筋混凝土结构/钢筋混凝土结构/钢筋混凝土结构/钢筋混凝土结构/钢筋混凝土结构/钢筋混凝土结构/钢筋混凝土结构",
|
||||
"fwzcs": "1层/2层/5层/1层/2层/3层/1层",
|
||||
"szcs": "1层/1-2层/1-5层/1层/1-2层/1-3层/1层",
|
||||
"qqh": "13124010-037",
|
||||
"ly": "自建",
|
||||
"jzwsl": "1处5幢",
|
||||
"jznd": "",
|
||||
"gldw": "溧水"
|
||||
|
||||
}
|
||||
]
|
|
@ -0,0 +1,120 @@
|
|||
[
|
||||
{
|
||||
"tudi": "南京市鼓楼区和燕路2号",
|
||||
"jd": "栖霞基地",
|
||||
"qq": "在途办理"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市秦淮区火瓦巷51号",
|
||||
"jd": "城南基地",
|
||||
"qq": "已办理最新"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市雨花台区雨花南路32号",
|
||||
"jd": "雨花基地",
|
||||
"qq": "已办理最新"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市鼓楼区中山北路217号",
|
||||
"jd": "龙吟广场",
|
||||
"qq": "办理为最新"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市鼓楼区峨嵋路21号",
|
||||
"jd": "健康中心",
|
||||
"qq": "在途办理"
|
||||
|
||||
},
|
||||
{
|
||||
"tudi": "南京市鼓楼区龙池庵66号",
|
||||
"jd": "苏电宾馆",
|
||||
"qq": "办理为最新"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市玄武区中山路250号",
|
||||
"jd": "老卫生所",
|
||||
"qq": "在途办理"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市江宁区天印大道1398号",
|
||||
"jd": "江宁新办公楼基地",
|
||||
"qq": "在途办理"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市高淳区北岭路23号",
|
||||
"jd": "高淳新办公楼基地",
|
||||
"qq": ""
|
||||
|
||||
},
|
||||
{
|
||||
"tudi": "南京市鼓楼区定淮门石头城115号",
|
||||
"jd": "城北基地",
|
||||
"qq": "在途办理"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市建邺区奥体大街1号",
|
||||
"jd": "公司大楼",
|
||||
"qq": "在途办理"
|
||||
|
||||
},
|
||||
{
|
||||
"tudi": "南京市玄武区中山路251号",
|
||||
"jd": "新纪元宾馆",
|
||||
"qq": "在途办理"
|
||||
|
||||
},
|
||||
{
|
||||
"tudi": "南京市江宁区天元中路19号",
|
||||
"jd": "峰电大厦",
|
||||
"qq": "在途办理"
|
||||
|
||||
},
|
||||
{
|
||||
"tudi": "南京市浦口区龙华路19号",
|
||||
"jd": "龙华路19号基地",
|
||||
"qq": ""
|
||||
|
||||
},
|
||||
{
|
||||
"tudi": "南京市六合区雄州镇园林西路8巷13号",
|
||||
"jd": "六合园林路基地",
|
||||
"qq": ""
|
||||
|
||||
},
|
||||
{
|
||||
"tudi": "南京市六合区雄州镇方州路北侧",
|
||||
"jd": "六合方州路基地",
|
||||
"qq": ""
|
||||
|
||||
},
|
||||
{
|
||||
"tudi": "南京市浦口区泰西路8号",
|
||||
"jd": "泰西路基地",
|
||||
"qq": "无需办理"
|
||||
|
||||
},
|
||||
{
|
||||
"tudi": "南京市江宁区上元大街598号",
|
||||
"jd": "江宁老办公楼基地",
|
||||
"qq": "在途办理"
|
||||
|
||||
},
|
||||
{
|
||||
"tudi": "江苏省南京市溧水县永阳镇交通路99号",
|
||||
"jd": "溧水培训办公楼",
|
||||
"qq": "已办理最新"
|
||||
|
||||
},
|
||||
{
|
||||
"tudi": "江苏省南京市溧水县永阳镇珍珠北路16号",
|
||||
"jd": "溧水综合办公楼",
|
||||
"qq": "已办理最新"
|
||||
|
||||
},
|
||||
{
|
||||
"tudi": "南京市高淳区镇兴路1号",
|
||||
"jd": "高淳老办公楼基地",
|
||||
"qq": ""
|
||||
|
||||
}
|
||||
]
|
|
@ -10,7 +10,11 @@
|
|||
"th": "",
|
||||
"dlyt": "工业",
|
||||
"syqmj": "11219.8平方米",
|
||||
"zzrq": "2045年03月26"
|
||||
"zzrq": "2045年03月26",
|
||||
"jzwsl": "1处3幢",
|
||||
"jznd": "",
|
||||
"gldw": "本部",
|
||||
"tdmj": "11219.8"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市江宁区天元中路19号",
|
||||
|
@ -23,7 +27,11 @@
|
|||
"th": "34.25-00.25",
|
||||
"dlyt": "公共设施用地",
|
||||
"syqmj": "6263.40平方米",
|
||||
"zzrq": ""
|
||||
"zzrq": "",
|
||||
"jzwsl": "1处1幢",
|
||||
"jznd": "",
|
||||
"gldw": "本部",
|
||||
"tdmj": "6263.4"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市六合区雄州镇园林西路8巷13号",
|
||||
|
@ -36,7 +44,11 @@
|
|||
"th": "",
|
||||
"dlyt": "公共设施用地",
|
||||
"syqmj": "3518.7平方米",
|
||||
"zzrq": ""
|
||||
"zzrq": "",
|
||||
"jzwsl": "1处2幢",
|
||||
"jznd": "",
|
||||
"gldw": "江北新区供电公司",
|
||||
"tdmj": "3518.7"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市六合区雄州镇方州路北侧",
|
||||
|
@ -49,7 +61,11 @@
|
|||
"th": "",
|
||||
"dlyt": "公共设施用地",
|
||||
"syqmj": "26354.9平方米",
|
||||
"zzrq": ""
|
||||
"zzrq": "",
|
||||
"jzwsl": "1处2幢",
|
||||
"jznd": "",
|
||||
"gldw": "江北新区供电公司",
|
||||
"tdmj": "26354.9"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市浦口区泰西路8号",
|
||||
|
@ -62,7 +78,11 @@
|
|||
"th": "58.25-87",
|
||||
"dlyt": "公共设施用地",
|
||||
"syqmj": "5903.8平方米",
|
||||
"zzrq": ""
|
||||
"zzrq": "",
|
||||
"jzwsl": "1处1幢",
|
||||
"jznd": "",
|
||||
"gldw": "江北新区供电公司",
|
||||
"tdmj": "5903.8"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市建邺区奥体大街1号",
|
||||
|
@ -75,7 +95,11 @@
|
|||
"th": "41.00-90.75",
|
||||
"dlyt": "科教用地(科技研发)",
|
||||
"syqmj": "37272.58平方米",
|
||||
"zzrq": "2056年2月5号"
|
||||
"zzrq": "2056年2月5号",
|
||||
"jzwsl": "1处1幢",
|
||||
"jznd": "",
|
||||
"gldw": "本部",
|
||||
"tdmj": "37272.58"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市江宁区上元大街598号",
|
||||
|
@ -88,7 +112,45 @@
|
|||
"th": "37.00-00.75",
|
||||
"dlyt": "机关团体用地",
|
||||
"syqmj": "5145.90平方米",
|
||||
"zzrq": ""
|
||||
"zzrq": "",
|
||||
"jzwsl": "1处3幢",
|
||||
"jznd": "",
|
||||
"gldw": "国网南京市江宁区供电公司",
|
||||
"tdmj": "5149.5"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市玄武区中山路251号",
|
||||
"jd": "新纪元宾馆",
|
||||
"tdzh": "宁鼓国用(2005)15277号/宁鼓国用(2007)第08158号",
|
||||
"tdsyqr": "江苏省电力公司南京供电公司",
|
||||
"zl": "南京市玄武区中山路251号",
|
||||
"dh": "211000180032",
|
||||
"syqlx": "划拨",
|
||||
"th": "37.00-00.75",
|
||||
"dlyt": "机关团体用地",
|
||||
"syqmj": "5145.90平方米",
|
||||
"zzrq": "",
|
||||
"jzwsl": "1处1幢",
|
||||
"jznd": "",
|
||||
"gldw": "本部",
|
||||
"tdmj": "5149.5"
|
||||
},
|
||||
{
|
||||
"tudi": "南京市浦口区龙华路19号",
|
||||
"jd": "龙华路19号基地",
|
||||
"tdzh": "浦国用(2012)第02191号",
|
||||
"tdsyqr": "江苏省电力公司南京供电公司",
|
||||
"zl": "南京市浦口区龙华路19号",
|
||||
"dh": "211000180032",
|
||||
"syqlx": "划拨",
|
||||
"th": "37.00-00.75",
|
||||
"dlyt": "公用设施用地",
|
||||
"syqmj": "5145.90平方米",
|
||||
"zzrq": "",
|
||||
"jzwsl": "1处2幢",
|
||||
"jznd": "",
|
||||
"gldw": "江北新区供电公司",
|
||||
"tdmj": "6931.2"
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -848,7 +848,7 @@ document.getElementById("map").onmousedown = function(e){
|
|||
parent.getFromIframe({ data:"办公用地",params:e.target.cusData.jd,type:e.target.cusData.type})
|
||||
$(e.target.tip).show();
|
||||
$(e.target.tip.txt).html(e.target.cusData.tudi);
|
||||
$(e.target.tip.pos).html(e.target.cusData.jd);
|
||||
$(e.target.tip.pos).html(e.target.cusData.jd);
|
||||
|
||||
});
|
||||
// 如果不传el,会默认给一个蓝色水滴图标
|
||||
|
@ -868,7 +868,7 @@ document.getElementById("map").onmousedown = function(e){
|
|||
}
|
||||
//基地定位
|
||||
function loadJDQK() {
|
||||
$(".jd").hide();
|
||||
// $(".jd").hide();
|
||||
$.get("data/jd.json", function (res) {
|
||||
for (var i in res) {
|
||||
var row = res[i];
|
||||
|
@ -898,16 +898,19 @@ document.getElementById("map").onmousedown = function(e){
|
|||
pos.setAttribute("class","pos");
|
||||
tip.appendChild(pos);
|
||||
tip.pos = pos;
|
||||
// $(el.tip).hide();
|
||||
// visiblejddis()
|
||||
// if(val== el.cusData.jd){
|
||||
// $(el.tip).show();
|
||||
// $(el.tip).show();
|
||||
// $(el.tip.txt).html(el.cusData.tudi);
|
||||
// $(el.tip.pos).html(el.cusData.jd);
|
||||
// visiblejd()
|
||||
// }else{
|
||||
// $(el.tip).hide();
|
||||
// }
|
||||
// $(el.tip).hide();
|
||||
// visiblejddis()
|
||||
if(val== el.cusData.jd){
|
||||
$(el.tip).show();
|
||||
$(el.tip.txt).html(el.cusData.tudi);
|
||||
$(el.tip.pos).html(el.cusData.jd);
|
||||
visiblejd()
|
||||
}else{
|
||||
$(el.tip).hide();
|
||||
}
|
||||
|
||||
el.addEventListener("mouseover", function (e) {
|
||||
// $(e.target.tip).show();//(e.target.cusData.street+"("+e.target.cusData.zongdi+")");
|
||||
|
@ -941,6 +944,7 @@ document.getElementById("map").onmousedown = function(e){
|
|||
});
|
||||
}
|
||||
function loadJDdw(val) {
|
||||
|
||||
console.log("val",val)
|
||||
$.get("data/jd.json", function (res) {
|
||||
for (var i in res) {
|
||||
|
@ -971,22 +975,20 @@ document.getElementById("map").onmousedown = function(e){
|
|||
pos.setAttribute("class","pos");
|
||||
tip.appendChild(pos);
|
||||
tip.pos = pos;
|
||||
$(el.tip).hide();
|
||||
// loadJDQK()
|
||||
// visiblejddis()
|
||||
// $(el.tip).show();
|
||||
// $(el.tip.txt).html(el.cusData.tudi);
|
||||
// $(el.tip.pos).html(el.cusData.jd);
|
||||
// $(el.tip).hide();
|
||||
// visiblejd()
|
||||
if(val == el.cusData.jd){
|
||||
$(".jd").hide();
|
||||
console.log("el.cusData.jd",el.cusData.jd)
|
||||
// console.log("el.tip",el.tip)
|
||||
$(el.tip).show();
|
||||
$(el.tip.txt).html(el.cusData.tudi);
|
||||
$(el.tip.pos).html(el.cusData.jd);
|
||||
visiblejd()
|
||||
}else{
|
||||
$(el.tip).hide();
|
||||
// visiblejd()
|
||||
// $(el.tip).hide();
|
||||
// console.log("el.tip",el.tip)
|
||||
// visiblejddis()
|
||||
}
|
||||
|
||||
el.addEventListener("mouseover", function (e) {
|
||||
|
|
|
@ -40,9 +40,6 @@
|
|||
<div class="fullscreen" onclick="unityInstance.SetFullscreen(1)"></div>
|
||||
<div class="title">ShengDaPing</div>
|
||||
</div>
|
||||
<div class="home">
|
||||
<div class="back" onclick="home()" style="cursor: pointer"></div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -267,7 +267,6 @@ import axios from 'axios'
|
|||
if(key =='jd'){
|
||||
|
||||
if (String(data[key]).toLowerCase().indexOf(jdnew)>-1) {
|
||||
console.log("data.jd",data.jd)
|
||||
let jd =''
|
||||
jd = data.jd
|
||||
that.jdName = jd
|
||||
|
@ -278,12 +277,6 @@ import axios from 'axios'
|
|||
|
||||
|
||||
});
|
||||
// if (data.jd.toLowerCase().indexOf(jdnew) !== -1 ) {
|
||||
// let jd =''
|
||||
// jd = data.jd
|
||||
// that.jdName = jd
|
||||
// that.$emit('jdNameData',that.jdName)
|
||||
// }
|
||||
return inputTrue && input2True
|
||||
})
|
||||
}
|
||||
|
|
|
@ -19,34 +19,31 @@
|
|||
<!-- <BasicBox2 class="basicInfo" :title="tit" :dataSource="workList" ></BasicBox2>
|
||||
<BasicBox2 class="basicInfo" title="房产证信息" :dataSource="workListFCZ" v-show="fczShow"></BasicBox2> -->
|
||||
<!-- <div v-for="item in floorInfo" :key="item.id" style="width:100px;height: auto;"> -->
|
||||
<div v-show="val">
|
||||
<div style=" margin-top: 4%;text-align: center;top: 1px;width: 182px;" @click="showChild(item,index)"
|
||||
<div v-show="valShow">
|
||||
|
||||
<!-- <ul style=" margin-top: 4%;text-align: center;top: 1px;width: 182px;" @click="showChild(item,index)"
|
||||
v-for="(item,index) in floorNameQcData.floorName" :key="index">
|
||||
<ul>
|
||||
<li class=" leftFloor">{{item}}</li>
|
||||
<li class="leftFloor1" @click="departSearch(item)" style="margin-top: 4%;text-align: center;top: 1px;"
|
||||
v-for="(item,index) in floorNameQcData.departQcData" :key="index">{{item}}</li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- <div style=" margin-top: 4%;text-align: center;top: 1px;width: 182px;" @click="showChild(item,index)"
|
||||
v-for="(item,index) in floorNameQcData.floorName" :key="index" v-show="isShow">
|
||||
<ul>
|
||||
<li class=" leftFloors">{{item}}</li>
|
||||
<li class="leftFloor1" @click="departSearch(item)" style="margin-top: 4%;text-align: center;top: 1px;"
|
||||
v-for="(item,index) in floorNameQcData.departQcData" :key="index">{{item}}</li>
|
||||
</ul>
|
||||
</div> -->
|
||||
|
||||
|
||||
|
||||
<!-- <ul style=" margin-top: 4%;text-align: center;top: 1px;width: 182px;">
|
||||
<li class="leftFloors" @click="showChild()" v-show="isShow"
|
||||
v-for="(item,index) in floorNameQcData.floorName" :key="index"
|
||||
style="margin-top: 8%;text-align: center;top: 1px;">{{item}}</li>
|
||||
<li class="leftFloor">{{item}}</li>
|
||||
<ul style=" margin-top: 4%;text-align: center;top: 1px;width: 182px;"
|
||||
>
|
||||
<li class="leftFloor1" @click="departSearch(n,item)" style="margin-top: 4%;text-align: center;top: 1px;"
|
||||
v-for="(n,i) in item.departQcData" :key="i"
|
||||
id="depart">{{n}}</li>
|
||||
</ul>
|
||||
</ul> -->
|
||||
|
||||
<ul class="topUl">
|
||||
<li style=" margin-top: 4%;text-align: center;top: 1px;width: 182px;"
|
||||
v-for="(item,index) in floorNameQcData.floorName.depart" :key="index">
|
||||
<div class="leftFloor" @click="showChild(item,index)">{{item.floorName}}</div>
|
||||
<ul style="margin-top: 4%;text-align: center;top: 1px;width: 182px;overflow-y: auto;
|
||||
max-height: 700px;overflow-x:hidden" v-if="item.dataInfo" class="showUl">
|
||||
<li class="leftFloor1" v-for="(n,i) in item.dataInfo" :key="i" @click="departSearch(n,item)" style="margin-top: 4%;text-align: center;top: 1px;"
|
||||
id="depart">{{n.depart}}</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div v-show="!val">
|
||||
<div v-show="!valShow">
|
||||
<div style=" margin-top: 4%;text-align: center;top: 1px;width: 182px;" v-show="!isShow">
|
||||
<ul @click="showChild(item)">
|
||||
<li class="leftFloor">{{floorInfo}}</li>
|
||||
|
@ -58,9 +55,9 @@
|
|||
</ul>
|
||||
</div>
|
||||
<div style="margin-top: 4%;text-align: center;top: 1px;" v-show="isShow"
|
||||
v-for="(item,index) in departQcData" :key="index">
|
||||
<ul @click="departSearch(item)">
|
||||
<li class="leftFloor1">{{item}}</li>
|
||||
v-for="(n,index) in departQcData" :key="index">
|
||||
<ul @click="departSearch1(n)">
|
||||
<li class="leftFloor1">{{n}}</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -76,7 +73,7 @@
|
|||
<div class="right">
|
||||
<!-- <h1>房地项目全生命周期管理</h1> -->
|
||||
|
||||
<BasicBox4 title="生产用房" :dataSource="false" :options="options" :valueData="valueData" :key="componentKey"
|
||||
<BasicBox4 title="生产用房" :dataSource="false" :options="options" :valueData="valueData"
|
||||
v-on:inputData="getInputData">
|
||||
|
||||
<template slot="top">
|
||||
|
@ -108,6 +105,9 @@ import BasicBox4 from "@/components/BasicBox4"
|
|||
import BasicBox2 from "@/components/BasicBox2"
|
||||
import axios from 'axios'
|
||||
import { FormItem } from "element-ui";
|
||||
|
||||
|
||||
|
||||
export default {
|
||||
mixins: [drawMixin],
|
||||
data() {
|
||||
|
@ -116,7 +116,7 @@ export default {
|
|||
componentKey: 0,
|
||||
componentKey1: 0,
|
||||
isShow1: true,
|
||||
val: true,
|
||||
valShow: true,
|
||||
isShow:false,
|
||||
floorInfo: [],
|
||||
floorInfo1: [],
|
||||
|
@ -130,10 +130,10 @@ export default {
|
|||
{
|
||||
floorName: {
|
||||
|
||||
depart: []
|
||||
|
||||
depart: [],
|
||||
departQcData: []
|
||||
},
|
||||
departQcData: []
|
||||
|
||||
},
|
||||
|
||||
unityUrl:"/Publish/city-build/index.html",
|
||||
|
@ -346,11 +346,11 @@ export default {
|
|||
if(this.$route.params.id=='公司大楼'){
|
||||
this.unityUrl="/Publish/city-build1/index.html"
|
||||
}else if(this.$route.params.id=='双闸变'){
|
||||
this.unityUrl="/Publish/city-double/index.html"
|
||||
this.unityUrl="/Publish/double/index.html"
|
||||
}else if(this.$route.params.id=='雨花基地'){
|
||||
this.unityUrl="/Publish/city-rain/index.html"
|
||||
}else if(this.$route.params.id=='城北基地'){
|
||||
this.unityUrl="/Publish/city-north/index.html"
|
||||
this.unityUrl="/Publish/north/index.html"
|
||||
}else if(this.$route.params.id=='城南基地'){
|
||||
this.unityUrl="/Publish/城南基地/index.html"
|
||||
}else if(this.$route.params.id=='栖霞基地'){
|
||||
|
@ -366,6 +366,7 @@ this.unityUrl="/Publish/city-build/index.html"
|
|||
console.log("scene",scene);
|
||||
window.FloorUI('true')
|
||||
}
|
||||
window.getFloorName=this.getFloorName
|
||||
window.setTimeout(e => {
|
||||
this.forceRerender();
|
||||
}, 200)
|
||||
|
@ -379,6 +380,10 @@ this.unityUrl="/Publish/city-build/index.html"
|
|||
this.departnew = name
|
||||
console.log(this.departnew);
|
||||
},
|
||||
getFloorName(data){
|
||||
console.log('data333',data);
|
||||
|
||||
},
|
||||
//重新渲染
|
||||
forceRerender() {
|
||||
this.componentKey ++;
|
||||
|
@ -502,108 +507,153 @@ console.log("val",val)
|
|||
},
|
||||
//获取列表数据
|
||||
getListData(val) {
|
||||
let that = this
|
||||
// let that = this
|
||||
// if(val == "城北基地"||val == "城南基地"||val =="公司大楼(市大楼)"||val =="健康中心"||val == "老卫生所"||val == "龙吟广场"||val == "栖霞基地"|| val == "雨花基地"){
|
||||
if (val == "城北基地" || val == "城南基地" || val == "公司大楼" || val == "雨花基地"|| val == "双闸变") {
|
||||
that.val = true
|
||||
console.log("val",val)
|
||||
this.valShow = true
|
||||
axios.get('/json/'+val+ '.json')
|
||||
.then(result => {
|
||||
console.log('val', result.data)
|
||||
console.log('result.data', result.data)
|
||||
this.arr = result.data
|
||||
for (var a = 0; a < result.data.length; a++) {
|
||||
for (let i = 0; i < result.data.length; i++) {
|
||||
that.floorInfo1.push(result.data[i].floorName)
|
||||
// for (var a = 0; a < result.data.length; a++) {
|
||||
|
||||
|
||||
// var arr = Object.entries(result.data(a).floorName)
|
||||
// console.log("arr", arr)
|
||||
|
||||
|
||||
// }
|
||||
for (let i = 0; i < result.data.length; i++) {
|
||||
this.floorInfo1.push(result.data[i].floorName)
|
||||
|
||||
//表格数据
|
||||
that.tableData.push(Object.values(result.data[i]))
|
||||
this.tableData.push(Object.values(result.data[i]))
|
||||
}
|
||||
for (let v = 0; v < that.tableData.length; v++) {
|
||||
that.departInfo.push(that.tableData[v])
|
||||
that.departInfo[v].splice(1, 1)
|
||||
that.departInfo[v].splice(2, 1)
|
||||
that.departInfo[v].splice(6, 1)
|
||||
that.departInfo[v].splice(4, 1)
|
||||
for (let v = 0; v < this.tableData.length; v++) {
|
||||
this.departInfo.push(this.tableData[v])
|
||||
this.departInfo[v].splice(1, 1)
|
||||
this.departInfo[v].splice(2, 1)
|
||||
this.departInfo[v].splice(6, 1)
|
||||
this.departInfo[v].splice(4, 1)
|
||||
}
|
||||
|
||||
that.config5.data = that.departInfo
|
||||
this.config5.data = this.departInfo
|
||||
// 去重
|
||||
|
||||
const qcData1 = new Set(that.floorInfo1)
|
||||
that.floorNameQcData.floorName = qcData1
|
||||
const qcData1 = new Set(this.floorInfo1)
|
||||
this.floorNameQcData.floorName = qcData1
|
||||
var floorname = []
|
||||
this.floorNameQcData.floorName.forEach(function (item1, index, set) {
|
||||
floorname.push(item1)
|
||||
})
|
||||
//拿到对应楼号对应部门
|
||||
|
||||
var list = result.data.map(function(item) {
|
||||
return {
|
||||
floorName: item.floorName,
|
||||
depart: item.depart
|
||||
};
|
||||
})
|
||||
console.log("this.floorNameQcData",this.floorNameQcData)
|
||||
console.log("list",list)
|
||||
var groupList = [];
|
||||
|
||||
//楼号分类
|
||||
for (var j = 0; j < result.data.length; j++) {
|
||||
if (!groupList[result.data[j].floorName]) {
|
||||
var arr1 = [];
|
||||
arr1.push(result.data[j]);
|
||||
groupList[result.data[j].floorName] = arr1;
|
||||
// for (var j = 0; j < result.data.length; j++) {
|
||||
// if (!groupList[result.data[j].floorName]) {
|
||||
|
||||
// arr1.push(result.data[j]);
|
||||
// groupList[result.data[j].floorName] = arr1;
|
||||
// } else {
|
||||
// groupList[result.data[j].floorName].push(result.data[j])
|
||||
// }
|
||||
// }
|
||||
for (var j = 0; j < list.length; j++) {
|
||||
if (!groupList[list[j].floorName]) {
|
||||
var arr1 = [];
|
||||
arr1.push(list[j]);
|
||||
groupList[list[j].floorName] = arr1;
|
||||
} else {
|
||||
groupList[result.data[j].floorName].push(result.data[j])
|
||||
groupList[list[j].floorName].push(list[j])
|
||||
}
|
||||
}
|
||||
that.floorNameQcData.floorName.depart = groupList
|
||||
|
||||
console.log("groupList",groupList)
|
||||
|
||||
this.floorNameQcData.floorName.depart = groupList
|
||||
console.log("this.floorNameQcData",this.floorNameQcData)
|
||||
let tempArr = [];
|
||||
let Data = [];
|
||||
for (let i = 0; i < list.length; i++) {
|
||||
if (tempArr.indexOf(list[i].floorName) === -1) {
|
||||
Data.push({
|
||||
floorName: list[i].floorName,
|
||||
dataInfo: [list[i]]
|
||||
});
|
||||
tempArr.push(list[i].floorName);
|
||||
} else {
|
||||
for (let j = 0; j < Data.length; j++) {
|
||||
if (Data[j].floorName == list[i].floorName) {
|
||||
Data[j].dataInfo.push(list[i]);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
console.log("floorName",Data);
|
||||
|
||||
var arr = Object.entries(result.data(a))
|
||||
console.log("arr", arr)
|
||||
|
||||
|
||||
}
|
||||
|
||||
Data.map((item) => {
|
||||
console.log("item",item)
|
||||
item.dataInfo =this.fn2(item.dataInfo)
|
||||
});
|
||||
console.log("Data",Data)
|
||||
this.floorNameQcData.floorName.depart = Data
|
||||
console.log("this.floorNameQcData.floorName",this.floorNameQcData.floorName)
|
||||
})
|
||||
.catch(error => {
|
||||
console.log(error)
|
||||
})
|
||||
|
||||
|
||||
} else if (val == "健康中心" || val == "老卫生所" || val == "龙吟广场" || val == "栖霞基地") {
|
||||
if (val == '健康中心') {
|
||||
that.floorInfo = "健康中心主楼"
|
||||
this.floorInfo = "健康中心主楼"
|
||||
} else {
|
||||
that.floorInfo = val + "主楼"
|
||||
this.floorInfo = val + "主楼"
|
||||
}
|
||||
that.val = false
|
||||
console.log("val", val)
|
||||
this.valShow = false
|
||||
axios.get('/json/' + val + '.json')
|
||||
.then(result => {
|
||||
console.log('val', result.data)
|
||||
for (var a = 0; a < result.data.length; a++) {
|
||||
console.log(result.data)
|
||||
// for (var a = 0; a < result.data.length; a++) {
|
||||
// console.log(result.data)
|
||||
// 不需要处理楼号
|
||||
|
||||
//拿到全部部门
|
||||
for (let j = 0; j < result.data.length; j++) {
|
||||
that.departInfo.push(result.data[j].depart)
|
||||
this.departInfo.push(result.data[j].depart)
|
||||
//表格数据
|
||||
that.tableData.push(Object.values(result.data[j]))
|
||||
this.tableData.push(Object.values(result.data[j]))
|
||||
}
|
||||
|
||||
for (let v = 0; v < that.tableData.length; v++) {
|
||||
that.departInfo1.push(that.tableData[v])
|
||||
that.departInfo1[v].splice(1, 1)
|
||||
that.departInfo1[v].splice(4, 1)
|
||||
for (let v = 0; v < this.tableData.length; v++) {
|
||||
this.departInfo1.push(this.tableData[v])
|
||||
this.departInfo1[v].splice(1, 1)
|
||||
this.departInfo1[v].splice(4, 1)
|
||||
}
|
||||
|
||||
that.config5.data = that.departInfo1
|
||||
this.config5.data = this.departInfo1
|
||||
|
||||
//去除部门数组中的空字符串
|
||||
var newArr = that.departInfo.filter(i => i && i.trim())
|
||||
var newArr = this.departInfo.filter(i => i && i.trim())
|
||||
//去重
|
||||
const qcData = new Set(newArr)
|
||||
that.departQcData = qcData
|
||||
console.log(that.departQcData);
|
||||
this.departQcData = qcData
|
||||
console.log(this.departQcData);
|
||||
// that.departInfo = result.data[8]
|
||||
|
||||
// }
|
||||
var arr = Object.entries(result.data(a))
|
||||
console.log("arr", arr)
|
||||
}
|
||||
// var arr = Object.entries(result.data(a))
|
||||
// console.log("arr", arr)
|
||||
// }
|
||||
|
||||
})
|
||||
.catch(error => {
|
||||
|
@ -611,82 +661,125 @@ console.log("val",val)
|
|||
})
|
||||
}
|
||||
},
|
||||
fn2(arr) {
|
||||
const res = new Map();
|
||||
return arr.filter(arr => !res.has(arr.depart) && res.set(arr.depart, arr.depart)&& arr.depart.trim());
|
||||
},
|
||||
cancelLoading() {
|
||||
setTimeout(() => {
|
||||
this.loading = false;
|
||||
}, 500);
|
||||
},
|
||||
showChild(item) {
|
||||
this.isShow = !this.isShow
|
||||
var listdepart = []
|
||||
// 通过点击获取对应的部门
|
||||
if (item != null) {
|
||||
for (let i = 0; i < this.floorNameQcData.floorName.depart[item].length; i++) {
|
||||
listdepart.push(this.floorNameQcData.floorName.depart[item][i].depart)
|
||||
}
|
||||
//去除部门数组中的空字符串
|
||||
var newArr1 = listdepart.filter(i => i && i.trim())
|
||||
//去重
|
||||
const qcData = new Set(newArr1)
|
||||
this.floorNameQcData.departQcData = qcData
|
||||
} else {
|
||||
console.log("item",item)
|
||||
console.log("this.floorNameQcData",this.floorNameQcData)
|
||||
console.log("this.departInfo",this.departInfo)
|
||||
console.log("this.arr",this.arr)
|
||||
this.isShow1 = false
|
||||
this.componentKey1++
|
||||
var listTableNew = []
|
||||
this.config6.data = []
|
||||
for (let i = 0; i < this.config5.data.length; i++) {
|
||||
this.departInfo = this.config5.data[i]
|
||||
if (item == this.departInfo[2]) {
|
||||
for (let a = 0; a < this.arr.length; a++) {
|
||||
this.departQcData1.push(this.arr[a].depart)
|
||||
console.log(this.arr[a].depart);
|
||||
}
|
||||
listTableNew=this.config5.data[i]
|
||||
|
||||
for (let a = 0; a < listTableNew.length; a++) {
|
||||
if (listTableNew[1]==item.floorName) {
|
||||
this.config6.data.push(listTableNew)
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
// console.log("this.config6.data",this.config6.data)
|
||||
// for (let a = 0; a < this.arr.length; a++) {
|
||||
// this.departQcData1.push(this.arr[a].depart)
|
||||
// console.log("111",this.departQcData1);
|
||||
// }
|
||||
// this.isShow = !this.isShow
|
||||
// var listdepart = []
|
||||
// 通过点击获取对应的部门
|
||||
|
||||
// if (item != null) {
|
||||
// for (let i = 0; i < this.floorNameQcData.floorName.depart[item].length; i++) {
|
||||
|
||||
// listdepart.push(this.floorNameQcData.floorName.depart[item][i].depart)
|
||||
// }
|
||||
// console.log("listdepart",listdepart)
|
||||
// //去除部门数组中的空字符串
|
||||
// var newArr1 = listdepart.filter(i => i && i.trim())
|
||||
// //去重
|
||||
// const qcData = new Set(newArr1)
|
||||
// this.floorNameQcData.floorName.departQcData = qcData
|
||||
// console.log(this.floorNameQcData.floorName.departQcData);
|
||||
|
||||
// } else {
|
||||
|
||||
//去除部门数组中的空字符串
|
||||
var newArr = this.departQcData1.filter(i => i && i.trim())
|
||||
// console.log(that.config5.data);
|
||||
//去重
|
||||
const qcData = new Set(newArr)
|
||||
this.departQcData = qcData
|
||||
console.log(this.departQcData);
|
||||
}
|
||||
// var newArr = this.departQcData1.filter(i => i && i.trim())
|
||||
// // console.log(that.config5.data);
|
||||
// //去重
|
||||
// const qcData = new Set(newArr)
|
||||
// this.departQcData = qcData
|
||||
// }
|
||||
},
|
||||
|
||||
departSearch(item) {
|
||||
departSearch(n,item) {
|
||||
console.log(n.depart);
|
||||
console.log(item);
|
||||
this.componentKey1++
|
||||
this.isShow1 = false
|
||||
this.componentKey1++
|
||||
this.config6.data = []
|
||||
var listTable = []
|
||||
console.log("this.config5",this.config5);
|
||||
for (let i = 0; i < this.config5.data.length; i++) {
|
||||
this.tableData = this.config5.data[i]
|
||||
if (item == this.tableData[0]) {
|
||||
this.tableData1.push(this.tableData)
|
||||
listTable = this.config5.data[i]
|
||||
for (let j = 0; j < listTable.length; j++) {
|
||||
if (listTable[0] == n.depart && item.floorName == listTable[1]) {
|
||||
this.config6.data.push(listTable)
|
||||
}
|
||||
}
|
||||
}
|
||||
this.config6.data = []
|
||||
this.config6.data = this.tableData1
|
||||
console.log(this.config6.data);
|
||||
this.tableData1 = []
|
||||
// }
|
||||
|
||||
}
|
||||
console.log("this.config6",this.config6);
|
||||
|
||||
|
||||
},
|
||||
departSearch1(n) {
|
||||
console.log(n);
|
||||
this.isShow1 = false
|
||||
this.componentKey = 0
|
||||
this.componentKey1++
|
||||
this.config6.data = []
|
||||
var listTable = []
|
||||
for (let i = 0; i < this.config5.data.length; i++) {
|
||||
listTable = this.config5.data[i]
|
||||
for (let j = 0; j < listTable.length; j++) {
|
||||
if (listTable[0] == n) {
|
||||
this.config6.data.push(listTable)
|
||||
}
|
||||
}
|
||||
}
|
||||
console.log(this.config6.data);
|
||||
|
||||
|
||||
},
|
||||
/**
|
||||
* 模糊搜索
|
||||
*/
|
||||
sreach() {
|
||||
this.componentKey1++
|
||||
this.isShow1 = false
|
||||
const departnew = this.departnew;
|
||||
// const cha = document.getElementById("cha");
|
||||
// var cha1 = ("#cha").val()
|
||||
var listTable = [];
|
||||
for (let i = 0; i < this.config5.data.length; i++) {
|
||||
|
||||
listTable = this.config5.data[i];
|
||||
for (let j = 0; j < listTable.length; j++) {
|
||||
if (listTable[0].indexOf(departnew) != -1) {
|
||||
this.tableData2.push(listTable)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
console.log(this.tableData2);
|
||||
this.config6.data = this.tableData2
|
||||
this.tableData2 = []
|
||||
}
|
||||
|
@ -696,6 +789,7 @@ console.log("val",val)
|
|||
|
||||
<style lang="scss" scoped>
|
||||
|
||||
|
||||
@import "~@/common/var.scss";
|
||||
@import "~@/assets/scss/index.scss";
|
||||
|
||||
|
@ -709,6 +803,7 @@ console.log("val",val)
|
|||
.body-bottom{
|
||||
background: url('../../../assets/down.png') no-repeat!important;
|
||||
}
|
||||
|
||||
.main {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
|
@ -721,6 +816,27 @@ console.log("val",val)
|
|||
.left{
|
||||
|
||||
left: 2%;
|
||||
.topUl>li:hover .showUl{
|
||||
display: block;
|
||||
animation:move 0.8s 0.5s;
|
||||
}
|
||||
@keyframes move{
|
||||
/*设置animation动画参数*/
|
||||
0%{
|
||||
/*动画开始时*/
|
||||
height:0px;
|
||||
}
|
||||
100%{
|
||||
/*动画结束时*/
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
.showUl{
|
||||
list-style: none;
|
||||
display: none;/*隐藏第二列表*/
|
||||
text-align: left;
|
||||
}
|
||||
.showUl::-webkit-scrollbar{display:none;}
|
||||
}
|
||||
.center {
|
||||
width: 41%;
|
||||
|
|
|
@ -33,11 +33,12 @@
|
|||
|
||||
<!-- <div class="d3" @click="go('landChild')">江苏省高校招生就业指导服务中心</div> -->
|
||||
<div class="leftModel" @contextmenu.prevent="show()" :class="{ leftClose:leftOpen }">
|
||||
<div class="box" v-for="(item, index) in centerList" :key="index" @click="btn(item.title)">
|
||||
|
||||
<div v-for="(item, index) in centerList" :key="index" @click="btn(item.title,index)" :class="activeColor == index ? 'boxActive':'box'">
|
||||
<img :src="item.imgUrl" />
|
||||
<p>{{ item.title }}</p>
|
||||
</div>
|
||||
<div class="box" style="margin-top:25px" @click="getMain()">
|
||||
<div class="box" style="margin-top:25px" @click="getMain()" >
|
||||
<p>详情信息</p>
|
||||
</div>
|
||||
<!-- <BasicBox title="房地资源展示" :dataSource="false">
|
||||
|
@ -166,6 +167,7 @@ export default {
|
|||
backgroundPic: {
|
||||
index: "landRes/BG",
|
||||
},
|
||||
activeColor:-1,
|
||||
loading: false,
|
||||
imgListData:{
|
||||
jiangsu:[{ imgUrl: require("@/assets/landRes/land_logo.png"), count: 1136, title: "全省宗地数量" },
|
||||
|
@ -445,63 +447,77 @@ export default {
|
|||
workListData:[],
|
||||
workListDatafcz:[],
|
||||
//建筑物信息
|
||||
workList:[
|
||||
// workList:[
|
||||
// { key: "建筑物名称", value: "",name:"jd" },
|
||||
// { key: "坐落地址", value: "",name:"tudi" },
|
||||
// { key: "不动产证号", value: "" ,name:"bdczh"},
|
||||
// { key: "权利人", value: "",name:"qlr" },
|
||||
// { key: "坐落", value: "" ,name:"zl"},
|
||||
// ],
|
||||
workList:[
|
||||
{ key: "建筑物名称", value: "",name:"jd" },
|
||||
{ key: "坐落地址", value: "",name:"tudi" },
|
||||
{ key: "不动产证号", value: "" ,name:"bdczh"},
|
||||
{ key: "权利人", value: "",name:"qlr" },
|
||||
// { key: "共有情况", value: "",name:"gyqk" },
|
||||
{ key: "坐落", value: "" ,name:"zl"},
|
||||
// { key: "不动产单元号", value: "" ,name:"bdcdyh"},
|
||||
// { key: "权力类型", value: "" ,name:"qllx"},
|
||||
{ key: "建筑物数量", value: "" ,name:"jzwsl"},
|
||||
{ key: "建筑年代", value: "",name:"jznd" },
|
||||
{ key: "产权单位", value: "" ,name:"qlr"},
|
||||
{ key: "管理单位", value: "" ,name:"gldw"},
|
||||
],
|
||||
runOnce: true,
|
||||
//不动产权证信息
|
||||
workListBdc: [
|
||||
{ key: "建筑物名称", value: "",name:"jd" },
|
||||
{ key: "坐落地址", value: "",name:"tudi" },
|
||||
// { key: "建筑物名称", value: "",name:"jd" },
|
||||
// { key: "坐落地址", value: "",name:"tudi" },
|
||||
{ key: "不动产证号", value: "" ,name:"bdczh"},
|
||||
{ key: "权利人", value: "",name:"qlr" },
|
||||
{ key: "共有情况", value: "",name:"gyqk" },
|
||||
{ key: "坐落", value: "" ,name:"zl"},
|
||||
{ key: "不动产单元号", value: "" ,name:"bdcdyh"},
|
||||
{ key: "权力类型", value: "" ,name:"qllx"},
|
||||
{ key: "权力性质", value: "",name:"qlxz" },
|
||||
{ key: "用途", value: "",name:"yt" },
|
||||
{ key: "面积", value: "" ,name:"mj"},
|
||||
{ key: "使用期限", value: "" ,name:"syqx"},
|
||||
{ key: "房屋结构", value: "" ,name:"fwjg"},
|
||||
{ key: "房屋总层数", value: "" ,name:"fwzcs"},
|
||||
{ key: "所在层数", value: "" ,name:"szcs"},
|
||||
{ key: "丘权号", value: "" ,name:"qqh"},
|
||||
{ key: "来源", value: "" ,name:"ly"},
|
||||
{ key: "宗地面积", value: "" ,name:"zdmj"},
|
||||
{ key: "建筑面积", value: "" ,name:"jzmj"},
|
||||
{ key: "权利人", value: "",name:"qlr" },
|
||||
|
||||
// { key: "共有情况", value: "",name:"gyqk" },
|
||||
// { key: "坐落", value: "" ,name:"zl"},
|
||||
// { key: "不动产单元号", value: "" ,name:"bdcdyh"},
|
||||
// { key: "权力类型", value: "" ,name:"qllx"},
|
||||
// { key: "使用期限", value: "" ,name:"syqx"},
|
||||
// { key: "房屋结构", value: "" ,name:"fwjg"},
|
||||
// { key: "房屋总层数", value: "" ,name:"fwzcs"},
|
||||
// { key: "所在层数", value: "" ,name:"szcs"},
|
||||
// { key: "丘权号", value: "" ,name:"qqh"},
|
||||
// { key: "来源", value: "" ,name:"ly"},
|
||||
],
|
||||
//土地证
|
||||
workListNew: [
|
||||
{ key: "建筑物名称", value: "",name:"jd" },
|
||||
{ key: "坐落地址", value: "",name:"tudi" },
|
||||
// { key: "建筑物名称", value: "",name:"jd" },
|
||||
// { key: "坐落地址", value: "",name:"tudi" },
|
||||
// { key: "土地证号", value: "" ,name:"tdzh"},
|
||||
// { key: "权利人", value: "",name:"tdsyqr" },
|
||||
// { key: "共有情况", value: "",name:"gyqk" },
|
||||
// { key: "坐落", value: "",name:"zl" },
|
||||
// { key: "地号", value: "" ,name:"dh"},
|
||||
// { key: "使用权类型", value: "" ,name:"syqlx"},
|
||||
// { key: "图号", value: "" ,name:"th"},
|
||||
// { key: "地类(用途)", value: "",name:"dlyt" },
|
||||
// { key: "使用权面积", value: "",name:"syqmj" },
|
||||
// { key: "终止日期", value: "" ,name:"zzrq"},
|
||||
{ key: "土地证号", value: "" ,name:"tdzh"},
|
||||
{ key: "权力性质", value: "" ,name:"syqlx"},
|
||||
{ key: "土地用途", value: "",name:"dlyt" },
|
||||
{ key: "土地面积", value: "",name:"tdmj" },
|
||||
{ key: "权利人", value: "",name:"tdsyqr" },
|
||||
{ key: "共有情况", value: "",name:"zl" },
|
||||
{ key: "坐落", value: "" ,name:"dh"},
|
||||
{ key: "不动产单元号", value: "" ,name:"syqlx"},
|
||||
{ key: "权力类型", value: "" ,name:"th"},
|
||||
{ key: "权力性质", value: "",name:"dlyt" },
|
||||
{ key: "用途", value: "",name:"syqmj" },
|
||||
{ key: "面积", value: "" ,name:"zzrq"},
|
||||
],
|
||||
//房产证数据
|
||||
workListFCZ: [
|
||||
{ key: "建筑物名称", value: "",name:"jd" },
|
||||
{ key: "坐落地址", value: "",name:"tudi" },
|
||||
// { key: "建筑物名称", value: "",name:"jd" },
|
||||
// { key: "坐落地址", value: "",name:"tudi" },
|
||||
{ key: "房产证号", value: "" ,name:"fczh"},
|
||||
{ key: "房屋产别", value: "" ,name:"fwcb"},
|
||||
{ key: "房屋用途", value: "" ,name:"fwyt"},
|
||||
{ key: "房屋面积", value: "" ,name:"jzmj"},
|
||||
{ key: "房产使用权人", value: "",name:"fwsyqr" },
|
||||
{ key: "坐落", value: "",name:"zl" },
|
||||
{ key: "房屋用途", value: "" ,name:"fwcb"},
|
||||
{ key: "结构", value: "",name:"jg" },
|
||||
{ key: "房屋总层数", value: "",name:"fwzcs" },
|
||||
{ key: "面积", value: "" ,name:"jzmj"},
|
||||
{ key: "面积", value: "" ,name:"cqly"},
|
||||
// { key: "坐落", value: "",name:"zl" },
|
||||
// { key: "结构", value: "",name:"jg" },
|
||||
// { key: "房屋总层数", value: "",name:"fwzcs" },
|
||||
// { key: "面积", value: "" ,name:"cqly"},
|
||||
],
|
||||
workListqq: [
|
||||
{ key: "确权信息", value: "",name:"qq" },
|
||||
|
@ -608,10 +624,18 @@ export default {
|
|||
},
|
||||
//获取基地数据
|
||||
getJdData(val){
|
||||
console.log("val",val)
|
||||
|
||||
axios.get('/json/qqData.json')
|
||||
.then(result => {
|
||||
for (var i = 0; i < result.data.length; i++) {
|
||||
if(result.data[i].jd == this.params.params){
|
||||
this.workListqq[0].value = result.data[i].qq
|
||||
}
|
||||
}
|
||||
})
|
||||
.catch(error => {
|
||||
console.log(error)
|
||||
})
|
||||
if(val == "不动产"){
|
||||
console.log("val",val)
|
||||
// this.tit="土地证信息"
|
||||
this.workListData=[]
|
||||
axios.get('/json/jdData.json')
|
||||
|
@ -643,6 +667,7 @@ console.log("val",val)
|
|||
console.log("result.data[i]",result.data[i])
|
||||
this.workListData.push(result.data[i])
|
||||
this.changeWorkListTd(result.data[i])
|
||||
this.changeWorkList(result.data[i])
|
||||
}
|
||||
}
|
||||
})
|
||||
|
@ -658,6 +683,7 @@ console.log("val",val)
|
|||
console.log("result.data[i]",result.data[i])
|
||||
this.workListDatafcz.push(result.data[i])
|
||||
this.changeWorkListfcz(result.data[i])
|
||||
// this.changeWorkList(result.data[i])
|
||||
}
|
||||
}
|
||||
})
|
||||
|
@ -689,6 +715,7 @@ console.log("val",val)
|
|||
},
|
||||
//不动产
|
||||
changeWorkListBdc(data){
|
||||
// this.workListBdc=[]
|
||||
var entries = Object.entries(data);
|
||||
var list = entries.map(function(item) {
|
||||
return {
|
||||
|
@ -740,20 +767,80 @@ console.log("val",val)
|
|||
}
|
||||
}
|
||||
}
|
||||
this.workListData = this.workListFCZ
|
||||
// this.workListData = this.workListFCZ
|
||||
},
|
||||
//获取地图参数
|
||||
getFromIframe(value) {
|
||||
this.params=value
|
||||
this.getJdData(this.params.type)
|
||||
this.leftOpen = false
|
||||
this.rightOpen = false
|
||||
this.Visible = false;
|
||||
this.basicInfoShow = true
|
||||
},
|
||||
this.tit= '建筑物信息'
|
||||
this.workListBdc=[
|
||||
// { key: "建筑物名称", value: "",name:"jd" },
|
||||
// { key: "坐落地址", value: "",name:"tudi" },
|
||||
{ key: "不动产证号", value: "" ,name:"bdczh"},
|
||||
{ key: "权力性质", value: "",name:"qlxz" },
|
||||
{ key: "用途", value: "",name:"yt" },
|
||||
{ key: "宗地面积", value: "" ,name:"zdmj"},
|
||||
{ key: "建筑面积", value: "" ,name:"jzmj"},
|
||||
{ key: "权利人", value: "",name:"qlr" },
|
||||
// { key: "共有情况", value: "",name:"gyqk" },
|
||||
// { key: "坐落", value: "" ,name:"zl"},
|
||||
// { key: "不动产单元号", value: "" ,name:"bdcdyh"},
|
||||
// { key: "权力类型", value: "" ,name:"qllx"},
|
||||
// { key: "使用期限", value: "" ,name:"syqx"},
|
||||
// { key: "房屋结构", value: "" ,name:"fwjg"},
|
||||
// { key: "房屋总层数", value: "" ,name:"fwzcs"},
|
||||
// { key: "所在层数", value: "" ,name:"szcs"},
|
||||
// { key: "丘权号", value: "" ,name:"qqh"},
|
||||
// { key: "来源", value: "" ,name:"ly"},
|
||||
],
|
||||
this.workListNew=[
|
||||
// { key: "建筑物名称", value: "",name:"jd" },
|
||||
// { key: "坐落地址", value: "",name:"tudi" },
|
||||
{ key: "土地证号", value: "" ,name:"tdzh"},
|
||||
{ key: "权力性质", value: "" ,name:"syqlx"},
|
||||
{ key: "土地用途", value: "",name:"dlyt" },
|
||||
{ key: "土地面积", value: "",name:"tdmj" },
|
||||
{ key: "权利人", value: "",name:"tdsyqr" },
|
||||
// { key: "共有情况", value: "",name:"gyqk" },
|
||||
// { key: "坐落", value: "",name:"zl" },
|
||||
// { key: "地号", value: "" ,name:"dh"},
|
||||
|
||||
// { key: "图号", value: "" ,name:"th"},
|
||||
|
||||
// { key: "使用权面积", value: "",name:"syqmj" },
|
||||
// { key: "终止日期", value: "" ,name:"zzrq"},
|
||||
],
|
||||
this.workListFCZ=[
|
||||
// { key: "建筑物名称", value: "",name:"jd" },
|
||||
// { key: "坐落地址", value: "",name:"tudi" },
|
||||
// { key: "房产证号", value: "" ,name:"fczh"},
|
||||
// { key: "房产使用权人", value: "",name:"fwsyqr" },
|
||||
// { key: "坐落", value: "",name:"zl" },
|
||||
// { key: "房屋用途", value: "" ,name:"fwcb"},
|
||||
// { key: "结构", value: "",name:"jg" },
|
||||
// { key: "房屋总层数", value: "",name:"fwzcs" },
|
||||
// { key: "面积", value: "" ,name:"jzmj"},
|
||||
// { key: "面积", value: "" ,name:"cqly"},
|
||||
{ key: "房产证号", value: "" ,name:"fczh"},
|
||||
{ key: "房屋产别", value: "" ,name:"fwcb"},
|
||||
{ key: "房屋用途", value: "" ,name:"fwyt"},
|
||||
{ key: "房屋面积", value: "" ,name:"jzmj"},
|
||||
{ key: "房产使用权人", value: "",name:"fwsyqr" },
|
||||
],
|
||||
this.workListqq=[ { key: "确权信息", value: "",name:"qq" },]
|
||||
this.params=value
|
||||
this.getJdData(this.params.type)
|
||||
this.leftOpen = false
|
||||
this.rightOpen = false
|
||||
this.Visible = false;
|
||||
this.basicInfoShow = true
|
||||
},
|
||||
|
||||
//菜单跳转
|
||||
btn(val){
|
||||
btn(val,index){
|
||||
this.tit=val
|
||||
this.Visible = false;
|
||||
this.basicInfoShow = true
|
||||
this.activeColor = index;
|
||||
if(val=='不动产权证信息'){
|
||||
this.workListData=this.workListBdc
|
||||
}else if(val=='土地证信息'){
|
||||
|
@ -761,7 +848,8 @@ console.log("val",val)
|
|||
}else if(val=='房产证信息'){
|
||||
this.workListData=this.workListFCZ
|
||||
}else if(val=='确权情况'){
|
||||
this.workListData=this.workListqq
|
||||
console.log("this.workListqq",this.workListqq)
|
||||
this.workListData=this.workListqq
|
||||
}
|
||||
},
|
||||
|
||||
|
@ -1126,6 +1214,30 @@ img {
|
|||
0 0 20px #00fcff ;
|
||||
}
|
||||
}
|
||||
.boxActive{
|
||||
background: url("~@/assets/landRes/boxX.png") no-repeat;
|
||||
width: 50%;
|
||||
margin: 1%;
|
||||
text-align: center;
|
||||
display: inline-block;
|
||||
font-size: 14px;
|
||||
p {
|
||||
color: #00fcff;
|
||||
text-shadow: 0 0 5px #00fcff,
|
||||
0 0 10px #00fcff,
|
||||
0 0 15px #00fcff,
|
||||
0 0 20px #00fcff ;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
padding: 15px 0;
|
||||
width: 75%;
|
||||
}
|
||||
img {
|
||||
float: left;
|
||||
padding-left: 10px;
|
||||
padding-top: 6px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.leftClose{
|
||||
left:-350px;
|
||||
|
|