This commit is contained in:
parent
c6ead9f002
commit
f1b35c0be0
|
@ -389,6 +389,7 @@ const addPolygonCounty = () => {
|
||||||
map.addOverlay(polygon);
|
map.addOverlay(polygon);
|
||||||
polygon.addEventListener("click", () => {
|
polygon.addEventListener("click", () => {
|
||||||
console.log(item.name);
|
console.log(item.name);
|
||||||
|
getDatas(item.name)
|
||||||
if (item.name !== "溪口镇") {
|
if (item.name !== "溪口镇") {
|
||||||
jrcs.value = false;
|
jrcs.value = false;
|
||||||
console.log(jrcs.value, '000');
|
console.log(jrcs.value, '000');
|
||||||
|
@ -1759,6 +1760,23 @@ const getData = async (i, e) => {
|
||||||
changeRs(i)
|
changeRs(i)
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
const getDatas = async (e) => {
|
||||||
|
await http.get(`/api/ggfwyth/ysyzt/getCssrksl?town=${e}`).then((res) => {
|
||||||
|
if (res.code == 200) {
|
||||||
|
res.data.committee.map((item) => {
|
||||||
|
xkzCenter.map((items) => {
|
||||||
|
if (item.committee == items.name) {
|
||||||
|
items.number = item.rksl
|
||||||
|
}
|
||||||
|
})
|
||||||
|
})
|
||||||
|
console.log(res);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
};
|
||||||
const reset_font = () => {
|
const reset_font = () => {
|
||||||
let width = document.documentElement.clientWidth || document.body.clientWidth;
|
let width = document.documentElement.clientWidth || document.body.clientWidth;
|
||||||
let height =
|
let height =
|
||||||
|
|
Loading…
Reference in New Issue