|
|
@ -238,6 +238,7 @@
|
|
|
|
top: 73%;
|
|
|
|
top: 73%;
|
|
|
|
left: 2%;
|
|
|
|
left: 2%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.scrollTable {
|
|
|
|
.scrollTable {
|
|
|
|
/*font-size: 127.8px;*/
|
|
|
|
/*font-size: 127.8px;*/
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -335,16 +336,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
//库存统计
|
|
|
|
//库存统计
|
|
|
|
autoUpdate("/system/AbsorbDeviceMes/getinventory", INTERVAL, data => {
|
|
|
|
autoUpdate("/system/AbsorbDeviceMes/getinventory", INTERVAL, data => {
|
|
|
|
console.log(JSON.stringify(data));
|
|
|
|
|
|
|
|
data.forEach((item) => {
|
|
|
|
data.forEach((item) => {
|
|
|
|
xAxisData.push(item.name);
|
|
|
|
let name = ''
|
|
|
|
|
|
|
|
if(item.name.length >= 15){
|
|
|
|
|
|
|
|
name = item.name.split(',')[0]
|
|
|
|
|
|
|
|
}else{
|
|
|
|
|
|
|
|
name = item.name
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
xAxisData.push(name);
|
|
|
|
seriesData1.push(parseInt(item.value));
|
|
|
|
seriesData1.push(parseInt(item.value));
|
|
|
|
sum += parseInt(item.value);
|
|
|
|
sum += parseInt(item.value);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
console.log("xAxisData:"+xAxisData);
|
|
|
|
console.log(xAxisData)
|
|
|
|
console.log("seriesData1:"+seriesData1);
|
|
|
|
|
|
|
|
console.log("sum:"+sum);
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
option = {
|
|
|
|
option = {
|
|
|
@ -615,6 +619,8 @@
|
|
|
|
],
|
|
|
|
],
|
|
|
|
};
|
|
|
|
};
|
|
|
|
option && mycharts.setOption(option);
|
|
|
|
option && mycharts.setOption(option);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|
<script>
|
|
|
|
<script>
|
|
|
@ -627,7 +633,6 @@
|
|
|
|
type: 'POST',
|
|
|
|
type: 'POST',
|
|
|
|
dataType: 'JSON',
|
|
|
|
dataType: 'JSON',
|
|
|
|
success: function (result) {
|
|
|
|
success: function (result) {
|
|
|
|
console.log(result)
|
|
|
|
|
|
|
|
let Res = {data: []}
|
|
|
|
let Res = {data: []}
|
|
|
|
for (let item of result) {
|
|
|
|
for (let item of result) {
|
|
|
|
Res.data.push(
|
|
|
|
Res.data.push(
|
|
|
|