zouyu
2026-01-16 b2ee80ea7ca9c86180a0afee220303e3e0616e60
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
<template>
    <div class="report-management">
        <!-- 筛选条件 -->
        <el-card class="filter-card" shadow="never">
            <el-form :model="filterForm" inline>
                <el-form-item label="时间范围">
                    <el-date-picker
                        style="width: 300px"
                        v-model="filterForm.dateRange"
                        type="daterange"
                        range-separator="至"
                        start-placeholder="开始日期"
                        end-placeholder="结束日期"
                        format="YYYY-MM-DD"
                        value-format="YYYY-MM-DD"
                        @change="handleFilterChange"
                    />
                </el-form-item>
                <el-form-item>
                    <el-button type="primary" @click="handleFilterChange">查询</el-button>
                    <el-button @click="resetFilter">重置</el-button>
                </el-form-item>
            </el-form>
        </el-card>
 
        <!-- 统计卡片 -->
        <div class="statistics-cards">
            <el-row :gutter="20">
                <el-col :span="6">
                    <el-card class="stat-card" shadow="hover">
                        <div class="stat-content">
                            <div class="stat-icon">
                                <el-icon><Box /></el-icon>
                            </div>
                            <div class="stat-info">
                                <div class="stat-number">{{ statistics.totalSamples }}</div>
                                <div class="stat-label">总订单数</div>
                            </div>
                        </div>
                    </el-card>
                </el-col>
                <el-col :span="6">
                    <el-card class="stat-card" shadow="hover">
                        <div class="stat-content">
                            <div class="stat-icon">
                                <el-icon><Tools /></el-icon>
                            </div>
                            <div class="stat-info">
                                <div class="stat-number">{{ statistics.activeEquipment }}</div>
                                <div class="stat-label">待生产数量</div>
                            </div>
                        </div>
                    </el-card>
                </el-col>
                <el-col :span="6">
                    <el-card class="stat-card" shadow="hover">
                        <div class="stat-content">
                            <div class="stat-icon">
                                <el-icon><Document /></el-icon>
                            </div>
                            <div class="stat-info">
                                <div class="stat-number">{{ statistics.completedInspections }}</div>
                                <div class="stat-label">已生产数量</div>
                            </div>
                        </div>
                    </el-card>
                </el-col>
                <el-col :span="6">
                    <el-card class="stat-card" shadow="hover">
                        <div class="stat-content">
                            <div class="stat-icon">
                                <el-icon><ShoppingCart /></el-icon>
                            </div>
                            <div class="stat-info">
                                <div class="stat-number">{{ statistics.totalUsage }}</div>
                                <div class="stat-label">总核算工时</div>
                            </div>
                        </div>
                    </el-card>
                </el-col>
            </el-row>
        </div>
 
        <!-- 图表区域 -->
        <div class="charts-container">
            <el-row :gutter="20">
                <!-- 样品进度图表 -->
                <el-col :span="12">
                    <el-card class="chart-card" shadow="hover">
                        <template #header>
                            <div class="card-header">
                                <span>生产报工统计</span>
                            </div>
                        </template>
                        <div ref="sampleChartRef" class="chart-container"></div>
                    </el-card>
                </el-col>
 
                <!-- 设备使用图表 -->
                <el-col :span="12">
                    <el-card class="chart-card" shadow="hover">
                        <template #header>
                            <div class="card-header">
                                <span>生产核算统计</span>
                            </div>
                        </template>
                        <div ref="equipmentChartRef" class="chart-container"></div>
                    </el-card>
                </el-col>
            </el-row>
        </div>
 
        <!-- 详细数据表格 -->
        <el-card class="table-card" shadow="hover">
            <template #header>
                <div class="card-header">
                    <span>生产报工详情</span>
                    <div>
                    </div>
                </div>
            </template>
 
            <el-table
                :data="tableData"
                style="width: 100%"
                v-loading="tableLoading"
                stripe
                border
            >
                <el-table-column prop="id" label="编号" width="80" />
                <el-table-column prop="orderNo" label="生产订单号" />
                <el-table-column prop="productCategory" label="产品大类" />
                <el-table-column prop="specificationModel" label="规格型号" />
                <el-table-column prop="unit" label="单位" />
                <el-table-column prop="schedulingUserName" label="排产人" />
                <el-table-column prop="schedulingDate" label="排产日期" />
                <el-table-column prop="process" label="工序" />
                <el-table-column prop="schedulingNum" label="排产数量" />
                <el-table-column prop="finishedNum" label="生产数量" />
        <el-table-column prop="pendingFinishNum" label="待生产数量" >
          <template #default="scope">
            <span>{{ scope.row.schedulingNum - scope.row.finishedNum }}</span>
          </template>
        </el-table-column>
                <el-table-column prop="status" label="状态">
                    <template #default="scope">
                        <el-tag :type="getStatusType(scope.row.status).type">
                            {{ getStatusType(scope.row.status).label }}
                        </el-tag>
                    </template>
                </el-table-column>
            </el-table>
        </el-card>
    </div>
