|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
<div class="xzjg">
|
|
|
- <div>项目名称:选址结果</div>
|
|
|
+ <div>项目名称:{{ rzMc }}</div>
|
|
|
<div class="box-sizing" style="height: 47%; width: 100%">
|
|
|
<div class="title block-title">
|
|
|
意向地块 ({{ bgList ? bgList.length : 0 }})
|
|
@@ -33,7 +33,7 @@
|
|
|
</p>
|
|
|
<p style="color: #cddeeb">
|
|
|
<img src="/static/images/ghzc/iconSun.png" />
|
|
|
- <span style="margin-left: 20px">基准地标价:</span
|
|
|
+ <span style="margin-left: 20px">基准地价:</span
|
|
|
><span style="color: #02a7f0"
|
|
|
>{{ item1.landPrice || 0 }}万元</span
|
|
|
>
|
|
@@ -86,7 +86,7 @@
|
|
|
<p style="color: #cddeeb">
|
|
|
<!-- <i class="iconSun"></i> -->
|
|
|
<img src="/static/images/ghzc/iconSun.png" />
|
|
|
- <span style="margin-left: 20px">基准地标价:</span
|
|
|
+ <span style="margin-left: 20px">基准地价:</span
|
|
|
><span style="color: #02a7f0"
|
|
|
>{{ item.landPrice || 0 }}万元</span
|
|
|
>
|
|
@@ -131,12 +131,12 @@ export default {
|
|
|
activeTabs: {
|
|
|
type: String,
|
|
|
},
|
|
|
- scjgObj: {
|
|
|
- type: Object,
|
|
|
- },
|
|
|
rwBsm: {
|
|
|
type: String,
|
|
|
},
|
|
|
+ rzMc: {
|
|
|
+ type: String,
|
|
|
+ },
|
|
|
},
|
|
|
|
|
|
data() {
|
|
@@ -195,9 +195,13 @@ export default {
|
|
|
this.bgList.forEach((item) => {
|
|
|
dkIds.push(item.id);
|
|
|
});
|
|
|
- DownloadLandReport({ bsm: this.$props.rwBsm, dkIds: dkIds}).then(
|
|
|
+ DownloadLandReport({ bsm: this.$props.rwBsm, dkIds: dkIds }).then(
|
|
|
(res) => {
|
|
|
- window.open(window.axiosURI + '/analyse/fzss/DownloadReport?filePath='+`${res.data.fxbg}`);
|
|
|
+ window.open(
|
|
|
+ window.axiosURI +
|
|
|
+ "/analyse/fzss/DownloadReport?filePath=" +
|
|
|
+ `${res.data.fxbg}`
|
|
|
+ );
|
|
|
}
|
|
|
);
|
|
|
} else {
|
|
@@ -206,8 +210,6 @@ export default {
|
|
|
type: "warning",
|
|
|
});
|
|
|
}
|
|
|
-
|
|
|
- // window.open(this.$props.scjgObj.task.fxbg);
|
|
|
},
|
|
|
// 手动处理为GeoJSON
|
|
|
getGeoJSON(data) {
|
|
@@ -301,15 +303,14 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
//规划信息
|
|
|
- planInfo(e,item){
|
|
|
- console.log(e,item,'规划');
|
|
|
+ planInfo(e, item) {
|
|
|
+ console.log(e, item, "规划");
|
|
|
},
|
|
|
//现状信息
|
|
|
- nowInfo(e,item){
|
|
|
- console.log(e,item,'现状信息')
|
|
|
+ nowInfo(e, item) {
|
|
|
+ console.log(e, item, "现状信息");
|
|
|
},
|
|
|
|
|
|
-
|
|
|
deleteprogramme(e, item) {
|
|
|
e.stopPropagation();
|
|
|
this.bgList = this.bgList.filter((item1) => {
|