This commit is contained in:
duanxiaohai 2024-11-07 11:55:06 +08:00
commit bc1042a7a7
10 changed files with 202 additions and 132 deletions

View File

@ -82,6 +82,7 @@ const getOption = () => {
},
},
yAxis: {
name: "人数",
type: "value",
splitLine: {
show: true,
@ -90,6 +91,10 @@ const getOption = () => {
width: 1,
},
},
nameTextStyle: {
// Y
fontSize: 14, // 20
},
axisLabel: {
//
textStyle: {
@ -97,6 +102,16 @@ const getOption = () => {
fontSize: 16,
},
},
axisLine: {
//y线
show: false,
lineStyle: {
color: "#ffffff",
fontSize: 14,
width: 1,
type: "solid",
},
},
},
series: [
{

View File

@ -325,14 +325,23 @@ const getOption = () => {
},
],
yAxis: {
name:'人数',
min: 0,
// interval: 100,
type: "value",
axisLine: {
show: true,
lineStyle: {
color: "rgba(255, 255, 255, .16)",
//y线
show: false,
lineStyle: {
color: "#ffffff",
fontSize: 18,
width: 1,
type: "solid",
},
},
nameTextStyle: {
// Y
fontSize: 14, // 20
},
splitLine: {
show: true,
@ -341,6 +350,7 @@ const getOption = () => {
color: "rgba(255, 255, 255, .16)",
},
},
axisTick: {
show: false,
},
@ -351,99 +361,7 @@ const getOption = () => {
},
},
series: [
// {
// xAxisIndex: 0,
// name: "",
// type: "custom",
// renderItem: (params, api) => {
// const location = api.coord([api.value(0), api.value(1)]);
// return {
// type: "group",
// children: [
// {
// type: "CubeBottom_1",
// shape: {
// api,
// xValue: api.value(0),
// yValue: api.value(1),
// x: location[0],
// y: location[1],
// xAxisPoint: api.coord([api.value(0), 0]),
// },
// style: {
// fill: colors[0]["bottom"],
// },
// },
// {
// type: "CubeLeft_1",
// shape: {
// api,
// xValue: api.value(0),
// yValue: api.value(1),
// x: location[0],
// y: location[1],
// xAxisPoint: api.coord([api.value(0), 0]),
// },
// style: {
// fill: colors[0]["left"],
// },
// },
// {
// type: "CubeFront_1",
// shape: {
// api,
// xValue: api.value(0),
// yValue: api.value(1),
// x: location[0],
// y: location[1],
// xAxisPoint: api.coord([api.value(0), 0]),
// },
// style: {
// fill: colors[0]["front"],
// },
// },
// {
// type: "CubeRight_1",
// shape: {
// api,
// xValue: api.value(0),
// yValue: api.value(1),
// x: location[0],
// y: location[1],
// xAxisPoint: api.coord([api.value(0), 0]),
// },
// style: {
// fill: colors[0]["right"],
// },
// },
// {
// type: "CubeTop_1",
// shape: {
// api,
// xValue: api.value(0),
// yValue: api.value(1),
// x: location[0],
// y: location[1],
// xAxisPoint: api.coord([api.value(0), 0]),
// },
// style: {
// fill: colors[0]["top"],
// },
// },
// ],
// };
// },
// //
// itemStyle: {
// show: true,
// color: {
// type: "linear",
// colorStops: [{ offset: 1, color: "rgba(234, 162, 57, 1)" }],
// },
// },
// data: data.valueList,
// },
{
xAxisIndex: 0,
name: "育龄妇女",
@ -537,6 +455,25 @@ const getOption = () => {
},
data: data.valueList2,
},
{
type: "bar",
xAxisIndex: 1,
label: {
show: true,
fontSize: 18,
position: "top",
color: "#ffffff",
formatter: function (data) {
return data.value - 5;
},
},
itemStyle: {
color: "rgba(221, 242, 255, 0)",
},
data: data.valueList2.map((item) => parseInt(item) + 5),
barWidth: 30,
},
],
};
};

View File

@ -413,7 +413,7 @@ const getOption = () => {
left: 0,
right: 0,
bottom: 10,
top: 40,
top: 50,
containLabel: true,
},
xAxis: [
@ -457,7 +457,12 @@ const getOption = () => {
],
yAxis: {
min: 0,
name:'户',
nameTextStyle: {
// Y
fontSize: 14, // 20
color: "#fff",
},
// interval: 100,
type: "value",
axisLine: {
@ -762,6 +767,61 @@ const getOption = () => {
},
data: data.valueList3,
},
{
type: "bar",
xAxisIndex: 1,
label: {
show: true,
fontSize: 18,
position: "top",
color: "#ffffff",
formatter: function (data) {
return data.value - 5;
},
},
itemStyle: {
color: "rgba(221, 242, 255, 0)",
},
data: data.valueList.map((item) => parseInt(item) + 5),
barWidth: 30,
}, {
type: "bar",
xAxisIndex: 1,
label: {
show: true,
fontSize: 18,
position: "top",
color: "#ffffff",
formatter: function (data) {
return data.value - 5;
},
},
itemStyle: {
color: "rgba(221, 242, 255, 0)",
},
data: data.valueList2.map((item) => parseInt(item) + 5),
barWidth: 30,
}, {
type: "bar",
xAxisIndex: 1,
label: {
show: true,
fontSize: 18,
position: "top",
color: "#ffffff",
formatter: function (data) {
return data.value - 5;
},
},
itemStyle: {
color: "rgba(221, 242, 255, 0)",
},
data: data.valueList3.map((item) => parseInt(item) + 5),
barWidth: 30,
},
],
};
};

