Commit 1d34d1de authored by 黄奎's avatar 黄奎

页面修改

parent d1c0e07c
......@@ -277,88 +277,88 @@ export default {
getPropertyInStock(){
let that=this;
this.loading=true;
that.apiJavaPost("/api/property/GetPropertyIndexPropertyInStock",this.InStockMsg,
res => {
this.loading=false;
if (res.data.resultCode === 1) {
let data=res.data.data;
this.InStockData=[];
this.CategoryNameList=[];
this.StockMonth=[];
let Newobj={};
data.forEach((item,index1) => {
this.CategoryNameList.push(item.CategoryName)
if(index1>4){
let name=item.CategoryName;
// that.apiJavaPost("/api/property/GetPropertyIndexPropertyInStock",this.InStockMsg,
// res => {
// this.loading=false;
// if (res.data.resultCode === 1) {
// let data=res.data.data;
// this.InStockData=[];
// this.CategoryNameList=[];
// this.StockMonth=[];
// let Newobj={};
// data.forEach((item,index1) => {
// this.CategoryNameList.push(item.CategoryName)
// if(index1>4){
// let name=item.CategoryName;
Newobj[name]=false;
}
this.Stocklegend=Newobj;
item.List.forEach((list,index) => {
if(index1==0){
this.StockMonth.push(list.Month)
}
// Newobj[name]=false;
// }
// this.Stocklegend=Newobj;
// item.List.forEach((list,index) => {
// if(index1==0){
// this.StockMonth.push(list.Month)
// }
});
});
data.forEach((item,index1)=> {
let arr=[];
let obj={
name:item.CategoryName,
data: [],
type: 'line',
smooth: true,
areaStyle:{
normal: {
color: '#D6F8F8' //改变区域颜色
}
},
symbolSize: 10,
itemStyle : {
normal : {
borderWidth:0,
borderColor:"transparent",
lineStyle:{
color:that.colorList[index1], //改变折线颜色
width:5
}
}
},
emphasis:{
itemStyle:{
borderWidth:5,
borderColor:that.colorList[index1],
}
},
};
// if(index1==0){
// obj.areaStyle={
// normal: {
// color: '#D6F8F8' //改变区域颜色
// }
// }
// }
item.List.forEach(list=> {
this.StockMonth.forEach((month,index3)=> {
if(list.Month==month){
arr.push(list.Number)
}
obj.data=arr;
// });
// });
// data.forEach((item,index1)=> {
// let arr=[];
// let obj={
// name:item.CategoryName,
// data: [],
// type: 'line',
// smooth: true,
// areaStyle:{
// normal: {
// color: '#D6F8F8' //改变区域颜色
// }
// },
// symbolSize: 10,
// itemStyle : {
// normal : {
// borderWidth:0,
// borderColor:"transparent",
// lineStyle:{
// color:that.colorList[index1], //改变折线颜色
// width:5
// }
// }
// },
// emphasis:{
// itemStyle:{
// borderWidth:5,
// borderColor:that.colorList[index1],
// }
// },
// };
// // if(index1==0){
// // obj.areaStyle={
// // normal: {
// // color: '#D6F8F8' //改变区域颜色
// // }
// // }
// // }
// item.List.forEach(list=> {
// this.StockMonth.forEach((month,index3)=> {
// if(list.Month==month){
// arr.push(list.Number)
// }
// obj.data=arr;
});
// });
});
this.InStockData.push(obj)
});
setTimeout(()=>{
that.LineChart();
},1000)
} else {
this.Error(res.data.message);
}
},
null
);
// });
// this.InStockData.push(obj)
// });
// setTimeout(()=>{
// that.LineChart();
// },1000)
// } else {
// this.Error(res.data.message);
// }
// },
// null
// );
},
LineChart(){
var that = this;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment