|
@@ -230,10 +230,10 @@ export default {
|
|
|
beforeMount() { }, //生命周期 - 挂载之前
|
|
|
methods: {
|
|
|
flyDetails(item) {
|
|
|
- this.drawWktPloygon(item.geom, "#ff0000", item.id);
|
|
|
+ this.drawWktPloygon(item.geom, "#66b1ff", item.id);
|
|
|
let arr = [];
|
|
|
Object.keys(item).forEach((key) => {
|
|
|
- if (item != "geom" && item != "id") {
|
|
|
+ if ( key != '用地类型') {
|
|
|
arr.push({
|
|
|
name: key,
|
|
|
value: item[key],
|
|
@@ -264,8 +264,8 @@ export default {
|
|
|
.load(geojson, {
|
|
|
clampToGround: true,
|
|
|
stroke: Cesium.Color.fromCssColorString(yanse),
|
|
|
- fill: Cesium.Color.WHITE.withAlpha(0.3), //注意:颜色必须大写,即不能为blue
|
|
|
- strokeWidth: 5,
|
|
|
+ fill: Cesium.Color.WHITE.withAlpha(0.93), //注意:颜色必须大写,即不能为blue
|
|
|
+ strokeWidth: 2,
|
|
|
// 恒定高度
|
|
|
height: 1.1,
|
|
|
// 是否显示
|
|
@@ -1135,6 +1135,8 @@ export default {
|
|
|
// columns:["项目名称","土地用途","出让面积(公顷)","土地使用权","土地座落","批准文号","批准机关"],
|
|
|
// })
|
|
|
// }
|
|
|
+ console.log('this.vector_data: ', this.vector_data);
|
|
|
+
|
|
|
store.setCockpit_vector({
|
|
|
title: "土地供应完成项目",
|
|
|
tableData: this.vector_data,
|
|
@@ -1142,9 +1144,15 @@ export default {
|
|
|
tablejscType: 'jsc_tdgy_gy_zbmx',
|
|
|
columns: [
|
|
|
"项目名称",
|
|
|
+ "供应方式",
|
|
|
+ "面积(公顷)",
|
|
|
"土地用途",
|
|
|
- "出让面积(公顷)",
|
|
|
- "土地使用权",
|
|
|
+ "容积率",
|
|
|
+ "成交价/起始价(万元)",
|
|
|
+ "批准日期",
|
|
|
+ "受让方",
|
|
|
+ // "出让面积(公顷)",
|
|
|
+ // "土地使用权",
|
|
|
"土地座落",
|
|
|
"批准文号",
|
|
|
"批准机关",
|