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

页面修改

parent d1c0e07c
...@@ -277,88 +277,88 @@ export default { ...@@ -277,88 +277,88 @@ export default {
getPropertyInStock(){ getPropertyInStock(){
let that=this; let that=this;
this.loading=true; this.loading=true;
that.apiJavaPost("/api/property/GetPropertyIndexPropertyInStock",this.InStockMsg, // that.apiJavaPost("/api/property/GetPropertyIndexPropertyInStock",this.InStockMsg,
res => { // res => {
this.loading=false; // this.loading=false;
if (res.data.resultCode === 1) { // if (res.data.resultCode === 1) {
let data=res.data.data; // let data=res.data.data;
this.InStockData=[]; // this.InStockData=[];
this.CategoryNameList=[]; // this.CategoryNameList=[];
this.StockMonth=[]; // this.StockMonth=[];
let Newobj={}; // let Newobj={};
data.forEach((item,index1) => { // data.forEach((item,index1) => {
this.CategoryNameList.push(item.CategoryName) // this.CategoryNameList.push(item.CategoryName)
if(index1>4){ // if(index1>4){
let name=item.CategoryName; // let name=item.CategoryName;
Newobj[name]=false; // Newobj[name]=false;
} // }
this.Stocklegend=Newobj; // this.Stocklegend=Newobj;
item.List.forEach((list,index) => { // 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){ // if(index1==0){
// obj.areaStyle={ // this.StockMonth.push(list.Month)
// }
// });
// });
// data.forEach((item,index1)=> {
// let arr=[];
// let obj={
// name:item.CategoryName,
// data: [],
// type: 'line',
// smooth: true,
// areaStyle:{
// normal: { // normal: {
// color: '#D6F8F8' //改变区域颜色 // color: '#D6F8F8' //改变区域颜色
// } // }
// },
// symbolSize: 10,
// itemStyle : {
// normal : {
// borderWidth:0,
// borderColor:"transparent",
// lineStyle:{
// color:that.colorList[index1], //改变折线颜色
// width:5
// } // }
// } // }
item.List.forEach(list=> { // },
this.StockMonth.forEach((month,index3)=> { // emphasis:{
if(list.Month==month){ // itemStyle:{
arr.push(list.Number) // borderWidth:5,
} // borderColor:that.colorList[index1],
obj.data=arr; // }
// },
}); // };
// // if(index1==0){
}); // // obj.areaStyle={
this.InStockData.push(obj) // // normal: {
}); // // color: '#D6F8F8' //改变区域颜色
setTimeout(()=>{ // // }
that.LineChart(); // // }
},1000) // // }
} else { // item.List.forEach(list=> {
this.Error(res.data.message); // this.StockMonth.forEach((month,index3)=> {
} // if(list.Month==month){
}, // arr.push(list.Number)
null // }
); // obj.data=arr;
// });
// });
// this.InStockData.push(obj)
// });
// setTimeout(()=>{
// that.LineChart();
// },1000)
// } else {
// this.Error(res.data.message);
// }
// },
// null
// );
}, },
LineChart(){ LineChart(){
var that = this; 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