快乐的昕的电脑
2025-12-03 13b159ff704e829329793a7505f6c6e5e2b4f8ef
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
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
<template>
    <view class="page wide-layout" :class="{'has-overlay': (isShowUserSelect || isShow || barcodeIsShow)}">
        <view class="status-section">
            <!-- 报工记录表部分,在标题行添加刷新按钮 -->
            <view class="report-table-wrapper">
                <view class="report-header">
                    <view class="report-title">报工记录表</view>
                    <view class="header-buttons">
                        <button class="refresh-btn-header" @click="refresh">刷新</button>
                        <button v-if="isGeneratingBarcode" class="reset-btn-header" @click="resetGenerateState">重置</button>
                    </view>
                </view>
 
                <!-- 数采总产量 -->
                <view class="section-title">当前数采产量报工记录</view>
                <div class="table-scroll">
                    <table class="report-table">
                        <thead>
                            <tr>
                                <th>时间</th>
                                <th>报工人</th>
                                <th>工单号</th>
                                <th>产品名称</th>
                                <th>计划生产数</th>
                                <th>未报工数量</th>
                                <th>机台号</th>
                                <th>初始采集数</th>
                                <th>报工时采集数</th>
                                <th>基于数采的报工数</th>
                                <th>不良数</th>
                                <th>良品数(计算)</th>
                                <th>报工类型</th> <!-- 新增 -->
                            </tr>
                        </thead>
                        <tbody>
                            <tr class="summary-row highlight-row">
                                <td>{{ nowTime }}</td>
                                <td>{{ staffDisplay || '-' }}</td>
                                <td>{{ orderNo || '-' }}</td>
                                <td>{{ order.daa003 || '-' }}</td>
                                <td>{{ planQtyDisplay }}</td><!--计划生产数-->
                                <td>{{ order.daa008 - order.daa011 }}</td> <!-- 新增:未报工数量 -->
                                <td>{{ machineNo || '-' }}</td>
                                <td>{{ order.initCjNum }}</td>
                                <td>{{ order.currentCjNum }}</td>
                                <td>{{ order.currentCjNum - order.initCjNum }}</td>
                                <td>{{ realTimeDefectiveCount }}</td>
                                <td>{{ realTimeOkCount }}</td>
                                <td>
                                    {{ order.daa018 === '开工' ? '生产报工' : '调机报工' }}
                                </td>
                            </tr>
                        </tbody>
                    </table>
                </div>
 
                <!-- 历史报工记录 -->
                <view class="section-title history-title">历史报工记录</view>
                <div class="table-scroll history-table-scroll">
                    <table class="report-table">
                        <thead>
                            <tr>
                                <th>时间</th>
                                <th>报工人</th>
                                <th>工单号</th>
                                <th>产品名称</th>
                                <th>计划生产数</th>
                                <th>机台号</th>
                                <th>初始采集数</th>
                                <th>报工时采集数</th>
                                <th>报工数(计算)</th>
                                <th>不良数</th>
                                <th>良品数(计算)</th>
                                <th>报工类型</th> <!-- 新增 -->
                            </tr>
                        </thead>
                        <tbody>
                            <tr v-for="(r, idx) in reportingHistory" :key="idx">
                                <td>{{ r.bgDate }}</td>
                                <td>{{ r.staff || '-' }}</td>
                                <td>{{ r.orderNo || '-' }}</td>
                                <td>{{ order.daa003 || '-' }}</td>
                                <td>{{ planQtyDisplay }}</td>
                                <td>{{ r.machineNo || '-' }}</td>
                                <td>{{ r.initialValue }}</td>
                                <td>{{ r.productionCount }}</td>
                                <td>{{ r.totalProduction }}</td>
                                <td>{{ r.BfQty }}</td>
                                <td>{{ r.OkQty }}</td>
                                <td>{{ r.reportType || '-' }}</td> <!-- 新增 -->
                            </tr>
                            <tr v-if="!reportingHistory.length">
                                <td colspan="12" class="no-data">暂无历史报工记录</td>
                            </tr>
                        </tbody>
                    </table>
                </div>
            </view>
 
            <!-- 移除了原来的状态行中的按钮组 -->
            <view class="status-row">
                <!--<view class="status-box">
                    <text>机台面板数:</text>
                    <input v-model="productionCount" class="highlight" disabled />
                </view>
                <view class="status-box">
                    <text>当前采集数:</text>
                    <input v-model="calculatedCurrentCount" class="highlight" disabled />
                </view>
                <view class="operator-box">-</view>
                <view class="status-box standalone-box">
                    <text>已打印条码数:</text>
                    <input v-model="sQuantity" class="highlight" disabled />
                </view>
                <view class="operator-box">=</view>
                <view class="status-box">
                    <text>机采不良数:</text>
                    <input v-model="calculatedDefectiveCount" class="highlight" disabled />
                </view>
                <view class="status-box result-box">
                    <text>已生产数:</text>
                    <input v-model="calculatedTotalProduction" class="highlight" disabled />
                </view>-->
            </view>
 
            <view class="flex-row gap-lg">
                <!-- 当前报工人部分 -->
                <view class="current-user-section">
                    <text>当前报工人:</text>
                    <text class="current-user-name">{{ staffDisplay || '未选择' }}</text>
                    <button class="select-user-btn" @click="isShowUserSelect = true">选人</button>
                </view>
 
                <!-- 不良数量部分 -->
                <view class="defective-section">
                    <text>不良数量:</text>
                    <input v-model="customAmount" class="inp bad-input" placeholder="请输入数量" />
                </view>
 
                <!-- 确认提交和调机报工按钮 -->
                <view class="submit-section">
                    <button class="details-btn" @click="confirmCustomAmount">确认提交</button>
                    <button class="details-btn" @click="confirmTiaojiBaogong">调机报工</button>
                </view>
            </view>
 
            <!-- 选人弹窗 -->
            <view v-if="isShowUserSelect" class="overlay">
                <view class="popup user-select-popup">
                    <!-- 搜索栏 -->
                    <view class="user-search-bar">
                        <input v-model.trim="userSearch"
                               type="text"
                               class="user-search-input"
                               placeholder="输入工号或姓名搜索"
                               @keydown.enter.prevent />
                        <button v-if="userSearch" class="user-search-clear" @click="userSearch=''">清空</button>
                        <view class="user-search-info">
                            匹配:{{ filteredUsers.length }} / {{ users.length }}
                        </view>
                    </view>
                    <view class="user-list-scroll">
                        <template v-if="filteredUsers.length">
                            <view class="user-list-grid">
                                <button v-for="(u, index) in filteredUsers"
                                        :key="index"
                                        :class="['user-list-btn', {'selected': u===staffNo}]"
                                        @click="selectUser(u)">
                                    <span class="user-code">{{ u.split(':')[0] }}</span>
                                    <span class="user-name">{{ u.split(':')[1] }}</span>
                                </button>
                            </view>
                        </template>
                        <view v-else class="no-user-result">
                            未找到匹配人员
                        </view>
                    </view>
                    <view class="user-popup-footer">
                        <button class="clean-btn wide-btn" @click="isShowUserSelect = false">关闭</button>
                    </view>
                </view>
            </view>
 
            <!-- 禁用按钮:‘保存并生效'、‘取消’ -->
            <!--<view class="bottom-section">
                <button class="save-btn" @click="save">保存并生效</button>
                <button class="cancel-btn" @click="cancel">取消</button>
            </view>-->
            <!-- 保留旧弹窗 -->
            <view v-if="isShow" class="overlay">
                <view class="popup">
                    <view class="bottom-section1">
                        <button class="clean-btn" type="warn" @click="deleteBarcode">关闭</button>
                    </view>
                    <view class="reason-section">
                        <text>报工人:</text>
                        <view class="reason-buttons">
                            <button v-for="(u,index) in users" :key="index"
                                    :class="{'reason-btn':true,'selected': user===u}"
                                    @click="toggleUser(u)">
                                {{ formatUser(u) }}
                            </button>
                        </view>
                    </view>
                </view>
            </view>
 
            <view v-if="barcodeIsShow" class="overlay">
                <view class="popup">
                    <uni-table ref="table" border stripe emptyText="暂无更多数据" class="table1">
                        <uni-tr>
                            <uni-th align="center" style="font-size:40px;">生成时间</uni-th>
                            <uni-th align="center" style="width:39%;font-size:40px;">条码</uni-th>
                            <uni-th align="center" style="font-size:40px;">报工人</uni-th>
                            <uni-th align="center" style="font-size:40px;">报工数量</uni-th>
                        </uni-tr>
                        <uni-tr v-for="(item,index) in reportingList" :key="index">
                            <uni-td align="center"><input type="text" v-model="item.bgDate" style="width:26vh;" /></uni-td>
                            <uni-td align="center"><input v-model="item.itemNoCade" style="width:40vh;" /></uni-td>
                            <uni-td align="center"><input v-model="item.staffName" /></uni-td>
                            <uni-td align="center"><input v-model="item.okQty" /></uni-td>
                        </uni-tr>
                    </uni-table>
                    <view><button class="clean-btn" type="warn" @click="barcodeIsShow=false">关闭</button></view>
                </view>
            </view>
        </view>
    </view>