</template>
 
<script setup>
import { ref, reactive, onMounted, nextTick } from 'vue'
import { ElMessage, ElMessageBox } from 'element-plus'
import * as echarts from 'echarts'
import { Box, Tools, Document, ShoppingCart } from '@element-plus/icons-vue'
import {reportAnalysis} from '@/api/productionManagement/productionOrder'
 
// 响应式数据
const filterForm = reactive({
    dateRange: [],
    reportType: 'sample'
})
 
const statistics = reactive({
  totalSamples: 0,
  activeEquipment: 0,
  completedInspections: 0,
  totalUsage: 0
})
 
const tableData = ref([])
const tableLoading = ref(false)
 
// 图表引用
const sampleChartRef = ref(null)
const equipmentChartRef = ref(null)
 
// 图表实例
let sampleChart = null
let equipmentChart = null
let inspectionChart = null
let usageChart = null
 
// 初始化数据
const initData = () => {
  let startDate=null,endDate=null;
  if(filterForm.dateRange && filterForm.dateRange.length===2){
    startDate = filterForm.dateRange[0];
    endDate = filterForm.dateRange[1];
  }
  reportAnalysis({startDate:startDate,endDate:endDate}).then(res=>{
    statistics.totalSamples = res.data.totalData.totalOrderNum
    statistics.activeEquipment = res.data.totalData.tobeProduced
    statistics.completedInspections = res.data.totalData.finishProduced
    statistics.totalUsage = res.data.totalData.totalWorkhours
    // 初始化图表
    let chartData = res.data.productData?res.data.productData:{
      finishProduced:0,
      inProduced:0,
      tobeProduced:0
    };
    initSampleChart([
      { value: chartData.finishProduced, name: '已完成' },
      { value: chartData.inProduced, name: '生产中' },
      { value: chartData.tobeProduced, name: '待报工' },
    ])
    initEquipmentChart(res.data.workHours)
    tableData.value = res.data.productDetails
  })
}
 
// 初始化样品进度图表
const initSampleChart = (charData) => {
    if (sampleChartRef.value) {
        sampleChart = echarts.init(sampleChartRef.value)
        const option = {
            title: {
                show: false
            },
            tooltip: {
                trigger: 'item',
                formatter: '{a} <br/>{b}: {c} ({d}%)'
            },
            legend: {
                orient: 'vertical',
                left: 'left'
            },
            series: [
                {
                    name: '样品状态',
                    type: 'pie',
                    radius: ['40%', '70%'],
                    avoidLabelOverlap: false,
                    label: {
                        show: false,
                        position: 'center'
                    },
                    emphasis: {
                        label: {
                            show: true,
                            fontSize: '18',
                            fontWeight: 'bold'
                        }
                    },
                    labelLine: {
                        show: false
                    },
                    data: charData
                }
            ]
        }
        sampleChart.setOption(option)
    }
}
 
