Compare commits
No commits in common. "218fb927d90a312f6bc56f7a2e4ca0d96b1d0dc2" and "c16e756fd716c0638919e300eb6d0efe009d1641" have entirely different histories.
218fb927d9
...
c16e756fd7
|
@ -1180,8 +1180,6 @@ const getCssj = async () => {
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
cssj = JSON.parse(res.data);
|
cssj = JSON.parse(res.data);
|
||||||
console.log(1111111111,cssj);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
@ -2970,9 +2968,9 @@ const zyys_data = ref({
|
||||||
//资源要素(学校,医院)获取对应街道村社
|
//资源要素(学校,医院)获取对应街道村社
|
||||||
const zyysCenter = reactive([]);
|
const zyysCenter = reactive([]);
|
||||||
const zyysDk = reactive([]);
|
const zyysDk = reactive([]);
|
||||||
const loadCs_zyys = async (jdname) => {
|
const loadCs_zyys = async (name) => {
|
||||||
cssj.forEach((item, index) => {
|
cssj.forEach((item, index) => {
|
||||||
if (item.name == jdname) {
|
if (item.name == name) {
|
||||||
csqk.value = item.sj;
|
csqk.value = item.sj;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -3000,7 +2998,6 @@ const loadCs_zyys = async (jdname) => {
|
||||||
zyysCenter.push({
|
zyysCenter.push({
|
||||||
id: v.id,
|
id: v.id,
|
||||||
name: v.properties.name,
|
name: v.properties.name,
|
||||||
jdname:jdname,
|
|
||||||
center: v.properties.center,
|
center: v.properties.center,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -3020,11 +3017,9 @@ const get_dk_zyys = async (sj, xd, ssly) => {
|
||||||
zyys_jd.forEach((item) => {
|
zyys_jd.forEach((item) => {
|
||||||
loadCs_zyys(item);
|
loadCs_zyys(item);
|
||||||
});
|
});
|
||||||
zyysDk.forEach((dk) => {
|
|
||||||
let pdK = true; //判断sj有没有对应地块,没有就赋值0
|
|
||||||
sj.forEach((item, index) => {
|
sj.forEach((item, index) => {
|
||||||
|
zyysDk.forEach((dk) => {
|
||||||
if (item.committee == dk.name) {
|
if (item.committee == dk.name) {
|
||||||
pdK = false;
|
|
||||||
let a = {
|
let a = {
|
||||||
...dk,
|
...dk,
|
||||||
zt: item.zt,
|
zt: item.zt,
|
||||||
|
@ -3032,19 +3027,8 @@ const get_dk_zyys = async (sj, xd, ssly) => {
|
||||||
zyys_data.value.point.push(a);
|
zyys_data.value.point.push(a);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
if (pdK) {
|
|
||||||
let a = {
|
|
||||||
...dk,
|
|
||||||
zt: 0,
|
|
||||||
};
|
|
||||||
zyys_data.value.point.push(a);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
zyysCenter.forEach((center) => {
|
zyysCenter.forEach((center) => {
|
||||||
let pdK = true; //判断sj有没有对应地块,没有就赋值0
|
|
||||||
sj.forEach((item, index) => {
|
|
||||||
if (item.committee == center.name) {
|
if (item.committee == center.name) {
|
||||||
pdK = false;
|
|
||||||
let b = {
|
let b = {
|
||||||
...center,
|
...center,
|
||||||
num: item.num,
|
num: item.num,
|
||||||
|
@ -3056,42 +3040,7 @@ const get_dk_zyys = async (sj, xd, ssly) => {
|
||||||
zyys_data.value.center.push(b);
|
zyys_data.value.center.push(b);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
if (pdK) {
|
|
||||||
let b = {
|
|
||||||
...center,
|
|
||||||
num: 0,
|
|
||||||
town: center.jdname,
|
|
||||||
committee: center.name,
|
|
||||||
ssly: ssly,
|
|
||||||
xd: xd,
|
|
||||||
};
|
|
||||||
zyys_data.value.center.push(b);
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
// sj.forEach((item, index) => {
|
|
||||||
// zyysDk.forEach((dk) => {
|
|
||||||
// if (item.committee == dk.name) {
|
|
||||||
// let a = {
|
|
||||||
// ...dk,
|
|
||||||
// zt: item.zt,
|
|
||||||
// };
|
|
||||||
// zyys_data.value.point.push(a);
|
|
||||||
// }
|
|
||||||
// });
|
|
||||||
// zyysCenter.forEach((center) => {
|
|
||||||
// if (item.committee == center.name) {
|
|
||||||
// let b = {
|
|
||||||
// ...center,
|
|
||||||
// num: item.num,
|
|
||||||
// town: item.town,
|
|
||||||
// committee: item.committee,
|
|
||||||
// ssly: ssly,
|
|
||||||
// xd: xd,
|
|
||||||
// };
|
|
||||||
// zyys_data.value.center.push(b);
|
|
||||||
// }
|
|
||||||
// });
|
|
||||||
// });
|
|
||||||
};
|
};
|
||||||
//资源要素(渲染地块)
|
//资源要素(渲染地块)
|
||||||
const xr_dk_center_zyys = async () => {
|
const xr_dk_center_zyys = async () => {
|
||||||
|
@ -3148,8 +3097,7 @@ const Xr_zyysNum = (polygon, indexx) => {
|
||||||
div.style.minWidth = "60px";
|
div.style.minWidth = "60px";
|
||||||
div.style.borderRadius = "12px";
|
div.style.borderRadius = "12px";
|
||||||
// div.style.background = `url(${xcbg}) no-repeat 0/100% 100%`;
|
// div.style.background = `url(${xcbg}) no-repeat 0/100% 100%`;
|
||||||
div.style.background =
|
div.style.background = "linear-gradient(90deg, rgba(146,151,217,1) 0%, rgba(236,236,236,1) 100%)";
|
||||||
"linear-gradient(90deg, rgba(146,151,217,1) 0%, rgba(236,236,236,1) 100%)";
|
|
||||||
div.style.transform = "translate(50px, 26px)";
|
div.style.transform = "translate(50px, 26px)";
|
||||||
// div.style.transform = "translateY(50px)";
|
// div.style.transform = "translateY(50px)";
|
||||||
div.setAttribute("name", this.properties.title);
|
div.setAttribute("name", this.properties.title);
|
||||||
|
|
Loading…
Reference in New Issue