This commit is contained in:
parent
11a48c1ad3
commit
c89c0df89e
|
@ -45,6 +45,7 @@ const getOption = () => {
|
|||
textStyle: {
|
||||
fontSize: 16,
|
||||
color: "#ffffff",
|
||||
// color: ["rgba(255, 234, 90, 1)", "rgba(23, 255, 206, 1)"],
|
||||
},
|
||||
},
|
||||
grid: {
|
||||
|
@ -125,17 +126,12 @@ const getOption = () => {
|
|||
},
|
||||
},
|
||||
itemStyle: {
|
||||
normal: {
|
||||
color: function (params) {
|
||||
var colorList = [
|
||||
new echarts.graphic.LinearGradient(0, 0, 1, 0, [
|
||||
{ offset: 0, color: "rgba(255, 234, 90, 0)" },
|
||||
{ offset: 0.5, color: "rgba(255, 234, 90, 0.5)" },
|
||||
{ offset: 1, color: "rgba(255, 234, 90, 1)" },
|
||||
]),
|
||||
];
|
||||
return colorList[params.dataIndex % colorList.length];
|
||||
},
|
||||
color: {
|
||||
type: "linear",
|
||||
colorStops: [
|
||||
{ offset: 0, color: "rgba(255, 234, 90, 0.2)" },
|
||||
{ offset: 1, color: "rgba(255, 234, 90, 1)" },
|
||||
],
|
||||
},
|
||||
},
|
||||
},
|
||||
|
@ -156,17 +152,12 @@ const getOption = () => {
|
|||
},
|
||||
},
|
||||
itemStyle: {
|
||||
normal: {
|
||||
color: function (params) {
|
||||
var colorList = [
|
||||
new echarts.graphic.LinearGradient(0, 0, 1, 0, [
|
||||
{ offset: 0, color: "rgba(0, 255, 208,0)" },
|
||||
{ offset: 0.5, color: "rgba(23, 255, 202, 0.20)" },
|
||||
{ offset: 1, color: "rgba(23, 255, 206, 1)" },
|
||||
]),
|
||||
];
|
||||
return colorList[params.dataIndex % colorList.length];
|
||||
},
|
||||
color: {
|
||||
type: "linear",
|
||||
colorStops: [
|
||||
{ offset: 0, color: "rgba(23, 255, 206, 0.2)" },
|
||||
{ offset: 1, color: "rgba(23, 255, 206, 1)" },
|
||||
],
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
|
@ -324,10 +324,13 @@ const setChart = () => {
|
|||
const setChart1 = () => {
|
||||
data.list1 = [];
|
||||
data.list2 = [];
|
||||
data.list.data.forEach((item) => {
|
||||
data.list1.push(item.sc); //服务时长
|
||||
data.list2.push(item.fwcs); //服务次数
|
||||
});
|
||||
if (data.list.length !== 0) {
|
||||
// console.log(data.list, "助老服务");
|
||||
data.list.data.forEach((item) => {
|
||||
data.list1.push(item.sc); //服务时长
|
||||
data.list2.push(item.fwcs); //服务次数
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
// 使用生命钩子
|
||||
|
@ -335,7 +338,6 @@ onBeforeMount(() => {
|
|||
setTimeout(() => {
|
||||
data.list = props.list;
|
||||
data.day = props.list.day;
|
||||
// console.log(data.list, "助老服务");
|
||||
setChart1();
|
||||
getOption();
|
||||
setChart();
|
||||
|
|
|
@ -503,6 +503,7 @@ const getData = async () => {
|
|||
data.yljgzlzx.zlzx = res.data.yljgzlzx.zlzx;
|
||||
// 助老服务
|
||||
data.smfwcs = res.data.zlfw.smfwcs;
|
||||
console.log(data.smfwcs,6666);
|
||||
// 乡镇助餐次数
|
||||
res.data.zlfw.xzzccs.forEach((element) => {
|
||||
data.zccs1.push(element.xzjd); // 地点
|
||||
|
|
Loading…
Reference in New Issue