Compare commits

..

No commits in common. "6f2f751b0ea54ba80ca962aa1147f7ae349c340f" and "63f4fd7cb58ae529081d44567e026fc23b696cfa" have entirely different histories.

10 changed files with 158 additions and 156 deletions

View File

@ -1,7 +1,7 @@
<!-- <!--
* @Author: zhp * @Author: zhp
* @Date: 2024-05-20 13:32:59 * @Date: 2024-05-20 13:32:59
* @LastEditTime: 2024-07-09 08:58:47 * @LastEditTime: 2024-06-17 16:42:12
* @LastEditors: zhp * @LastEditors: zhp
* @Description: * @Description:
--> -->
@ -312,7 +312,7 @@ function calculateItems(period, valueTuple, than) {
} }
.double-ring-chart__legend { .double-ring-chart__legend {
/* padding: 12px; */ padding: 12px;
color: #fff; color: #fff;
display: flex; display: flex;
justify-content: center; justify-content: center;

View File

@ -1,7 +1,7 @@
<!-- <!--
* @Author: zhp * @Author: zhp
* @Date: 2024-05-30 16:00:50 * @Date: 2024-05-30 16:00:50
* @LastEditTime: 2024-07-09 09:09:07 * @LastEditTime: 2024-06-03 16:26:03
* @LastEditors: zhp * @LastEditors: zhp
* @Description: * @Description:
--> -->
@ -64,7 +64,7 @@ export default {
<style scoped lang="scss"> <style scoped lang="scss">
.double-ring-wrapper { .double-ring-wrapper {
height: 100%; height: 100%;
padding: 0px 24px; padding: 12px 24px;
display: flex; display: flex;
gap: 12px; gap: 12px;
flex-direction: column; flex-direction: column;

View File

@ -1,7 +1,7 @@
<!-- <!--
* @Author: zhp * @Author: zhp
* @Date: 2024-05-24 15:15:00 * @Date: 2024-05-24 15:15:00
* @LastEditTime: 2024-07-09 09:27:12 * @LastEditTime: 2024-05-31 16:16:16
* @LastEditors: zhp * @LastEditors: zhp
* @Description: * @Description:
--> -->
@ -74,7 +74,7 @@ export default {
<style scoped lang="scss"> <style scoped lang="scss">
.double-ring-wrapper { .double-ring-wrapper {
height: 100%; height: 100%;
padding: 0px 24px; padding: 12px 24px;
display: flex; display: flex;
gap: 12px; gap: 12px;
flex-direction: column; flex-direction: column;

View File

@ -23,11 +23,11 @@ export default ({
title: { title: {
text: titleValue, text: titleValue,
left: "48.5%", left: "48.5%",
top: "35%", top: "37%",
textAlign: "center", textAlign: "center",
textStyle: { textStyle: {
fontWeight: 400, fontWeight: 600,
fontSize: 32, fontSize: 26,
color: "#fffd", color: "#fffd",
}, },
subtext: `\u2002${subtitle}\u2002`, subtext: `\u2002${subtitle}\u2002`,
@ -43,8 +43,8 @@ export default ({
{ {
type: "pie", type: "pie",
name: "当前目标", name: "当前目标",
radius: ["80%", "95%"], radius: ["80%", "90%"],
center: ["50%", "48%"], center: ["50%", "52%"],
emptyCircleStyle: { emptyCircleStyle: {
color: "#042c5f33", color: "#042c5f33",
}, },
@ -52,8 +52,8 @@ export default ({
// 数据 series // 数据 series
{ {
type: "pie", type: "pie",
radius: ["80%", "95%"], radius: ["80%", "90%"],
center: ["50%", "48%"], center: ["50%", "52%"],
avoidLabelOvervlap: false, avoidLabelOvervlap: false,
label: { label: {
show: false, show: false,
@ -103,8 +103,8 @@ export default ({
// 数据 series2 - 2023累计 // 数据 series2 - 2023累计
{ {
type: "pie", type: "pie",
radius: ["65%", "80%"], radius: ["70%", "80%"],
center: ["50%", "48%"], center: ["50%", "52%"],
avoidLabelOvervlap: false, avoidLabelOvervlap: false,
label: { label: {
show: false, show: false,

View File

@ -1,13 +1,13 @@
<template> <template>
<div class="dayRepExpBox"> <div class="dayRepExpBox">
<el-row> <!-- <el-row>
<el-col :span="24"> <el-col :span="24">
<div class="chartTitle" style="text-align: center;">产品良率</div> <div class="chartTitle" style="text-align: center;">产品良率</div>
<div class="box2"> <div class="box2">
<productYield ref="productYield" :pieList="pieList" /> <productYield ref="productYield" :beProcessObj="beProcessObj" />
</div> </div>
</el-col> </el-col>
</el-row> </el-row> -->
<el-row> <el-row>
<el-col :span="24"> <el-col :span="24">
<div class="chartTitle" style="text-align: center;">待制品分布</div> <div class="chartTitle" style="text-align: center;">待制品分布</div>
@ -16,11 +16,11 @@
</div> </div>
</el-col> </el-col>
</el-row> </el-row>
<el-row> <!-- <el-row>
<el-col :span="24"> <el-col :span="24">
<div class="chartTitle" style="text-align: center;">生产明细</div> <div class="chartTitle" style="text-align: center;">生产明细</div>
<div class="box2"> <div class="box2">
<produceDetail ref="produceDetail" :produceData="produceData" /> <produceDetail ref="produceDetail" :beProcessObj="beProcessObj" />
</div> </div>
</el-col> </el-col>
</el-row> </el-row>
@ -28,10 +28,10 @@
<el-col :span="24"> <el-col :span="24">
<div class="chartTitle" style="text-align: center;">历史趋势</div> <div class="chartTitle" style="text-align: center;">历史趋势</div>
<div class="box2"> <div class="box2">
<hisChart ref="hisChart" :hisObj="hisObj" /> <hisChart ref="hisChart" :beProcessObj="beProcessObj" />
</div> </div>
</el-col> </el-col>
</el-row> </el-row> -->
</div> </div>
</template> </template>
<script> <script>
@ -43,17 +43,17 @@ export default {
name: 'ExportDayReport', name: 'ExportDayReport',
components: { hisChart, produceDetail, productYield, beProcessed }, components: { hisChart, produceDetail, productYield, beProcessed },
props: { props: {
produceData: { productionOverviewVo: {
type: Array,
default: () => []
},
hisObj: {
type: Object, type: Object,
default: () => { } default: () => { }
}, },
pieList: { equipmentUtilizationVo: {
type: Array, type: Object,
default: () => [] default: () => { }
},
chipPowerTrendVo: {
type: Object,
default: () => { }
}, },
beProcessObj: { beProcessObj: {
type: Object, type: Object,
@ -62,6 +62,8 @@ export default {
}, },
data() { data() {
return { return {
tableData1: [],
tableData2: []
} }
}, },
watch: { watch: {
@ -76,8 +78,8 @@ export default {
}, },
methods: { methods: {
getData() { getData() {
// console.log('beProcessObj', this.beProcessObj); console.log(this.beProcessObj);
// this.$refs.beProcess.canvasReset() this.$refs.beProcess.canvasReset()
// this.$refs.productYield.canvasReset() // this.$refs.productYield.canvasReset()
// this.$refs.produceDetail.canvasReset() // this.$refs.produceDetail.canvasReset()
// this.$refs.hisChart.canvasReset() // this.$refs.hisChart.canvasReset()

View File

@ -1,7 +1,7 @@
<!-- <!--
* @Author: zhp * @Author: zhp
* @Date: 2024-07-08 14:51:47 * @Date: 2024-07-08 14:51:47
* @LastEditTime: 2024-07-09 09:34:38 * @LastEditTime: 2024-07-08 16:50:34
* @LastEditors: zhp * @LastEditors: zhp
* @Description: * @Description:
--> -->
@ -28,11 +28,10 @@ export default {
}, },
watch: { watch: {
beProcessObj: { beProcessObj: {
handler(val) { handler(newValue, oldValue) {
console.log(val); console.log(newValue);
this.canvasReset() this.canvasReset()
}, }
deep: true //
} }
}, },
mounted() { mounted() {
@ -52,11 +51,13 @@ export default {
) { ) {
this.chart.dispose() this.chart.dispose()
} }
console.log(this.beProcessObj); // console.log(this.beProcessObj);
this.chart = echarts.init(document.getElementById('chipPowerExpChart')) this.chart = echarts.init(document.getElementById('chipPowerExpChart'), null, { devicePixelRatio: 2 })
// const legendName = Object.keys(this.chipPowerDistributionVo) // const legendName = Object.keys(this.chipPowerDistributionVo)
let xAxisList = this.beProcessObj.xAxisList let xAxisList = this.beProcessObj.xAxisList
let yAxisList = this.beProcessObj.yAxisList let yAxisList = this.beProcessObj.yAxisList
// const values = Object.values(this.chipPowerDistributionVo)
var option = { var option = {
// title: { // title: {
// text: '', // text: '',
@ -71,7 +72,7 @@ export default {
calculable: true, calculable: true,
grid: { grid: {
top: '15%', top: '15%',
left: 0, left: 10,
right: 0, right: 0,
bottom: 0, bottom: 0,
containLabel: true containLabel: true
@ -80,7 +81,7 @@ export default {
type: 'category', type: 'category',
data: xAxisList, data: xAxisList,
axisLabel: { axisLabel: {
rotate: 45 rotate: 25
// width: '10%' // width: '10%'
} }
}, },
@ -95,7 +96,7 @@ export default {
{ {
data: yAxisList, data: yAxisList,
type: 'bar', type: 'bar',
barWidth: 10, barWidth: 16,
label: { label: {
show: true, show: true,
position: 'top' position: 'top'

View File

@ -1,7 +1,7 @@
<!-- <!--
* @Author: zhp * @Author: zhp
* @Date: 2024-07-08 14:51:47 * @Date: 2024-07-08 14:51:47
* @LastEditTime: 2024-07-09 09:55:27 * @LastEditTime: 2024-07-08 16:40:58
* @LastEditors: zhp * @LastEditors: zhp
* @Description: * @Description:
--> -->
@ -16,7 +16,7 @@ export default {
name: 'ChipPowerExp', name: 'ChipPowerExp',
// mixins: [resize], // mixins: [resize],
props: { props: {
hisObj: { beProcessObj: {
type: Object, type: Object,
default: () => { } default: () => { }
} }
@ -27,11 +27,10 @@ export default {
} }
}, },
watch: { watch: {
hisObj: { beProcessObj: {
handler(newValue, oldValue) { handler(newValue, oldValue) {
this.canvasReset() this.canvasReset()
}, }
deep:true,
} }
}, },
mounted() { mounted() {
@ -51,11 +50,13 @@ export default {
) { ) {
this.chart.dispose() this.chart.dispose()
} }
this.chart = echarts.init(document.getElementById('hisChart')) console.log(this.beProcessObj);
this.chart = echarts.init(document.getElementById('hisChart'), null, { devicePixelRatio: 2 })
// const legendName = Object.keys(this.chipPowerDistributionVo) // const legendName = Object.keys(this.chipPowerDistributionVo)
let xAxisList = this.beProcessObj.xAxisList
let yAxisList = this.beProcessObj.yAxisList
// const values = Object.values(this.chipPowerDistributionVo) // const values = Object.values(this.chipPowerDistributionVo)
let dateList = this.hisObj.dateList
let seriesList = this.hisObj.seriesList
var option = { var option = {
// title: { // title: {
// text: '', // text: '',
@ -70,16 +71,16 @@ export default {
calculable: true, calculable: true,
grid: { grid: {
top: '15%', top: '15%',
left: 0, left: 10,
right: 0, right: 0,
bottom: 0, bottom: 0,
containLabel: true containLabel: true
}, },
xAxis: { xAxis: {
type: 'category', type: 'category',
data: dateList, data: xAxisList,
axisLabel: { axisLabel: {
rotate: 45 rotate: 25
// width: '10%' // width: '10%'
} }
}, },
@ -92,8 +93,9 @@ export default {
}, },
series: [ series: [
{ {
data: seriesList, data: yAxisList,
type: 'line', type: 'bar',
barWidth: 16,
label: { label: {
show: true, show: true,
position: 'top' position: 'top'

View File

@ -1,7 +1,7 @@
<!-- <!--
* @Author: zhp * @Author: zhp
* @Date: 2024-07-08 14:51:47 * @Date: 2024-07-08 14:51:47
* @LastEditTime: 2024-07-09 09:56:13 * @LastEditTime: 2024-07-08 16:41:11
* @LastEditors: zhp * @LastEditors: zhp
* @Description: * @Description:
--> -->
@ -16,9 +16,9 @@ export default {
name: 'ChipPowerExp', name: 'ChipPowerExp',
// mixins: [resize], // mixins: [resize],
props: { props: {
produceData: { beProcessObj: {
type: Array, type: Object,
default: () => [] default: () => { }
} }
}, },
data() { data() {
@ -27,11 +27,10 @@ export default {
} }
}, },
watch: { watch: {
produceData: { beProcessObj: {
handler(newValue, oldValue) { handler(newValue, oldValue) {
this.canvasReset() this.canvasReset()
}, }
deep:true,
} }
}, },
mounted() { mounted() {
@ -51,13 +50,16 @@ export default {
) { ) {
this.chart.dispose() this.chart.dispose()
} }
console.log(this.beProcessObj);
this.chart = echarts.init(document.getElementById('produceDetail'), null, { devicePixelRatio: 2 }) this.chart = echarts.init(document.getElementById('produceDetail'), null, { devicePixelRatio: 2 })
// const legendName = Object.keys(this.chipPowerDistributionVo) // const legendName = Object.keys(this.chipPowerDistributionVo)
let xAxisList = this.beProcessObj.xAxisList
let yAxisList = this.beProcessObj.yAxisList
// const values = Object.values(this.chipPowerDistributionVo) // const values = Object.values(this.chipPowerDistributionVo)
var option = { var option = {
// title: { // title: {
// text: '', // text: '',
// left: 'center' // left: 'center'
// // subtext: 'Fake Data' // // subtext: 'Fake Data'
// }, // },
@ -69,16 +71,17 @@ export default {
calculable: true, calculable: true,
grid: { grid: {
top: '15%', top: '15%',
left: 0, left: 10,
right: '10%', right: 0,
bottom: 0, bottom: 0,
containLabel: true containLabel: true
}, },
xAxis: { xAxis: {
type: 'category', type: 'category',
data: ['目标产量', '计划投入量', '实际投入', '实际产出', '废品数量', '待再加工数量'], data: xAxisList,
axisLabel: { axisLabel: {
rotate: 45 rotate: 25
// width: '10%'
} }
}, },
yAxis: { yAxis: {
@ -90,7 +93,7 @@ export default {
}, },
series: [ series: [
{ {
data: this.produceData, data: yAxisList,
type: 'bar', type: 'bar',
barWidth: 16, barWidth: 16,
label: { label: {

View File

@ -1,7 +1,7 @@
<!-- <!--
* @Author: zhp * @Author: zhp
* @Date: 2024-07-08 14:51:47 * @Date: 2024-07-08 14:51:47
* @LastEditTime: 2024-07-09 09:58:43 * @LastEditTime: 2024-07-08 16:41:20
* @LastEditors: zhp * @LastEditors: zhp
* @Description: * @Description:
--> -->
@ -16,9 +16,9 @@ export default {
name: 'ChipPowerExp', name: 'ChipPowerExp',
// mixins: [resize], // mixins: [resize],
props: { props: {
pieList: { beProcessObj: {
type: Array, type: Object,
default: () => [] default: () => { }
} }
}, },
data() { data() {
@ -27,11 +27,10 @@ export default {
} }
}, },
watch: { watch: {
pieList: { beProcessObj: {
handler(newValue, oldValue) { handler(newValue, oldValue) {
this.canvasReset() this.canvasReset()
}, }
deep:true
} }
}, },
mounted() { mounted() {
@ -53,49 +52,53 @@ export default {
} }
console.log(this.beProcessObj); console.log(this.beProcessObj);
this.chart = echarts.init(document.getElementById('productYield'), null, { devicePixelRatio: 2 }) this.chart = echarts.init(document.getElementById('productYield'), null, { devicePixelRatio: 2 })
// const legendName = Object.keys(this.chipPowerDistributionVo)
let xAxisList = this.beProcessObj.xAxisList
let yAxisList = this.beProcessObj.yAxisList
// const values = Object.values(this.chipPowerDistributionVo) // const values = Object.values(this.chipPowerDistributionVo)
var option = { var option = {
color: ['#3E8EF7', '#69E6D8', '#F7C739'], // title: {
title: { // text: '',
// text: !isNaN((pieData[0].value / (pieData[0].value + pieData[1].value)).toFixed(4) * 100) ? ( ' ' + (pieData[0].value / (pieData[0].value + pieData[1].value)).toFixed(4) * 100 + '%') : ' -', // left: 'center'
left: 'center' // // subtext: 'Fake Data'
// subtext: 'Fake Data' // },
}, color: ['#3E8EF7'],
tooltip: { tooltip: {
trigger: 'item' trigger: 'axis'
}, },
legend: { // grid: { top: 100, right: 90, bottom: 10, left: 10, containLabel: true },
calculable: true,
grid: {
top: '15%',
left: 10,
right: 0,
bottom: 0, bottom: 0,
left: 'center' containLabel: true
},
xAxis: {
type: 'category',
data: xAxisList,
axisLabel: {
rotate: 25
// width: '10%'
}
},
yAxis: {
type: 'value',
name: '单位/片',
axisLine: {
show: true
}
}, },
series: [ series: [
{ {
// name: 'Access From', data: yAxisList,
type: 'pie', type: 'bar',
radius: ['50%', '70%'], barWidth: 16,
avoidLabelOverlap: false,
data: this.pieList,
label: { label: {
show: true, show: true,
position: 'outside', position: 'top'
formatter: (params) => {
console.log(params)
let res = ''
// for (let i in params) {
res += `${params.percent ? params.percent : 0}% \n ${params.name}`
// }
return res
},
rich: {
d: {
color: 'inherit', //
verticalAlign: 'top'
},
b: {
color: '#8C8C8C',
verticalAlign: 'top'
}
}
} }
} }
] ]

View File

@ -1,7 +1,7 @@
<!-- <!--
* @Author: zhp * @Author: zhp
* @Date: 2024-04-15 10:49:13 * @Date: 2024-04-15 10:49:13
* @LastEditTime: 2024-07-09 10:17:41 * @LastEditTime: 2024-07-08 16:54:13
* @LastEditors: zhp * @LastEditors: zhp
* @Description: * @Description:
--> -->
@ -61,7 +61,7 @@
<add-or-update v-if="detailOrUpdateVisible" ref="detailOrUpdate" :date="listQuery.date" <add-or-update v-if="detailOrUpdateVisible" ref="detailOrUpdate" :date="listQuery.date"
@refreshDataList="successSubmit" @destroy="detailOrUpdateVisible = false" /> @refreshDataList="successSubmit" @destroy="detailOrUpdateVisible = false" />
<div id="dayRepDom" style="position: absolute;top:0;display: none;"> <div id="dayRepDom" style="position: absolute;top:0;display: none;">
<ExportDayReport :beProcessObj="beProcessObj" :produceData="produceData" :hisObj="hisObj" :pieList="pieList" /> <ExportDayReport :beProcessObj="beProcessObj" />
</div> </div>
</div> </div>
</template> </template>
@ -94,12 +94,6 @@ export default {
inputNum: 0, inputNum: 0,
heightNum: 180, heightNum: 180,
factoryList, factoryList,
produceData: [],
pieList:[],
hisObj: {
seriesList: [],
dateList:[],
},
beProcessObj: { beProcessObj: {
xAxisList: [], xAxisList: [],
yAxisList:[] yAxisList:[]
@ -299,11 +293,10 @@ export default {
}, },
methods: { methods: {
exportPDF() { exportPDF() {
setTimeout(() => {
this.$message.success('正在导出,请稍等!') this.$message.success('正在导出,请稍等!')
const element = document.getElementById('dayRepDom') const element = document.getElementById('dayRepDom')
element.style.display = 'block' element.style.display = 'block'
const fileName = '工单数据' + moment().format('yyMMDD') + '.pdf' const fileName = '瑞昌碲化镉生产日报' + moment().format('yyMMDD') + '.pdf'
html2canvas(element, { html2canvas(element, {
dpi: 300, // Set to 300 DPI dpi: 300, // Set to 300 DPI
scale: 3 // Adjusts your resolution scale: 3 // Adjusts your resolution
@ -318,8 +311,6 @@ export default {
}, 1000) }, 1000)
}) })
element.style.display = 'none' element.style.display = 'none'
}, 3000)
}, },
getOverView() { getOverView() {
getOverView().then(res => { getOverView().then(res => {
@ -350,31 +341,31 @@ export default {
const res = await getWorkOrderDetail(val.data.id) const res = await getWorkOrderDetail(val.data.id)
if (res.code === 0) { if (res.code === 0) {
// this.loading = false // this.loading = false
;const data = res.data.prodWorkOrderDO // this.dataForm = res.data.prodWorkOrderDO
const barList = [data.targetProduction, data.plannedInvestment, data.actualInvestment, data.actualProduction, data.wasteNum, data.reworkNum] // this.buildChart(this.dataForm)
const seriesList = [] //
const dateList = []
res.data.his.forEach(element => {
seriesList.push(element.actualProduction)
dateList.push(element.recordTime[0] + '-' + element.recordTime[1] + '-' + element.recordTime[2])
})
this.hisObj.seriesList = seriesList
this.hisObj.dateList = dateList
const xAxisList = Object.keys(res.data.inProcessDis) const xAxisList = Object.keys(res.data.inProcessDis)
const yAxisList = Object.values(res.data.inProcessDis) const yAxisList = Object.values(res.data.inProcessDis)
this.beProcessObj.xAxisList = xAxisList this.beProcessObj.xAxisList = xAxisList
this.beProcessObj.yAxisList = yAxisList this.beProcessObj.yAxisList = yAxisList
this.produceData = barList console.log(this.beProcessObj);
this.pieList = [ // this.initEqLineChart(xAxisList, yAxisList)
{ value: data.actualProduction ? data.actualProduction : 0, name: '实际产出' }, //
{ value: data.wasteNum ? data.wasteNum : 0, name: '废品数量' }, const seriesList = []
{ value: data.reworkNum ? data.reworkNum : 0, name: '待再加工数量' } const dateList = []
] // res.data.his.forEach(element => {
} // seriesList.push(element.actualProduction)
// dateList.push(element.recordTime[0] + '-' + element.recordTime[1] + '-' + element.recordTime[2])
// })
// this.initLineChart(dateList, seriesList)
this.$nextTick(() => { this.$nextTick(() => {
this.exportPDF() this.exportPDF()
}) })
} }
// if (this.dataForm.orderStatus === 1) {
// this.trend()
// }
}
}, },
async getDataList() { async getDataList() {
const res = await getWorkOrderPage(this.listQuery) const res = await getWorkOrderPage(this.listQuery)