View File

@ -107,10 +107,10 @@ const getOption = () => {
},
legend: data.legend,
grid: {
top: "20%",
top: "23%",
left: "6%",
right: "6%",
bottom: "8%",
bottom: "5%",
containLabel: true,
},
xAxis: {
@ -124,7 +124,7 @@ const getOption = () => {
yAxis: [
{
type: "value",
// name: "/",
name: "人数/人",
splitLine: {
show: true,
lineStyle: {
@ -134,8 +134,7 @@ const getOption = () => {
},
},
min: 0,
max: (value) =>
Math.ceil(Math.max(value.max, value.max * 1.2) / 50) * 50,
nameTextStyle: {
fontSize: 14,
},
@ -160,8 +159,7 @@ const getOption = () => {
},
},
min: 0,
max: (value) =>
Math.ceil(Math.max(value.max, value.max * 1.6) / 50) * 50,
nameTextStyle: {
fontSize: 14,
},

View File

@ -323,6 +323,12 @@ const getOption = () => {
yAxis: {
min: 0,
max: data.Max,
name:'人数',
nameTextStyle: {
// Y
color: "#fff",
fontSize: 14, // 20
},
// interval: 100,
type: "value",
axisLine: {

View File

@ -103,8 +103,12 @@ const getOption = () => {
{
type: "value",
scale: true,
// name: "",
name: "金额/元",
min: 0,
nameTextStyle: {
// Y
fontSize: 14, // 20
},
splitLine: {
//线
show: false,
@ -136,7 +140,11 @@ const getOption = () => {
type: "value",
scale: true,
min: 0,
// name: "/",
name: "人数",
nameTextStyle: {
// Y
fontSize: 14, // 20
},
splitLine: {
show: false,
lineStyle: {
@ -192,7 +200,7 @@ const getOption = () => {
{
yAxisIndex: 1,
name: "失业保险金享受人数",
data: data.list2,
data: data.list1,
type: "line", //线
stack: "Total",
symbol: "emptyCircle",
@ -215,7 +223,7 @@ const getOption = () => {
z: 1,
yAxisIndex: 0,
name: "发放失业保险金金额",
data: data.list1,
data: data.list2,
barWidth: 20,
type: "bar",
label: {

View File

@ -99,6 +99,10 @@ const getOption = () => {
scale: true,
name: "工伤保险金累计享受人数",
min: 0,
nameTextStyle: {
// Y
fontSize: 14, // 20
},
splitLine: {
//线
show: false,

View File

@ -48,10 +48,10 @@
const getOption = () => {
data.option = {
// tooltip: {
// trigger: "axis",
// formatter: "{b0}<br/> {a0}:{c0}",
// },
tooltip: {
trigger: "axis",
formatter: "{b0}<br/> {a0}:{c0}",
},
// legend: {
// data: ["", ""],
// top: "8%",
@ -99,6 +99,10 @@
scale: true,
name: "工伤保险金累计待遇金额",
min: 0,
nameTextStyle: {
// Y
fontSize: 14, // 20
},
splitLine: {
//线
show: false,

View File

@ -1255,6 +1255,13 @@ const yaosuTotal = ref([
wz: false,
click: false,
},
{
id: 36,
name: "小区物业",
img: xxg,
wz: false,
click: false,
},
]);
//
const yaosuList = ref([]);
@ -3189,6 +3196,7 @@ const changeys = (name) => {
getZyys(url, name, img, img_map, tooltip);
} else if (name == "养老机构") {
getZyys2(name, img, img_map, tooltip);
} else if (name == "小区物业") {
} else {
loadingss.value = false;
}
@ -3249,19 +3257,58 @@ const getZyys2 = (name, img, img_map, tooltip) => {
loadingss.value = false;
}
};
// (overlay)
const createZyys = (polygon, indexx, name, tooltip) => {
let properties_change = {};
if (name == "小区物业") {
properties_change = {
xqs: "100/",
wys: "100",
imgSrc2: polygon.img_map,
type: "customOverlay",
};
} else {
properties_change = {
imgSrc2: polygon.img_map,
type: "customOverlay",
};
}
function createLabelDOM() {
var content = document.createElement("div");
content.style.display = "flex";
content.style.flexDirection = "column";
content.style.alignItems = "center";
content.style.justifyContent = "flex-end";
content.style.zIndex = BMapGL.Overlay.getZIndex(this.point.lat);
content.style.height = "30px";
content.style.width = "30px";
// content.style.position = "relative"; // 使
if (name == "小区物业") {
var div = document.createElement("div");
div.style.color = "#333";
div.style.whiteSpace = "nowrap";
div.style.MozUserSelect = "none";
div.style.display = "flex";
div.style.justifyContent = "center";
div.style.alignItems = "center";
div.style.cursor = "pointer";
div.style.padding = "5px";
div.style.minWidth = "60px";
div.style.transform = "translateY(5px)";
var xqs = document.createElement("div");
xqs.style.fontSize = "10px";
xqs.style.fontWeight = "600";
xqs.style.color = "blue";
var wys = document.createElement("div");
wys.style.fontSize = "10px";
wys.style.fontWeight = "600";
wys.style.color = "yellow";
xqs.appendChild(document.createTextNode(this.properties.xqs));
wys.appendChild(document.createTextNode(this.properties.wys));
div.appendChild(xqs);
div.appendChild(wys);
content.appendChild(div);
}
let img2 = document.createElement("img");
img2.style.width = "20px";
img2.style.height = "26px";
@ -3280,10 +3327,7 @@ const createZyys = (polygon, indexx, name, tooltip) => {
// offsetY: -10,
offsetX: 10,
offsetY: -15,
properties: {
imgSrc2: polygon.img_map,
type: "customOverlay",
},
properties: properties_change,
}
);
map.addOverlay(yaosuIcon.value[name].sj[indexx].overlay);
@ -3494,7 +3538,7 @@ const xr_dk_center_zyys = async () => {
const zyys_table = reactive({
town: "",
committee: "",
xd: "",
xd: "",//
});
const Xr_zyysNum = (polygon, indexx) => {
function createLabelDOM() {
@ -4054,7 +4098,6 @@ const createCustomOverlay = (polygon, indexx) => {
function createLabelDOM() {
var content = document.createElement("div");
content.style.display = "flex";
content.style.justifyContent = "end";
content.style.flexDirection = "column";
content.style.alignItems = "center";
content.style.justifyContent = "end";

View File

@ -160,16 +160,11 @@
show-overflow-tooltip
/>
<el-table-column
prop="finish"
label="详情"
prop="jgts"
label="改造户数"
width="120"
fixed="right"
>
<template #default="scope">
<div @click="goDetail(scope.row)" style="cursor: pointer">
查看详情
</div>
</template>
</el-table-column>
</el-table>
</div>
@ -377,7 +372,9 @@ const handlePagination = (current) => {
};
//
const jsSj = (name, index) => {
if (index == 2) {
console.log(name, index);
if (index == 5 || index ==2) {
tableType.title = "保障型住房";
dialogShowEcTy.value = true;
}
@ -389,8 +386,6 @@ const chooseWfjw = (val) => {
data.wfjw.list=data.wfjw[val];
console.log(data.wfjw.list);
};
//
const goDetail = () => {};
//
const getData = async () => {
await http.get("/api/ggfwyth/zysjOverview").then((res) => {