This commit is contained in:
parent
c6ead9f002
commit
f1b35c0be0
|
@ -389,6 +389,7 @@ const addPolygonCounty = () => {
|
|||
map.addOverlay(polygon);
|
||||
polygon.addEventListener("click", () => {
|
||||
console.log(item.name);
|
||||
getDatas(item.name)
|
||||
if (item.name !== "溪口镇") {
|
||||
jrcs.value = false;
|
||||
console.log(jrcs.value, '000');
|
||||
|
@ -1759,6 +1760,23 @@ const getData = async (i, e) => {
|
|||
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 = () => {
|
||||
let width = document.documentElement.clientWidth || document.body.clientWidth;
|
||||
let height =
|
||||
|
|
Loading…
Reference in New Issue