|
|
|
@ -2,10 +2,14 @@ |
|
|
|
<div class="order_box"> |
|
|
|
<div class="order_box"> |
|
|
|
<div class="title_bar">车间订单</div> |
|
|
|
<div class="title_bar">车间订单</div> |
|
|
|
<div class="pie_box"> |
|
|
|
<div class="pie_box"> |
|
|
|
<div class="pie_box_item" > |
|
|
|
<div class="pie_box_item"> |
|
|
|
<div class="btn_box"> |
|
|
|
<div class="btn_box"> |
|
|
|
<span class="btn first" :class="activeIndex == 1 ? 'active' : ''" @click="changeChart(1)">热表</span> |
|
|
|
<span class="btn first" :class="activeIndex == 1 ? 'active' : ''" @click="changeChart(1)" |
|
|
|
<span class="btn second" :class="activeIndex == 2 ? 'active' : ''" @click="changeChart(2)">烧结</span> |
|
|
|
>热表</span |
|
|
|
|
|
|
|
> |
|
|
|
|
|
|
|
<span class="btn second" :class="activeIndex == 2 ? 'active' : ''" @click="changeChart(2)" |
|
|
|
|
|
|
|
>烧结</span |
|
|
|
|
|
|
|
> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div ref="rb_chart" v-show="activeIndex == 1" class="chart_box"></div> |
|
|
|
<div ref="rb_chart" v-show="activeIndex == 1" class="chart_box"></div> |
|
|
|
<div ref="sj_chart" v-show="activeIndex == 2" class="chart_box"></div> |
|
|
|
<div ref="sj_chart" v-show="activeIndex == 2" class="chart_box"></div> |
|
|
|
@ -18,65 +22,64 @@ |
|
|
|
export default { |
|
|
|
export default { |
|
|
|
data() { |
|
|
|
data() { |
|
|
|
return { |
|
|
|
return { |
|
|
|
activeIndex:1 |
|
|
|
activeIndex: 1, |
|
|
|
} |
|
|
|
}; |
|
|
|
}, |
|
|
|
}, |
|
|
|
mounted() { |
|
|
|
mounted() { |
|
|
|
this.$nextTick(() =>{ |
|
|
|
this.$nextTick(() => { |
|
|
|
this.initRbEcharts() |
|
|
|
this.initRbEcharts(); |
|
|
|
}) |
|
|
|
}); |
|
|
|
}, |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
methods: { |
|
|
|
changeChart(type){ |
|
|
|
changeChart(type) { |
|
|
|
this.activeIndex = type |
|
|
|
this.activeIndex = type; |
|
|
|
this.$nextTick(() =>{ |
|
|
|
this.$nextTick(() => { |
|
|
|
if(type == 1){ |
|
|
|
if (type == 1) { |
|
|
|
this.initRbEcharts() |
|
|
|
this.initRbEcharts(); |
|
|
|
}else{ |
|
|
|
} else { |
|
|
|
this.initSjEcharts() |
|
|
|
this.initSjEcharts(); |
|
|
|
} |
|
|
|
} |
|
|
|
}) |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
}, |
|
|
|
}, |
|
|
|
initRbEcharts() { |
|
|
|
initRbEcharts() { |
|
|
|
var myChart = this.$echarts.init(this.$refs.rb_chart); |
|
|
|
var myChart = this.$echarts.init(this.$refs.rb_chart); |
|
|
|
let option = { |
|
|
|
let option = { |
|
|
|
tooltip: { |
|
|
|
tooltip: { |
|
|
|
trigger: 'item', |
|
|
|
trigger: 'item', |
|
|
|
formatter: '{b} : {c} <br/> 占比:{d}%' |
|
|
|
formatter: '{b} : {c} <br/> 占比:{d}%', |
|
|
|
}, |
|
|
|
}, |
|
|
|
legend: { |
|
|
|
legend: { |
|
|
|
// top: '-2%', |
|
|
|
top: '-2%', |
|
|
|
left: '15%', |
|
|
|
left: '1%', |
|
|
|
top:'center', |
|
|
|
// top: 'center', |
|
|
|
orient: "vertical" |
|
|
|
orient: 'vertical', |
|
|
|
}, |
|
|
|
}, |
|
|
|
series: [ |
|
|
|
series: [ |
|
|
|
{ |
|
|
|
{ |
|
|
|
top: '10%', |
|
|
|
top: '0%', |
|
|
|
type: 'pie', |
|
|
|
type: 'pie', |
|
|
|
radius: ['65%', '95%'], |
|
|
|
radius: ['70%', '95%'], |
|
|
|
avoidLabelOverlap: false, |
|
|
|
avoidLabelOverlap: false, |
|
|
|
padAngle: 5, |
|
|
|
padAngle: 5, |
|
|
|
itemStyle: { |
|
|
|
itemStyle: { |
|
|
|
borderRadius: 5 |
|
|
|
borderRadius: 5, |
|
|
|
}, |
|
|
|
}, |
|
|
|
label: { |
|
|
|
label: { |
|
|
|
show: false, |
|
|
|
show: false, |
|
|
|
position: 'center' |
|
|
|
position: 'center', |
|
|
|
}, |
|
|
|
}, |
|
|
|
labelLine: { |
|
|
|
labelLine: { |
|
|
|
show: false |
|
|
|
show: false, |
|
|
|
}, |
|
|
|
}, |
|
|
|
// data: this.problemArr |
|
|
|
// data: this.problemArr |
|
|
|
data:[ |
|
|
|
data: [ |
|
|
|
{ value: 8, name: '在制品',itemStyle: {color:'#3B82F6'}}, |
|
|
|
{ value: 8, name: '在制品', itemStyle: { color: '#3B82F6' } }, |
|
|
|
{ value: 2, name: '加工中',itemStyle: {color:'#E6A23C'} }, |
|
|
|
{ value: 2, name: '加工中', itemStyle: { color: '#E6A23C' } }, |
|
|
|
{ value: 2, name: '检验中',itemStyle: {color:'#EF4444'} }, |
|
|
|
{ value: 2, name: '检验中', itemStyle: { color: '#EF4444' } }, |
|
|
|
{ value: 2, name: '已完成',itemStyle: {color:'#22C55E'} }, |
|
|
|
{ value: 2, name: '已完成', itemStyle: { color: '#22C55E' } }, |
|
|
|
] |
|
|
|
], |
|
|
|
} |
|
|
|
}, |
|
|
|
] |
|
|
|
], |
|
|
|
}; |
|
|
|
}; |
|
|
|
myChart.setOption(option); |
|
|
|
myChart.setOption(option); |
|
|
|
}, |
|
|
|
}, |
|
|
|
@ -85,47 +88,47 @@ export default { |
|
|
|
let option = { |
|
|
|
let option = { |
|
|
|
tooltip: { |
|
|
|
tooltip: { |
|
|
|
trigger: 'item', |
|
|
|
trigger: 'item', |
|
|
|
formatter: '{b} : {c} <br/> 占比:{d}%' |
|
|
|
formatter: '{b} : {c} <br/> 占比:{d}%', |
|
|
|
}, |
|
|
|
}, |
|
|
|
legend: { |
|
|
|
legend: { |
|
|
|
// top: '-2%', |
|
|
|
top: '-2%', |
|
|
|
left: '15%', |
|
|
|
left: '1%', |
|
|
|
top:'center', |
|
|
|
// top:'center', |
|
|
|
orient: "vertical" |
|
|
|
orient: 'vertical', |
|
|
|
}, |
|
|
|
}, |
|
|
|
series: [ |
|
|
|
series: [ |
|
|
|
{ |
|
|
|
{ |
|
|
|
top: '10%', |
|
|
|
top: '0%', |
|
|
|
type: 'pie', |
|
|
|
type: 'pie', |
|
|
|
radius: ['65%', '95%'], |
|
|
|
radius: ['65%', '95%'], |
|
|
|
avoidLabelOverlap: false, |
|
|
|
avoidLabelOverlap: false, |
|
|
|
padAngle: 5, |
|
|
|
padAngle: 5, |
|
|
|
itemStyle: { |
|
|
|
itemStyle: { |
|
|
|
borderRadius: 5 |
|
|
|
borderRadius: 5, |
|
|
|
}, |
|
|
|
}, |
|
|
|
label: { |
|
|
|
label: { |
|
|
|
show: false, |
|
|
|
show: false, |
|
|
|
position: 'center' |
|
|
|
position: 'center', |
|
|
|
}, |
|
|
|
}, |
|
|
|
labelLine: { |
|
|
|
labelLine: { |
|
|
|
show: false |
|
|
|
show: false, |
|
|
|
}, |
|
|
|
}, |
|
|
|
// data: this.problemArr |
|
|
|
// data: this.problemArr |
|
|
|
data:[ |
|
|
|
data: [ |
|
|
|
{ value: 20, name: '在制品',itemStyle: {color:'#3B82F6'}}, |
|
|
|
{ value: 20, name: '在制品', itemStyle: { color: '#3B82F6' } }, |
|
|
|
{ value: 28, name: '未齐套',itemStyle: {color:'#ff7a45'}}, |
|
|
|
{ value: 28, name: '未齐套', itemStyle: { color: '#ff7a45' } }, |
|
|
|
{ value: 14, name: '已齐套', itemStyle: {color:'#20c5f6'}}, |
|
|
|
{ value: 14, name: '已齐套', itemStyle: { color: '#20c5f6' } }, |
|
|
|
{ value: 42, name: '加工中',itemStyle: {color:'#E6A23C'} }, |
|
|
|
{ value: 42, name: '加工中', itemStyle: { color: '#E6A23C' } }, |
|
|
|
{ value: 13, name: '检验中',itemStyle: {color:'#EF4444'} }, |
|
|
|
{ value: 13, name: '检验中', itemStyle: { color: '#EF4444' } }, |
|
|
|
{ value: 25, name: '已完成',itemStyle: {color:'#22C55E'} }, |
|
|
|
{ value: 25, name: '已完成', itemStyle: { color: '#22C55E' } }, |
|
|
|
] |
|
|
|
], |
|
|
|
} |
|
|
|
}, |
|
|
|
] |
|
|
|
], |
|
|
|
}; |
|
|
|
}; |
|
|
|
myChart.setOption(option); |
|
|
|
myChart.setOption(option); |
|
|
|
}, |
|
|
|
}, |
|
|
|
} |
|
|
|
}, |
|
|
|
} |
|
|
|
}; |
|
|
|
</script> |
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped> |
|
|
|
<style lang="scss" scoped> |
|
|
|
@ -147,40 +150,40 @@ export default { |
|
|
|
height: 100%; |
|
|
|
height: 100%; |
|
|
|
padding: 10px; |
|
|
|
padding: 10px; |
|
|
|
|
|
|
|
|
|
|
|
.btn_box{ |
|
|
|
.btn_box { |
|
|
|
width: 100%; |
|
|
|
width: 100%; |
|
|
|
display: flex; |
|
|
|
display: flex; |
|
|
|
justify-content: flex-end; |
|
|
|
justify-content: flex-end; |
|
|
|
|
|
|
|
margin-top: -30px; |
|
|
|
|
|
|
|
|
|
|
|
.btn{ |
|
|
|
.btn { |
|
|
|
padding: 5px 15px; |
|
|
|
padding: 5px 15px; |
|
|
|
border: 1px solid #eee; |
|
|
|
border: 1px solid #eee; |
|
|
|
cursor: pointer; |
|
|
|
cursor: pointer; |
|
|
|
font-size: 14px; |
|
|
|
font-size: 14px; |
|
|
|
|
|
|
|
|
|
|
|
&.first{ |
|
|
|
&.first { |
|
|
|
border-top-left-radius: 6px; |
|
|
|
border-top-left-radius: 6px; |
|
|
|
border-bottom-left-radius: 6px; |
|
|
|
border-bottom-left-radius: 6px; |
|
|
|
border-right: none; |
|
|
|
border-right: none; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
&.second{ |
|
|
|
&.second { |
|
|
|
border-top-right-radius: 6px; |
|
|
|
border-top-right-radius: 6px; |
|
|
|
border-bottom-right-radius: 6px; |
|
|
|
border-bottom-right-radius: 6px; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
&.active { |
|
|
|
&.active{ |
|
|
|
|
|
|
|
color: rgb(64, 158, 255); |
|
|
|
color: rgb(64, 158, 255); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.title{ |
|
|
|
.title { |
|
|
|
font-weight: 500; |
|
|
|
font-weight: 500; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.chart_box{ |
|
|
|
.chart_box { |
|
|
|
width: 100%; |
|
|
|
width: 100%; |
|
|
|
height: 210px; |
|
|
|
height: 210px; |
|
|
|
margin-top: 10px; |
|
|
|
margin-top: 10px; |
|
|
|
|