// 初始化设备使用图表
const initEquipmentChart = (chartData) => {
    if (equipmentChartRef.value) {
    let processData = [];
    let workHoursData = [];
    if(chartData){
      chartData.forEach(item=>{
        processData.push(item.process);
        workHoursData.push(item.workHours);
      })
    }
        equipmentChart = echarts.init(equipmentChartRef.value)
        const option = {
            title: {
                show: false
            },
            tooltip: {
                trigger: 'axis',
                axisPointer: {
                    type: 'shadow'
                }
            },
            xAxis: {
                type: 'category',
                data: processData,
        name: '工序'
            },
            yAxis: {
                type: 'value',
                name: '核算工时'
            },
            series: [
                {
                    name: '核算工时',
                    type: 'bar',
                    data: workHoursData,
                    itemStyle: {
                        // color: function(params) {
                        //     const colors = ['#409EFF', '#67C23A', '#E6A23C', '#F56C6C', '#909399', '#9C27B0']
                        //     return colors[params.dataIndex]
                        // }
                    }
                }
            ]
        }
        equipmentChart.setOption(option)
    }
}
 
// 事件处理函数
const handleFilterChange = () => {
    // 这里可以根据筛选条件重新加载数据
   initData()
}
 
const resetFilter = () => {
    filterForm.dateRange = []
    filterForm.reportType = 'sample'
    ElMessage.info('筛选条件已重置')
}
 
const getStatusType = (status) => {
    const statusMap = {
        '3': {type:'success',label:'已完成'},
        '2': {type:'warning',label:'生产中'},
        '1': {type:'info',label:'待生产'}
    }
    return statusMap[status] || {type:'info',label:'未知状态'}
}
 
const getProgressStatus = (progress) => {
    if (progress === 100) return 'success'
    if (progress >= 80) return 'warning'
    if (progress >= 50) return ''
    return 'exception'
}
 
// 生命周期
onMounted(() => {
    initData()
    // 监听窗口大小变化,重新调整图表大小
    window.addEventListener('resize', () => {
        sampleChart?.resize()
        equipmentChart?.resize()
        inspectionChart?.resize()
        usageChart?.resize()
    })
})
</script>
 
<style scoped>
.report-management {
    padding: 20px;
    background-color: #f5f5f5;
    min-height: 100vh;
}
 
.page-header h2 {
    color: #303133;
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 600;
}
 
.page-header p {
    color: #909399;
    font-size: 14px;
    margin: 0;
}
 
.filter-card {
    margin-bottom: 20px;
}
 
.statistics-cards {
    margin-bottom: 20px;
}
 
.stat-card {
    height: 120px;
}
 
.stat-content {
    display: flex;
    align-items: center;
    height: 100%;
}
 
.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 24px;
    color: white;
}
 
.stat-card:nth-child(1) .stat-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
 
.stat-card:nth-child(2) .stat-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
 
.stat-card:nth-child(3) .stat-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
 
.stat-card:nth-child(4) .stat-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}
 
.stat-info {
    flex: 1;
}
 
.stat-number {
    font-size: 28px;
    font-weight: bold;
    color: #303133;
    margin-bottom: 8px;
}
 
.stat-label {
    font-size: 14px;
    color: #909399;
}
 
.charts-container {
    margin-bottom: 20px;
}
 
.chart-card {
    margin-bottom: 20px;
}
 
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
 
.chart-container {
    height: 300px;
    width: 100%;
}
 
.table-card {
    margin-bottom: 20px;
}
 
:deep(.el-card__header) {
    padding: 15px 20px;
    border-bottom: 1px solid #ebeef5;
    background-color: #fafafa;
}
 
:deep(.el-card__body) {
    padding: 20px;
}
 
:deep(.el-table) {
    margin-bottom: 20px;
}
 
:deep(.el-progress) {
    margin: 0;
}
 
:deep(.el-tag) {
    margin: 0;
}
</style>