</template>
 
<script>
    import { printTemplate3 } from "../utils/printTemplate";
 
    export default {
        props: { orderNo: String, orderId: Number, machineNo: String },
        data() {
            return {
                isShowUserSelect: false,
                currentUser: '',
                barcodeAmount: '',
                users: [], userForm: [], staff: [], user: {},
                productionCount: 0, printedCount: 0, defectiveCount: 0, order: {},
                icount: 1, bqty: 0, sQuantity: 0, kgQty: 0, initialValue: 0, qqty: 0,
                ngStaid: 0, bufferData: '', dataToPrint: [], isLoading: false, but: false,
                DAA003List: [], lineList: [], isShow: false, barcodeIsShow: false, barcodeList: [],
                staffNo: '', printStr: '', printMac: '', bluetoothSocket: {}, device: '', uuid: '',
                printNum: 1, reportingList: [], printLoading: false, customAmount: '',
                isGeneratingBarcode: false, lastGenerateTime: 0, generateRequestId: null,
                nowTimeTimer: null, nowTime: '',
                userSearch: '',
                refreshTimer: null, // 新增:自动刷新定时器
                /* 新增:历史报工记录数组 */
                reportingHistory: []
            }
        },
        computed: {
            //良品数实时计算
            realTimeDefectiveCount() {
                // 优先用输入框的值,否则用接口数据
                const val = Number(this.customAmount);
                if (!isNaN(val) && this.customAmount !== '') return val;
                return this.calculatedDefectiveCount;
            },
            realTimeOkCount() {
                // 良品数 = 报工数(计算) - 不良数
                const total = (this.order.currentCjNum || 0) - (this.order.initCjNum || 0);
                return total - this.realTimeDefectiveCount;
            },
            calculatedCurrentCount() { return (this.productionCount || 0) - (this.initialValue || 0); },
            calculatedTotalProduction() { return (this.kgQty || 0); }, // 若需恢复旧逻辑可用 (this.kgQty||0)+this.calculatedCurrentCount
            calculatedDefectiveCount() { return this.calculatedTotalProduction - (this.sQuantity || 0); },
            planQtyDisplay() { return this.order.planQty || this.order.planQuantity || this.order.daa008 || 0; },
            staffDisplay() {
                if (!this.staffNo) return '';
                const segs = this.staffNo.split(':');
                return segs.length > 1 ? `${segs[0]} ${segs[1]}` : this.staffNo;
            },
            filteredUsers() {
                if (!this.userSearch) return this.users;
                const kw = this.userSearch.trim().toLowerCase();
                return this.users.filter(u => u.toLowerCase().includes(kw));
            }
        },
        created() {
            this.initializeData();
            this.fetchData(true);
            this.init();
            this.getXS0101();
            this.updateNowTime();
            // 秒级刷新;如不需动态跳秒可改为 60000
            this.nowTimeTimer = setInterval(this.updateNowTime, 1000);
 
            // 新增:每分钟自动刷新数据(60000毫秒 = 1分钟)
            this.startAutoRefresh();
        },
        beforeDestroy() {
            if (this.nowTimeTimer) clearInterval(this.nowTimeTimer);
            // 新增:清理自动刷新定时器
            this.stopAutoRefresh();
        },
        methods: {
            // 新增:开始自动刷新
            startAutoRefresh() {
                // 先清除可能存在的旧定时器
                this.stopAutoRefresh();
                // 设置新的定时器,每分钟执行一次
                this.refreshTimer = setInterval(() => {
                    console.log('自动刷新数据...');
                    this.refresh();
                }, 60000); // 60000毫秒 = 1分钟
            },
            // 新增:停止自动刷新
            stopAutoRefresh() {
                if (this.refreshTimer) {
                    clearInterval(this.refreshTimer);
                    this.refreshTimer = null;
                }
            },
 
            formatUser(u) {
                if (!u) return '';
                const segs = u.split(':');
                return segs.length > 1 ? `${segs[0]} ${segs[1]}` : u;
            },
            selectUser(u) { this.staffNo = u; this.isShowUserSelect = false; this.userSearch = ''; },
            /* 修改:增加秒 */
            updateNowTime() {
                const d = new Date(), p = n => n.toString().padStart(2, '0');
                this.nowTime = `${d.getFullYear()}-${p(d.getMonth() + 1)}-${p(d.getDate())} ${p(d.getHours())}:${p(d.getMinutes())}:${p(d.getSeconds())}`;
            },
            initializeData() {
                this.productionCount = this.printedCount = this.defectiveCount = 0;
                this.icount = 1; this.bqty = 0; this.sQuantity = 0; this.kgQty = 0;
                this.initialValue = 0; this.qqty = 0;
                this.isGeneratingBarcode = false; this.lastGenerateTime = 0; this.generateRequestId = null;
            },
            resetGenerateState() {
                this.isGeneratingBarcode = false; this.generateRequestId = null; this.lastGenerateTime = 0;
                this.$showMessage("已重置条码生成状态");
            },
            // 修改:在手动刷新时也重置自动刷新计时器
            refresh() {
                this.$sendPostRequest({
                    url: "http://192.168.0.94:9095/Numerical/RefreshDevBycl",
                    data: { machineNo: this.order.machineNo },
                    contentType: "application/json"
                }).then(r => {
                    if (r.code == 200) {
                        this.fetchData(true);
                        this.$showMessage("数据刷新成功");
                    } else {
                        this.$showMessage("同步失败");
                    }
                }).catch(error => {
                    console.error('刷新失败:', error);
                    this.$showMessage("刷新失败,请检查网络连接");
                });
            },
            onDaa003Change(v) {
                let o = this.lineList[this.DAA003List.indexOf(v)];
                this.orderId = o.id; this.orderNo = o.daa001;
                uni.setStorageSync('machine', this.machineNo);
                uni.setStorageSync('orderId', this.orderId);
                uni.setStorageSync('orderNo', this.orderNo);
                this.fetchData(false);
            },
            fetchData(flag) {
                if (!this.orderId && !this.orderNo) return;
                this.getOrderById();
                this.getWomdaaPrintById();
                this.getReportingHistory(); // 新增:每次刷新同步历史
                if (flag) {
                    this.$post({ url: "/Womdaa/GetWomdaasByShow", data: { machineNo: this.machineNo } })
                        .then(res => {
                            this.lineList = res.data.tbBillList;
                            this.DAA003List = res.data.tbBillList.map(i => i.daa003);
                        });
                }
            },
            /* 新增:获取历史报工记录 */
            /* 修改:规范历史时间到秒 */
            getReportingHistory() {
                if (!this.orderNo) { this.reportingHistory = []; return; }
                const fmtSec = v => {
                    if (!v) return '';
                    // 兼容后端可能返回的不同格式
                    const d = new Date(typeof v === 'string' ? v.replace(/-/g, '/') : v);
                    if (isNaN(d.getTime())) return v; // 无法解析则原样返回
                    const p = n => n.toString().padStart(2, '0');
                    return `${d.getFullYear()}-${p(d.getMonth() + 1)}-${p(d.getDate())} ${p(d.getHours())}:${p(d.getMinutes())}:${p(d.getSeconds())}`;
                };
                this.$post({
                    url: "/Womdaa/GetByBillNoBG",
                    data: { billNo: this.orderNo, machineNo: this.machineNo || null }
                }).then(res => {
                    const list = res?.data?.tbBillList || res?.data || [];
                    this.reportingHistory = list.map(r => {
                        // 依据你数据库字段做映射(下面字段名按常见命名举例,需要按实际改)
                        return {
                            bgDate: r.bgDate || '', // 报工时间
                            staff: (r.staffNo ? (r.staffNo + ' ' + (r.staffName || '')) : (r.staffName || '')),//报工人
                            orderNo: r.billNo,//工单号
                            machineNo: r.machineNo,//机台号
                            initialValue: r.csQty ?? 0,//初始采集数
                            productionCount: r.cjQty ?? 0,//报工时采集数
                            totalProduction: (r.cjQty - r.csQty) ?? 0,//报工数(计算)
                            BfQty: r.bfQty,//不良数
                            OkQty: r.okQty,//良品数(计算)
                            reportType:r.remark //报工类型
                        }
                    });
                }).catch(() => { this.reportingHistory = []; });
            },
            toggleUser(u) {
                if (!u) return;
                this.user = this.user === u ? null : u;
                this.staffNo = this.user;
            },
            //选择报工人
            confirmCustomAmount() {
                if (!this.customAmount || isNaN(Number(this.customAmount))) { this.$showMessage('请输入有效的数量'); return; }
                if (!this.staffNo) { this.$showMessage('请选择报工人'); return; }
                const staffNo = this.staffNo.split(':')[0];
                const amount = Number(this.customAmount);
                this.$post({
                    url: "/MesInvItemBarcodes/AddBFToBarcodes",
                    data: {
                        orderNo: this.orderNo,
                        orderId: this.orderId,
                        bf: amount,
                        staffNo: staffNo,
                        initCjNum: this.order.initCjNum,        // 初始采集数
                        currentCjNum: this.order.currentCjNum   // 报工时采集数
                    }
                }).then(res => {
                    if (res.status == 1) { this.$showMessage(res.message); return; }
                    this.$showMessage('报废数量填写成功');
                    this.fetchData(true); // 自动刷新历史
                    this.customAmount = '';
                }).catch(() => this.$showMessage('报废数量填写失败,请重试'));
            },
            // 新增:调机报工
            confirmTiaojiBaogong() {
                if (!this.customAmount || isNaN(Number(this.customAmount))) { this.$showMessage('请输入有效的数量'); return; }
                if (!this.staffNo) { this.$showMessage('请选择报工人'); return; }
                const staffNo = this.staffNo.split(':')[0];
                const amount = Number(this.customAmount);
                this.$post({
                    url: "/MesInvItemBarcodes/AddBFToBarcodes", // 如有调机专用接口请替换
                    data: {
                        orderNo: this.orderNo,
                        orderId: this.orderId,
                        bf: amount,
                        staffNo: staffNo,
                        initCjNum: this.order.initCjNum,
                        currentCjNum: this.order.currentCjNum,
                        type: 'tiaoji' // 可加区分字段,后端如需区分调机报工
                    }
                }).then(res => {
                    if (res.status == 1) { this.$showMessage(res.message); return; }
                    this.$showMessage('调机报工成功');
                    this.fetchData(true);
                    this.customAmount = '';
                }).catch(() => this.$showMessage('调机报工失败,请重试'));
            },
            save() {
                if (!this.staffNo) { this.$showMessage('请选择报工人'); return; }
                uni.showToast({ title: '保存成功', icon: 'success' });
                this.getReportingHistory(); // 保存后也可刷新
            },
            cancel() { uni.showToast({ title: '取消操作', icon: 'none' }); },
            getOrderById() {
                this.$post({ url: "/Womdaa/GetWomdaaById", data: { orderId: this.orderId, orderNo: this.orderNo } })
                    .then(res => {
                        this.order = res.data.tbBillList;
                        this.printedCount = res.data.tbBillList.bgqty || 0;
                        this.defectiveCount = res.data.tbBillList.blQty || 0;
                        this.productionCount = this.order.todayOutput || 0;
                    });
            },
            getXS0101() {
                this.$post({ url: "/MesStaff/GetAllXS0101" })
                    .then(res => {
                        this.staff = res.data.tbBillList;
                        this.users = this.staff.map(s => s.staffNo + ":" + s.staffName);
                    });
            },
            getWomdaaPrintById() {
                this.$post({ url: "/Womdaa/GetWomdaaPrintById", data: { orderId: this.orderId } })
                    .then(res => {
                        if (!res?.data?.tbBillList) return;
                        const d = res.data.tbBillList;
                        this.bqty = d.bqty;
                        this.icount = 1;
                        this.sQuantity = d.sQuantity || 0;
                        this.initialValue = d.initialValue || 0;
                        this.kgQty = d.kgQty || 0;
                        this.barcodeAmount = d.qqty || 0;
                        if (this.bqty === 0) this.Completed();
                    }).catch(() => { });
            },
            Completed() {
                this.$post({ url: "/MesOrderSta/Completed", data: { orderId: this.orderId, orderNo: this.orderNo } });
            },
            init() {
                try {
                    const v = this.getAndroidVersion();
                    v >= 12 ? this.initForAndroid12Plus() : this.initForAndroidLegacy();
                } catch (e) { console.error(e); }
            },
            getAndroidVersion() {
                try { var Build = plus.android.importClass("android.os.Build"); return Build.VERSION.SDK_INT; }
                catch { return 30; }
            },
            initForAndroid12Plus() {
                try {
                    var main = plus.android.runtimeMainActivity();
                    var BluetoothManager = plus.android.importClass("android.bluetooth.BluetoothManager");
                    var Context = plus.android.importClass("android.content.Context");
                    var UUID = plus.android.importClass("java.util.UUID");
                    this.uuid = UUID.fromString("00001101-0000-1000-8000-00805F9B34FB");
                    var mgr = main.getSystemService(Context.BLUETOOTH_SERVICE);
                    var adp = mgr.getAdapter();
                    if (adp && adp.isDiscovering()) adp.cancelDiscovery();
                    this.printMac = uni.getStorageSync('printMac');
                    var mac = this.printMac || "DC:1D:30:91:06:52";
                    if (adp) {
                        this.device = adp.getRemoteDevice(mac);
                        plus.android.importClass(this.device);
                    }
                } catch (e) { this.initForAndroidLegacy(); }
            },
            initForAndroidLegacy() {
                try {
                    var BluetoothAdapter = plus.android.importClass("android.bluetooth.BluetoothAdapter");
                    var UUID = plus.android.importClass("java.util.UUID");
                    this.uuid = UUID.fromString("00001101-0000-1000-8000-00805F9B34FB");
                    var BAdapter = BluetoothAdapter.getDefaultAdapter();
                    if (BAdapter) BAdapter.cancelDiscovery();
                    this.printMac = uni.getStorageSync('printMac');
                    var mac = this.printMac || "DC:1D:30:91:06:52";
                    if (BAdapter) {
                        this.device = BAdapter.getRemoteDevice(mac);
                        plus.android.importClass(this.device);
                        this.bluetoothSocket = this.device.createInsecureRfcommSocketToServiceRecord(this.uuid);
                        plus.android.importClass(this.bluetoothSocket);
                    }
                } catch (e) { }
            },
            deleteBarcode() {
                this.isShow = false;
                this.isGeneratingBarcode = false;
                this.generateRequestId = null;
                this.bufferData = ''; this.dataToPrint = [];
                this.staffNo = null; this.user = ''; this.barcodeAmount = ''; this.icount = 1; this.staff = null;
            }
        }
    }
