|
@@ -114,18 +114,18 @@
|
|
|
>
|
|
|
</div>
|
|
|
</div> -->
|
|
|
-<dkDetails></dkDetails>
|
|
|
+ <dkDetails ref="dkDetails"></dkDetails>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
import { GetXzjg, DownloadLandReport } from "../../../api/ghss/ghxz.js";
|
|
|
-import dkDetails from './dkDetails.vue'
|
|
|
+import dkDetails from "./dkDetails.vue";
|
|
|
// 使用
|
|
|
import parse from "wellknown";
|
|
|
let dataSources = {};
|
|
|
export default {
|
|
|
- components: {dkDetails},
|
|
|
+ components: { dkDetails },
|
|
|
props: {
|
|
|
activeTabs: {
|
|
|
type: String,
|
|
@@ -167,7 +167,7 @@ export default {
|
|
|
arrww: [],
|
|
|
tempdataSourcesId: null,
|
|
|
xzjgBSM: "",
|
|
|
- echarts:[],
|
|
|
+ echarts: [],
|
|
|
};
|
|
|
},
|
|
|
mounted() {
|
|
@@ -308,33 +308,7 @@ export default {
|
|
|
},
|
|
|
//现状信息
|
|
|
nowInfo(e, item) {
|
|
|
- console.log(e, item, "现状信息");
|
|
|
- // GetFxjg({ bsm: item.bsm }).then((res) => {
|
|
|
- // if (res.success) {
|
|
|
- // res.data.forEach((e) => {
|
|
|
- // let c = e.dataList || [];
|
|
|
- // c.map((ci) => {
|
|
|
- // ci.name = ci.yslx_name || ci.scxname;
|
|
|
- // // ci.value = this.compute(ci.mj);
|
|
|
- // ci.value = ci.mj;
|
|
|
- // ci.geom = ci.geom || "";
|
|
|
- // // ci.label = ci.mc_name;
|
|
|
- // });
|
|
|
- // this.echarts.push({
|
|
|
- // id: e.scxbsm,
|
|
|
- // label: e.scxname,
|
|
|
- // dataList: e.dataList,
|
|
|
- // lchildren: e.children || [],
|
|
|
- // iseyes: false,
|
|
|
- // isshow: false,
|
|
|
- // scxstyle: e.scxstyle,
|
|
|
- // });
|
|
|
- // if (e.scxstyle == 0) this.setEchart(c, e.scxbsm);
|
|
|
- // if (e.children) this.lForEach(e.children, "echart");
|
|
|
- // });
|
|
|
- // this.$emit("updateParent", "loading", false);
|
|
|
- // }
|
|
|
- // });
|
|
|
+ this.$refs.dkDetails.show(item, "现状信息");
|
|
|
},
|
|
|
|
|
|
deleteprogramme(e, item) {
|