</script>
 
<style scoped>
    .section-title {
        font-size: 20px;
        font-weight: bold;
        margin: 18px 0 8px 0;
        color: #fff;
        background: #007aff;
        padding: 8px 18px;
        border-radius: 8px 8px 0 0;
        display: inline-block;
    }
 
    .history-title {
        background: #555;
    }
 
    .highlight-row {
        background: #ffe9b3 !important;
        font-weight: bold;
    }
 
    .report-table .summary-row {
        background: #f0f8ff;
        font-weight: 600;
    }
 
    .report-table .no-data {
        text-align: center;
        color: #777;
        font-size: 14px;
    }
 
    .report-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
    }
 
    .header-buttons {
        display: flex;
        align-items: center;
        gap: 12px;
    }
 
    .refresh-btn-header {
        background: #00A2E9;
        color: #fff;
        border: none;
        font-size: 16px;
        border-radius: 8px;
        padding: 8px 20px;
        transition: background 0.15s;
    }
 
        .refresh-btn-header:hover {
            background: #0086c0;
        }
 
    .reset-btn-header {
        background: #ff6b6b;
        color: #fff;
        border: none;
        font-size: 14px;
        border-radius: 8px;
        padding: 8px 16px;
        transition: background 0.15s;
    }
 
        .reset-btn-header:hover {
            background: #e94d4d;
        }
 
    .page {
        padding: 1.2vh 2vw;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
    }
 
    .wide-layout {
        max-width: none;
        width: 100%;
    }
 
    .page.has-overlay .status-section > :not(.overlay) {
        pointer-events: none;
    }
 
    .page.has-overlay .status-section > .overlay {
        pointer-events: auto;
    }
 
    .report-table-wrapper {
        width: 100%;
        max-width: none;
    }
 
    .table-scroll {
        width: 100%;
        overflow-x: scroll !important;
        min-height: 40px;
    }
 
    .report-title {
        font-size: 32px;
        font-weight: 600;
        text-align: center;
        margin: 0;
    }
 
    /* 2. 区块标题 */
    .section-title, .history-title {
        font-size: 26px;
    }
 
    /* 3. 表格字体 */
    .report-table, .report-table th, .report-table td {
        font-size: 22px;
    }
 
    /* 4. 当前报工人、不良数量等输入区 */
    .current-user-section,
    .defective-section,
    .submit-section {
        font-size: 30px;
    }
 
    /* 5. 输入框字体 */
    .inp, .bad-input {
        font-size: 28px;
    }
 
    /* 6. 按钮字体 */
    .details-btn,
    .select-user-btn,
    .refresh-btn-header,
    .reset-btn-header {
        font-size: 22px;
    }
 
    .report-table {
        width: 100%;
        min-width: 1800px;
        border-collapse: collapse;
        background: #fff;
    }
 
        .report-table th, .report-table td {
            border: 1px solid #555;
            padding: 6px 8px;
            text-align: center;
            white-space: normal; /*允许换行*/
            word-break: break-all; /*长单词 /数字也换行*/
        }
 
    .status-section {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
 
    .status-row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
        background: #f9f9f9;
        padding: 10px 14px;
        border-radius: 8px;
        box-shadow: 0 1px 4px rgba(0,0,0,.06);
    }
 
    .status-box {
        display: flex;
        align-items: center;
    }
 
    .result-box {
        background: #f0f8ff;
        padding: 4px 12px;
        border-radius: 6px;
        border-left: 5px solid #007aff;
    }
 
    input.highlight {
        width: 9vw;
        min-width: 110px;
        font-weight: 600;
        border: none;
        background: #fff;
        text-align: center;
        font-size: 18px;
        padding: 6px 0;
        border-radius: 6px;
        box-shadow: inset 0 1px 3px rgba(0,0,0,.12);
    }
 
    .operator-box {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 28px;
        font-weight: bold;
        color: #007aff;
        margin: 0 6px;
    }
 
    .btn-group {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 12px;
    }
 
    .refresh-btn-inline, .reset-btn-inline {
        transition: .15s;
    }
 
    .refresh-btn-inline {
        background: #00A2E9;
        color: #fff;
        font-size: 18px;
        border-radius: 10px;
        padding: 8px 30px;
        border: none;
    }
 
        .refresh-btn-inline:hover {
            background: #0086c0;
        }
 
    .reset-btn-inline {
        background: #ff6b6b;
        color: #fff;
        font-size: 16px;
        border-radius: 10px;
        padding: 8px 18px;
        border: none;
    }
 
        .reset-btn-inline:hover {
            background: #e94d4d;
        }
 
    .flex-row {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        align-items: stretch;
    }
 
    .flex-grow {
        flex: 1 1 540px;
    }
 
    .gap-lg {
        gap: 30px;
    }
 
    /* 不良数量区域 */
    .defective-section {
        display: flex;
        align-items: center;
        gap: 14px;
        font-size: 36px; /* 从32px改为36px */
        font-weight: bold; /* 可选:加粗字体 */
    }
 
    .submit-section {
        display: flex;
        align-items: center;
    }
 
    .inp {
        padding: 8px;
        font-size: 16px;
        border: 1px solid #808080;
        border-radius: 8px;
        box-sizing: border-box;
    }
 
    /* 不良数量输入框 */
    .bad-input {
        width: 320px;
        max-width: 100%;
        height: 66px;
        border: 3px solid #808080;
        font-size: 42px;
        text-align: center;
    }
 
    /* 确认提交按钮*/
    .details-btn {
        padding: 12px 34px;
        background: #00a2e9;
        color: #fff;
        font-size: 32px;
        border: none;
        cursor: pointer;
        border-radius: 12px;
    }
 
        .details-btn:hover {
            background: #008ac2;
        }
 
    .current-user-section {
        display: flex;
        align-items: center;
        font-size: 32px;
        border: 1.5px solid #f00;
        border-radius: 10px;
        padding: 14px 22px;
        background: #fff;
        gap: 14px;
        flex: 0 0 auto;
    }
 
    .current-user-name {
        font-weight: bold;
        font-size: 32px;
    }
 
    /* 选人按钮 - 蓝色主题 */
    .select-user-btn {
        background: #00a2e9; /* 与提交按钮相同的蓝色 */
        color: #fff; /* 白色文字 */
        border: none; /* 移除边框 */
        padding: 12px 22px; /* 调整内边距与提交按钮协调 */
        border-radius: 12px; /* 与提交按钮相同的圆角 */
        font-size: 32px; /* 保持字体大小 */
        cursor: pointer;
        transition: background 0.15s; /* 添加过渡效果 */
    }
 
        .select-user-btn:hover {
            background: #008ac2;
        }
 
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,.45);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }
 
    .popup {
        background: #fff;
        padding: 2vh;
        border: 1px solid #ccc;
        box-shadow: 0 0 14px rgba(0,0,0,.12);
        width: 72vw;
        max-width: 1400px;
        height: 70vh;
        font-size: 1.4vw;
        max-height: 80vh;
        overflow-y: auto;
        border-radius: 12px;
        z-index: 1001;
    }
 
    /* 选人弹窗更宽,名字更大,关闭按钮更小 */
    .user-select-popup {
        width: 1600px;
        max-width: 99vw;
        min-width: 1000px;
        height: auto;
        min-height: 520px;
        padding: 0;
        display: flex;
        flex-direction: column;
        font-size: 32px;
    }
 
    .user-search-bar {
        display: flex;
        align-items: center;
        gap: 18px;
        padding: 24px 64px 0 64px;
        background: #fff;
        flex-wrap: wrap;
    }
 
    .user-search-input {
        flex: 1 1 260px;
        padding: 16px 20px;
        font-size: 28px;
        border: 1px solid #bbb;
        border-radius: 8px;
        outline: none;
        height: 54px;
    }
 
        .user-search-input:focus {
            border-color: #007aff;
            box-shadow: 0 0 0 2px rgba(0,122,255,.15);
        }
 
    .user-search-clear {
        padding: 12px 28px;
        background: #ff9f43;
        color: #fff;
        border: none;
        border-radius: 8px;
        font-size: 24px;
        cursor: pointer;
    }
 
        .user-search-clear:hover {
            background: #ff8920;
        }
 
    .user-search-info {
        font-size: 22px;
        color: #555;
    }
 
    .user-list-scroll {
        flex: 1 1 auto;
        overflow-y: auto;
        padding: 32px 64px 0 64px;
    }
 
    .user-list-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
        gap: 22px 22px;
    }
 
    .user-list-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2px; /* 原8px,减小行间距 */
        padding: 10px 10px; /* 适当减小上下内边距 */
        height: 100px; /* 可适当减小高度 */
        font-size: 30px;
        background: #00a2e9;
        color: #fff;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        box-sizing: border-box;
        word-break: break-word;
    }
 
        .user-list-btn .user-code {
            font-weight: 700;
            font-size: 36px;
            line-height: 1.1; /* 紧凑一点 */
        }
 
        .user-list-btn .user-name {
            font-size: 32px;
            line-height: 1.1; /* 紧凑一点 */
        }
 
        .user-list-btn.selected {
            background: #0072c9;
            box-shadow: 0 0 0 3px rgba(255,255,255,.6) inset;
        }
 
        .user-list-btn:hover {
            background: #008ed0;
        }
 
    .no-user-result {
        padding: 40px 0;
        text-align: center;
        font-size: 28px;
        color: #666;
    }
 
    .user-popup-footer {
        flex-shrink: 0;
        padding: 24px 64px 32px 64px;
        background: #fff;
        text-align: center;
    }
 
    .clean-btn {
        width: 24%;
        padding: 10px 0;
        color: #fff;
        font-size: 20px;
        border: none;
        text-align: center;
        cursor: pointer;
        border-radius: 0.6vw;
        background: #007aff;
    }
 
        .clean-btn.wide-btn {
            width: 30%;
            font-size: 22px;
            padding: 12px 0;
        }
 
        .clean-btn:hover {
            background: #0062c9;
        }
 
    .reason-section {
        margin: 14px 0 18px;
    }
 
    .reason-buttons {
        display: grid;
        grid-template-columns: repeat(5,1fr);
        gap: 12px;
    }
 
    .reason-btn {
        padding: 10px 6px;
        background: #808080;
        color: #fff;
        font-size: 14px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
    }
 
        .reason-btn.selected {
            background: #FFD700;
            color: #000;
        }
 
    .bottom-section {
        display: flex;
        justify-content: space-between;
        margin-top: 16px;
        gap: 16px;
    }
 
    .save-btn, .cancel-btn {
        flex: 1;
        padding: 16px 0;
        background: #00A2E9;
        color: #fff;
        font-size: 20px;
        border: none;
        border-radius: 10px;
    }
 
        .save-btn:hover, .cancel-btn:hover {
            background: #0086c0;
        }
 
    .table1 {
        width: 100%;
        border-spacing: 3px;
    }
 
    /* 历史报工记录表头固定 */
    .history-table-scroll thead tr th {
        position: sticky;
        top: 0;
        z-index: 2;
        background: #fff;
        box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    }
 
    @media (max-width:1400px) {
        input.highlight {
            font-size: 16px;
        }
 
        .user-list-btn {
            height: 70px;
            font-size: 18px;
        }
 
            .user-list-btn .user-code {
                font-size: 18px;
            }
 
            .user-list-btn .user-name {
                font-size: 16px;
            }
 
        .reason-btn {
            font-size: 12px;
        }
 
        .refresh-btn-header {
            font-size: 14px;
            padding: 6px 16px;
        }
 
        .reset-btn-header {
            font-size: 12px;
            padding: 6px 12px;
        }
    }
</style>