yangan
2024-09-27 c612912d4132e4d7b4a58279071fac837891c381
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
<template>
    <view class="main">
        <!-- 当前选择仓库 -->
        <view class="top-tag">
            <text style="margin-right:20rpx">点击切换/选择仓库</text>
            <u-tag 
            size='large'
            icon='map'
            :text="dataForm.firstClass ? dataForm.firstClass : '请选择仓库'"
            @click="firstClassSelect"
            ></u-tag>
        </view>
        <!-- 点击查看原盐钙镁 -->
        
            <view class="self-deliver">
                    <view class="self-deliver_text">
                        查看原盐钙镁结果
                    </view>
                    <view class="self-deliver_btn">
                        <u-button text="查看"
                            type="primary"
                            shape="cirle"
                            @click="todoDetail"></u-button>
                    </view>
                </view>
                <view 
                v-if="messageObj.carNo"
            class="notice-bar"><u-notice-bar :text="messageText"
             :fontSize="30" :showIcon = 'true'
             ></u-notice-bar></view>
        <!-- <u--form labelPosition="top"
            labelWidth="20%"
            :borderBottom="false"
            :model="dataForm"
            ref="uForm">
            <u-form-item label="仓库"
                prop="firstClass"
                :borderBottom="false">
                <u-cell-group>
                    <u-cell :title="dataForm.firstClass"
                        value="请选择"
                        @click="firstClassSelect">
                        <u-icon name="arrow-right"
                            slot="right-icon"
                            size="30"></u-icon></u-cell>
                </u-cell-group>
            </u-form-item>
 
        </u--form> -->
         
        <!-- <view style="margin-top: 20rpx;">
            <u-button type="primary"
                shape="circle"
                text="查看该仓库收发单"
                @click.stop="formHandle"></u-button>
        </view> -->
        <!-- 场地 -->
        
        <view class='div-box'>
            <!-- 渲染区域 -->
            <u-collapse
                    :value='["1"]'
                    ref="myCollapse"
                    >
                     <u-collapse-item
                     name='1'
                      ref="collapseHeight"
                    class="collItem"
                    :title="'待装卸收发单'">    
                    <view class="history-information"  
                      @click="viewDetail(item)"
                        v-for="item,i in detailData"         
            :key="i">
                            <view class="first">
                                <view class="">{{ item.carNo || '' }}</view>
                                <view class=""></view>
                            </view>
                            <view class="second">
                                <view class="coal-name">{{ item.productNames?limitString(item.productNames,20,'...'):'' || ''}}</view>
                                <view class="order-type">{{ item.orderType || '' }}</view>
                            </view>
                            <view class="third">
                                <view class="third-line">
                                    <view class="third-line_text">客户名称:</view>
                                    <view>{{ item.customerName }}</view>
                                </view>
                                    <view class="third-line" v-if="/聚氯乙烯树脂/.test(item.productName)">
                                    <view class="third-line_text">包装类型:</view>
                                    <view>{{ proType[item.packingType] }}</view>
                                </view>
                                <view class="third-line"  v-if="item.productName === '二氯乙烷(EDC)'">
                                    <view class="third-line_text">质检状态:</view>
                                    <view> <u-tag :text="checkStatusList[item.checkStatus]" plain > </u-tag></view>
                                </view>
                            </view>
                            <view class="fourth">
                                <view class="fourth-icon">
                                    <view
                                        style="width: 24rpx;height: 24rpx;line-height: 24rpx;background: url('https://wrzs.czjlchem.com:9090/appimg/image/banner/clock.png') no-repeat;background-size: cover">
                                    </view>
                                </view>
                                <view class="senddate">{{ item.sendDate }}</view>
                            </view>
                            <view class="fourth">
                                <view class="fourth-icon">
                                    <view
                                        style="width: 26rpx;height: 26rpx;line-height: 26rpx;background: url('https://wrzs.czjlchem.com:9090/appimg/image/banner/carnNUm.png') no-repeat;background-size: cover;">
                                    </view>
                                </view>
                                <view class="senddate">{{ item.orderCode }}</view>
                            </view>
                                                 <view class="table">
            <uni-table border stripe 
            emptyText="暂无更多数据">
                    <uni-tr>
                        <uni-th width='120'
                        align="center">操作</uni-th>
                        <uni-th align="center" width='800'>产品</uni-th>
                            <uni-th align="center" width='110'>等级</uni-th>
                         <uni-th align="center" width='110'>包装</uni-th>
                        <!-- <uni-th align="center" width='200'>仓库</uni-th>
                        <uni-th align="center" width='100'>皮重</uni-th>
                        <uni-th align="center" width='100'>毛重</uni-th>
                        <uni-th align="center" width='100'>净重</uni-th>
                        <uni-th align="center" width='100'>数量</uni-th> -->
                        <uni-th align="center"  width='120'>计划量</uni-th> 
                         <!-- <uni-th align="center"  width='100'>实际量</uni-th>  -->
                        
                    </uni-tr>
                    <uni-tr v-for="(subItem, index) in item.tmTaskCoalList" :key="index">
                         <uni-td  align="center">
                    <view class="btnBox"> 
                        <!--   -->
                        <!-- <u-button   text='查看'  @click="viewDetail(subItem)"></u-button> -->
                        <u-button type='primary' text='确认装卸'  size='mini' v-if="subItem.flag && isBtnShow(item)" @click.native.stop="enterOk(item,subItem)"></u-button>
                        </view></uni-td>
                        <uni-td align="left">
                            <view>{{ subItem.productName }}</view></uni-td>
                            <uni-td align="center">
                            <view>{{ subItem.productGrade }}</view></uni-td>
                            <uni-td align="center">
                        <view>{{ proType[item.packingType] }}</view>
                    </uni-td>
                    <!-- <uni-td>
                        <view>{{ subItem.bunkerName }}</view>
                    </uni-td>  
                    <uni-td>
                        <view class="name" v-if="subItem.skin">{{ Number(subItem.skin).toFixed(2) || ''  }}</view>
                    </uni-td>
                    <uni-td>
                        <view class="name" v-if="subItem.hair"> {{  Number(subItem.hair).toFixed(2) || ''  }}</view>
                    </uni-td>
                        <uni-td>
                        <view class="name" v-if="(subItem.clean || (subItem.clean && subItem.clean === 0))">{{ Number(subItem.clean).toFixed(2) || ''}}</view>
                    </uni-td>
                    <uni-td>
                        <view class="name">{{ subItem.productQuantity }}</view>
                    </uni-td> -->
                    <uni-td align="right">
                        <view class="name">{{ subItem.planMeasure }}</view>
                    </uni-td>
                    <!-- <uni-td>
                        <view class="name">{{ subItem.realityMeasure }}</view>
                    </uni-td> -->
<!--                     
                    <uni-td align="center">
                    <view>{{ subItem.bunkerName }}</view></uni-td> -->
                      <!-- <uni-td align="center">
                    <view  class="name">{{ subItem.statusView }}</view></uni-td> -->
                     
                </uni-tr>
                </uni-table>
         </view>
                    </view>
                         
                        <u-empty mode="data"
                            icon="http://cdn.uviewui.com/uview/empty/data.png"
                            text="暂无数据"
                            textSize="30"
                            iconSize="1000"
                            v-if="detailData.length===0"></u-empty>
                     </u-collapse-item>
            </u-collapse>
        </view>
        <!-- 已装卸收发单 -->
        <view class='div-box'>
            <!-- 渲染区域 -->
            <u-collapse
 
                    ref="myCollapse"
                    >
                     <u-collapse-item
                     name='1'
                      
                    class="collItem"
                    :title="'已装卸收发单'">    
                    <view class="history-information"     v-for="item,i in historyData"         
            :key="i">
                            <view class="first">
                                <view class="">装卸日期: {{ item.sendDate || '' }}</view>
                                <view class=""></view>
                            </view>
                            <view class="second">
                                <view class="coal-name">{{ item.productNames || item.productName }}</view>
                                <view class="order-type">{{ item.orderType || '' }}</view>
                            </view>
                            <view class="third">
                                <view class="third-line">
                                    <view class="third-line_text">客户名称:</view>
                                    <view>{{ item.customerName }}</view>
                                </view>
                                    <view class="third-line" v-if="/聚氯乙烯树脂/.test(item.productName)">
                                    <view class="third-line_text">包装类型:</view>
                                    <view>{{ proType[item.packingType] }}</view>
                                </view>
                                <view class="third-line"  v-if="item.productName === '二氯乙烷(EDC)'">
                                    <view class="third-line_text">质检状态:</view>
                                    <view> <u-tag :text="checkStatusList[item.checkStatus]" plain > </u-tag></view>
                                </view>
                            </view>
                            <view class="fourth">
                                
                                    <view
                                        style="height: 24rpx">
                                        
                                    </view>
                            
                                <view class="senddate">{{ item.carNo }}</view>
                            </view>
                            <view class="fourth">
                                <view class="fourth-icon">
                                    <view
                                        style="width: 26rpx;height: 26rpx;line-height: 26rpx;background: url('https://wrzs.czjlchem.com:9090/appimg/image/banner/carnNUm.png') no-repeat;background-size: cover;">
                                    </view>
                                </view>
                                <view class="senddate">{{ item.orderCode }}</view>
                            </view>
                                                 <view class="table">
            <uni-table border stripe 
            emptyText="暂无更多数据">
                    <uni-tr>
                        <uni-th width='120'
                        align="center">操作</uni-th>
                        <uni-th align="center" width='800'>产品</uni-th>
                            <uni-th align="center" width='90'>等级</uni-th>
                         <uni-th align="center" width='90'>包装</uni-th>
                        <!-- <uni-th align="center" width='200'>仓库</uni-th>
                        <uni-th align="center" width='100'>皮重</uni-th>
                        <uni-th align="center" width='100'>毛重</uni-th>
                        <uni-th align="center" width='100'>净重</uni-th>
                        <uni-th align="center" width='100'>数量</uni-th> -->
                        <uni-th align="center"  width='100'>计划量</uni-th> 
                         <!-- <uni-th align="center"  width='100'>实际量</uni-th>  -->
                        
                    </uni-tr>
                    <uni-tr v-for="(subItem, index) in item.tmTaskCoalList" :key="index">
                         <uni-td  align="center">
                    <view class="btnBox"> 
                        <!--   -->
                        <u-button type='primary' text='拼单' size='mini'  v-if="isPinShow(item)" @click="pinDan(subItem)"></u-button>
                        </view></uni-td>
                        <uni-td w align="center">
                            <view>{{ subItem.productName }}</view></uni-td>
                            <uni-td align="center">
                            <view>{{ subItem.productGrade }}</view></uni-td>
                            <uni-td>
                        <view>{{ proType[item.packingType] }}</view>
                    </uni-td>
                    <!-- <uni-td>
                        <view>{{ subItem.bunkerName }}</view>
                    </uni-td>
                    <uni-td>
                        <view class="name" v-if="subItem.skin">{{ Number(subItem.skin).toFixed(2) || ''  }}</view>
                    </uni-td>
                    <uni-td>
                        <view class="name" v-if="subItem.hair"> {{  Number(subItem.hair).toFixed(2) || ''  }}</view>
                    </uni-td>
                        <uni-td>
                        <view class="name" v-if="(subItem.clean || (subItem.clean && subItem.clean === 0))">{{ Number(subItem.clean).toFixed(2) || ''}}</view>
                    </uni-td>
                    <uni-td>
                        <view class="name">{{ subItem.productQuantity }}</view>
                    </uni-td> -->
                    <uni-td>
                        <view class="name">{{ subItem.planMeasure }}</view>
                    </uni-td>
<!--                     
                    <uni-td align="center">
                    <view>{{ subItem.bunkerName }}</view></uni-td> -->
                      <!-- <uni-td align="center">
                    <view  class="name">{{ subItem.statusView }}</view></uni-td> -->
                     
                </uni-tr>
                </uni-table>
         </view>
                    </view>
                         
                        <u-empty mode="data"
                            icon="http://cdn.uviewui.com/uview/empty/data.png"
                            text="暂无数据"
                            textSize="30"
                            iconSize="1000"
                            v-if="detailData.length===0"></u-empty>
                     </u-collapse-item>
            </u-collapse>
        </view>
        <u-action-sheet :actions="firstClassActionsList"
            :show="firstClassShow"
            cancelText='取消'
            :closeOnClickOverlay='true'
            @close='firstClassClose'
            @select="firstClassSelectClick"></u-action-sheet>
            <u-modal :show="enterZx"
                :title="'确认装卸'"
                @close="closeModal"
                :width='740'
                @cancel="cancelModal"
                @confirm="confirmModal"
                :closeOnClickOverlay="true"
                :showCancelButton="true">
                <view class="slot-content">
                    <view v-if="isNumOk || isClean||isFlagNum">
                        <view>产品名称:{{activeObj.productName}}</view>
                        <view>仓库:{{activeObj.bunkerName}}</view>
                        <view v-if="activeObj.isWeight === 1">
                        <view v-if="activeObj.skin">皮重:{{activeObj.skin.toFixed(2) || ''}}</view>
                        <view v-if="activeObj.hair">毛重:{{activeObj.hair.toFixed(2) || ''}}</view>
                        </view>
                        <view v-if="/聚氯乙烯树脂/.test(activeObj.productName)">
                            <view>计划量:{{Number(activeObj.planMeasure)}}</view>
                            <view >实际量:{{ Number(activeObj.realityMeasure)}}</view>
                        </view>
                        <view class="queren" v-show="isCleanFlag === '1'">
                            <text>请输入</text>:
                              <u--input
                                 type='digit'
                                 border="bottom"
                                :placeholder="/聚氯乙烯树脂/.test(activeObj.productName) ? '实际吨数' :  isNumOk ?  '数量' :'折吨'"
                                v-model="checkNum"
                            >
                            </u--input>
                            <text> {{isNumOk ? activeObj.productUnit : '吨' }}</text>
                            </view>
                            <!-- 是否输入折吨 -->
                             <view style="display:flex;margin-top:20rpx" v-if="isClean">是否需要折吨: <u-radio-group
                                v-model="isCleanFlag"
                                 placement="row"
                                 @change="isCleanChange"
                                 iconPlacement="right"
                                 style="justify-content: space-evenly"
                            >
                                <u-radio
                                :key="1"
                                :label="'是'"
                                :name="'1'"
                                shape="circle"
                                iconSize="32"
                                label-size="32"
                                size="40"
                                >
                                </u-radio>
                                <u-radio
                                :key="0"
                                :label="'否'"
                                :name="'0'"
                                shape="circle"
                                iconSize="32"
                                label-size="32"
                                size="40"
                                >
                                </u-radio>
                            </u-radio-group></view>
                            <!-- 聚氯乙烯树脂 并且是大包 -->
                            <view class="pvcBig" v-if="activeObj.productName === '聚氯乙烯树脂' && activeObj.packingType === 5">
                                
                            </view>
                            <view v-if="isNumOk && activeObj.productQuantity">当前数量:{{activeObj.productQuantity}}{{ activeObj.productUnit || '件' }}</view>
                            <view v-if="activeObj.containerNumber"><span>集装箱号:</span>{{activeObj.containerNumber}}</view>
                            
                    </view>
                            <view style="display:flex;margin-top:20rpx">是否空车出厂: <u-radio-group
                                v-model="isEmptyCar"
                                 placement="row"
                                 iconPlacement="right"
                                 style="justify-content: space-evenly"
                            >
                                <u-radio
                                :key="1"
                                :label="'是'"
                                :name="'1'"
                                shape="circle"
                                iconSize="32"
                                label-size="32"
                                size="40"
                                >
                                </u-radio>
                                <u-radio
                                :key="0"
                                :label="'否'"
                                :name="'0'"
                                shape="circle"
                                iconSize="32"
                                label-size="32"
                                size="40"
                                >
                                </u-radio>
                            </u-radio-group></view>
                </view>
            </u-modal>
        <!-- 仓库 -->
        <!-- <u-action-sheet :actions="secondClassActionsList"
            :show="secondClassShow"
            cancelText='取消'
            :closeOnClickOverlay='true'
            @close='secondClassClose'
            @select="secondClassSelectClick"></u-action-sheet> -->
        <!--磅单类型 -->
        <!-- <u-action-sheet :actions="orderTypeList"
            :show="orderTypeShow"
            cancelText='取消'
            :closeOnClickOverlay='true'
            @close='orderTypeClose'
            @select="orderTypeSelectClick"></u-action-sheet> -->
    </view>
</template>
 
<script>
    import { mapState, mapMutations, mapGetters } from 'vuex';
    import combinedTitle from '@/components/combined-title/combined-title.vue';
    export default {
        props: {
            loadUnloadData: {
                type: Object,
                default: {}
            }
        },
        computed:{
            isBtnShow(){
                return function(item){
                    if(!item){
                        return false
                    }else{
                        if(this.errorStatusList.includes(item.status)){
                            return false
                        }else if (item.productName ==='二氯乙烷(EDC)' && item.checkStatus !== 7){
                            return false;
                        }else{
                            return true;
                        }
                    }
                    
                }
 
            },
            isPinShow(){
                return function(item){
                    if(!item){
                        return false
                    }else{
                        if(    !item.orderType === '外销' || item.status === 6){
                            return false
                        }else{
                            return true;
                        }
                    }
                    
                }
            },
            messageText(){
                if(this.messageObj.carNo){
                    return `时间:${this.messageObj.now},${this.messageObj.carNo},产品${this.messageObj.productNames}在${this.messageObj.bunkerName}入场了,请及时检查!`
                }else{
                    return '暂无消息'
                }
 
            },
              ...mapGetters(['websocketData'])
        
        },
        watch: {
            loadUnloadData: {
                handler(v) {
                    console.log(v,'vvvvvv')
                    this.loadUnloadData = v;
                    this.getTodayOrder();
                },
                deep: true,
                immediate: true
            },
            //监听消息
            'websocketData': {
        handler(v) {
          console.log(v, '接受的ws数据');
          if(v) {
            if (v.startsWith('kgTipHead')) {
                console.log('vvvvv',v.slice(11))
               let nowWeighObj = JSON.parse(v.slice(11));
               console.log(nowWeighObj,'nowWeight');
               this.messageObj = nowWeighObj;
            //   this.messageList = JSON.parse(v.slice(5));
            //   this.messageList = {
            //     ...this.messageList,
            //     title: this.messageList.title.slice(0, 8) + '...',
            //     content: removeTags(this.messageList.content).trim().slice(0, 8) + '...'
            //   }
            //   this.messagePushShow = true;
            } 
          }
        },
        deep: true,
        immediate: true
            }
        },
        data() {
            return {
                proType:['散装','液氯瓶装','罐装','PVC25','PVC80','PVC1150','PVc1200'],
                coalStatus: ['领取', '预约', '签到', '入场', '称皮', '称毛', '离场', '入磅房', '出磅房', '入仓库', '出仓库', '放空', '作废', '入场申请',
                    '进入场院', '异常审核中', '返回加减吨', '超时', '打印中', '打印中', '填写', '放空确认中', '超最大毛重确认中','补打','入场检查','质检中',
                    '离场检查','已打印','装卸','返回加减吨确认中'
                ],
                isCleanFlag:'1',
                dataForm: {
                    firstClass: "",
                    secondClass: "",
                    orderType: '',
                    bunkerIds:""
                },
                historyData:[], 
                messageObj:{
                    carNo:'',
                },
                isEmptyCar:null, //是否空车出厂
                checkStatusList:[
                    '待取样','已取样','质检中','待复核','复核中','待审定','审定中','已完成'
                ],
                index: '',
                enterZx:false,
                typeText:'', // 确认装卸三种类型
                isNumOk:false, //计件
                isClean:false, // 折吨   
                isFlagNum:false,// PVCV
                // 场地操作菜单
                firstClassActionsList: [],
                firstClassShow: false,
                // 仓库操作菜单
                secondClassActionsList: [],
                secondClassShow: false,
                coalList: [],
                checkedCoal: [],
                checkNum:'',
                activeObj:{},
                userInfo: {},
                detailData:[],
                filedId: "",
                selectedCoal: [],
                orderTypeShow: false,
                pvcWeight:'',
                orderTypeList: [{
                        name: '外销',
                        id: Math.floor(Math.random() * 100) + 1,
                    },
                    {
                        name: '外购',
                        id: Math.floor(Math.random() * 100) + 1,
                    }
                ],
                isOrderType: '请选择', //磅房类型是否选择了 选择了清空
                cleanIconClick: true, //修改点击清空磅房选择会出现
                errorStatusList:[0,1,6,24,27,26] // 不能点击确认装卸的状态
 
            };
        },
        methods: {
                limitString(str, limit, suffix = '...') {
                            if (str.length <= limit) return str;
                            return str.slice(0, limit) + suffix;
                        },
                getPVCWeight(){
            
            },
              handleOpenChange() {
                     // 方法一
      console.log(this.$refs.collapseHeight);
    //   let long = this.$refs.collapseHeight.length;
    //   setTimeout(() => {
    //     for (let i = 0; i < long; i++) {
    //       this.$refs.collapseHeight[i].queryRect();// 计算高度
    //     }
    //   }, 20);
 
        // 方法二
        this.$nextTick(() => {
        this.$refs.collapseHeight.init()
        });
                        
            },
            //获取已装卸收发单
            getTodayOrder(){
                this.$reqGet('getTodayConfirmedTaskCoalList',{ bunkerIds:this.dataForm.bunkerIds,productIds:uni.getStorageSync('productIds')}).then(res=>{
                 if(res.code === 0){
                    this.historyData = res.data;
                 }else{
                        this.historyData = [];
                 }
 
                })
            },
            getUserInfo() {
                this.$reqGet('getUserEntity').then(res => {
                    this.userInfo = res.data;
                    this.userInfo.password = null
                })
            },
        
            // 获取场地
            getDeptIdFiled() {
                uni.showLoading({
                    title: "加载中"
                })
                this.$reqGet('getWarehouseList').then(res => {
                    uni.hideLoading()
                    if (res.code === 0) {
                        this.firstClassActionsList = res.data;
                        this.firstClassActionsList.unshift({name:'全部',id:res.data.map(item=>item.id).join(',')})
                        if(res.data.length){
                            if(!uni.getStorageSync('bunkerIds')){
                                this.dataForm.firstClass = '全部'
                                this.dataForm.bunkerIds = res.data.map(item=>item.id).join(',')
                                uni.setStorageSync('bunkerIds',res.data.map(item=>item.id).join(','))
                            }else{
                                this.dataForm.bunkerIds = uni.getStorageSync('bunkerIds');
                                uni.setStorageSync('bunkerIds',this.dataForm.bunkerIds)
                            }
                        
                        
                            this.getDetailData();
                            this.getTodayOrder();                    
                        }
                    } else {
                        this.$u.toast('加载失败')
                    }
                }).then(() => {
                
                })
            },
            firstClassSelect() {
                this.firstClassShow = true
            },
            firstClassClose() {
                this.firstClassShow = false
            },
            getDetailData(){
                     uni.showLoading({
                    title:'加载中'
                })
                    this.$reqGet('getTaskCoalListByBunkerId', { bunkerIds:this.dataForm.bunkerIds, productIds:uni.getStorageSync('productIds')}).then(res => {
                    uni.hideLoading();
                    if (res.code === 0) {
                        this.detailData = res.data.map(item=>{
                           item.tmTaskCoalList.map(el=>{
                             el.flag = el.isPretendDischar ? false : true
                            return el
                           })
                         return item;
                        });
                        this.handleOpenChange();
                        console.log(this.detailData,'detailData')
                    }else if(res.code === 1){
                        this.detailData = [];
                        this.$u.toast(res.msg ? res.msg : '操作失败!!')
                    }
                
                }).catch(err=>{
                    this.detailData = [];
                    this.$u.toast(res.msg ? res.msg : '操作失败!!')
                })
 
            },
                        viewDetail(value){
                //查看收发单详情
                    uni.navigateTo({
                    url: `/subPages/fayunPlanDetails/fayunPlanMore/fayunPlanMore?id=${value.id}&orderType=${value.orderType}`,
                    })
                        },
            firstClassSelectClick(val) {
                this.dataForm.firstClass = val.name;
                this.dataForm.bunkerIds= val.id;
                uni.removeStorageSync('bunkerIds')
                uni.setStorageSync('bunkerIds', val.id);
                this.getDetailData();
                this.filedId = val.id
            },
            // formHandle() {
            //     if (!this.dataForm.firstClass) return this.$u.toast('请选择场地或者仓库');
            //     this.$nextTick(()=>{
             //         uni.navigateTo({
            //             url: `/pages/loadUnload-page/loadUnload-detail/loadUnload-detail?bunkerId=${this.dataForm.bunkerId}`
            //         })
            //     })
               
            // },
            change(){
 
            },
            close(){
 
            },
            isCleanChange(val){
                console.log(val,'触发')
                if(val === '0'){
                    this.checkNum = '';
                }
 
            },
            open(){},
            enterOk(parintItem,item){
                console.log(parintItem,'priintItem')
                // uni.request({
                //     url: `${BaseUrl}/admin/dict/type/tray_weight`,
                //     method: 'GET',
                //     header: {
                //     Authorization: 'Bearer' + ' ' + uni.getStorageSync('token'),
                //     clientToc: 'Y',
                //     'CLIENT_TOC': 'Y',
                // },
                //     success: (res) => {
                //         this.pvcWeight = res.data.data.find(item=>item.label === '5') ? Number(res.data.data.find(item=>item.label == '5').value) : '';
                        
                //     }
                // })
            //  计件:    0 聚氯乙烯树脂 type 
            //  折吨: 
                this.activeObj = item;
                if( (parintItem.orderType === '外购' ||parintItem.orderType === '外购退' ) && item.isWeight === 0){
                    this.isNumOk = true;
                    this.isClean = false;
                    this.isFlagNum = false;
                    this.isCleanFlag = '1';
                    //回显计数量
                    this.checkNum  = item.productQuantity ? item.productQuantity : '';
                }else if( parintItem.orderType ==='外购' &&  item.isWeight === 1){
                    this.isClean = true;
                    this.isCleanFlag = '0';
                    this.isNumOk = false;
                     this.isFlagNum = false;
                }
 
                //聚氯乙烯树脂
                 if(parintItem.orderType ==='外销' && (/聚氯乙烯树脂/.test(item.productName) || item.productName === 'PVC')  && (item.packingType === 3 || item.packingType === 4)){
                    this.isNumOk = false;
                    this.isClean  = false;
                    this.isCleanFlag = '1';
                   this.isFlagNum = true;;
                   this.checkNum = item.planMeasure;
                }
                //瓶装液氯条件
                //EDC 质检完成方可确认
                if(item.packingType === 1){ 
                    this.isNumOk = true;
                    this.isClean = false;
                    this.isCleanFlag = '1';
                     this.isFlagNum = false;
                }
                //
                //pvc大包自动计算折吨
                
                if(parintItem.orderType === '外购'){
                    this.isEmptyCar = '1';
                }else if(parintItem.orderType === '外销' || parintItem.orderType === '外购退'){
                    this.isEmptyCar = '0';
                }
                if(item.isWeight === 1){
                    this.isNumOk = false;
                    this.isClean = true;
                    this.isCleanFlag = '0';
                     this.isFlagNum = false;
                }else{
                    this.isNumOk = true;
                    this.isCleanFlag = '1';
                    this.isClean = false;
                     this.isFlagNum = false;
                }
                if((/聚氯乙烯树脂/.test(item.productName) || item.productName === 'PVC')  && item.packingType === 5){
                    this.isNumOk = false;
                    this.isClean = false;
                     this.isFlagNum = true;
                     this.isCleanFlag = '1';
                }
                //外销不用 输入折吨
                // if(parintItem.orderType ==='外销'){
                //     this.isClean  = false;
 
                // }
            this.enterZx = true;
                
            },
            closeModal(){
                this.enterZx = false;
                this.checkNum = '';
                this.isEmptyCar = null;
            },
            cancelModal(){
                this.enterZx = false;
                this.checkNum = '';
                this.isEmptyCar = null;
            },
            confirmModal(){
                    uni.showLoading({
                    title:'加载中'
                });
                console.log(this.activeObj,this.activeObj.productName ==='二氯乙烷(EDC)' && this.activeObj.checkStatus !== 7,'12313')
                if(this.activeObj.productName ==='二氯乙烷(EDC)' && this.activeObj.checkStatus !== 7){
 
                    this.enterZx = false;
                    this.$u.toast(`请检查当前二氯乙烷(EDC)DC订单质检状态后在确认装卸!`);
                    
                }else if( this.isEmptyCar === null){
                    this.$u.toast(`请检查${this.isNumOk ? '计件数量' :'折吨'},以及是否空车出厂项!`);
                }else{
                    this.enterZx = false;
                    this.$reqPost('confirmLoadAndUnload',{ 
                    id: this.activeObj.id,
                    productQuantity:this.isNumOk ? this.checkNum : '',
                    discount:this.isClean ? this.checkNum : null,
                    isEmptyCar:this.isEmptyCar,
                    isPretendDischar:this.activeObj.isPretendDischar,
                    realityMeasure:this.isFlagNum ? this.checkNum : null,
                    productId:this.isFlagNum ? this.activeObj.productId : null,
                 },'json').then(res=>{
                    uni.hideLoading();
                    console.log(res,'rez')
                    this.checkNum = '';
                    if(res.code === 1){
                        console.log('触发')
                        this.$u.toast(res.msg || '失败');
                        uni.hideLoading();
                    }else{
                      this.$u.toast('操作成功');
                      setTimeout(() => {
                        this.getDetailData();
                    }, 500);
                    }
                    
                
                }).catch((err) => {
                     this.$u.toast(err.msg || '失败');
                }).finally(() => {
                uni.hideLoading();
                         
                })
                }
                
                
            },
            //判断是否是 三种特殊类型对应弹窗
            judgeTypeFun(name){
            
 
            },
            //查看最近一次的原盐钙镁
            todoDetail(){
                console.log()
                uni.navigateTo({
                        url: `/subPages/checkTestDetails/index`
                    })
 
            },
            pinDan(item){
                console.log('pindan')
                uni.navigateTo({
                        url: `/subPages/splicingOrders/index?taskCoalId=${item.id}`
                    })
            }
 
        },
        onShow(){
            console.log('触发ONShow')
            uni.showLoading({
                    title: "加载中"
                })
                this.$reqGet('getWarehouseList').then(res => {
                    uni.hideLoading()
                    if (res.code === 0) {
                        this.firstClassActionsList = res.data;
                    
                    } else {
                        this.$u.toast('加载失败')
                    }
                }).then(() => {
                
                });
                        
 
        },
    }
</script>
 
<style lang="scss"
    scoped>
::-webkit-scrollbar{
          display: none;
    }
    .table{
    width: 100%;
  /deep/ .uni-table{
    min-width: 0!important;
    margin-left: 20rpx;
    width: auto;
  }
    
}
.notice-bar{
        margin-left: vww(10);
        margin-bottom: 20rpx;
        margin-top: 20rpx;
    
            width: 98%;
            .u-notice-bar{
                border-radius: 20rpx;
                    margin-top: 20rpx;
                    height: 40rpx;
            }
}
        // 自主配送
            .self-deliver {
                position: relative;
                text-indent: 20rpx;
                top: vww(10);
                width: 95%;
                height: vww(40);
                margin: vww(13) 10rpx;
                margin-left: 20rpx;
                padding: 0 vww(8);
                background: #ffffff;
                box-shadow: 0rpx 0rpx 14rpx 0rpx rgba(73, 120, 240, 0.14), 0rpx 7rpx 45rpx 0rpx rgba(73, 120, 240, 0.12);
                border-radius: 20rpx;
                @include flex;
                align-items: center;
                justify-content: space-between;
                /deep/.u-button {
                    width: 100%;
                    height: 28px !important;
                    line-height: 40px;
                    padding: 0 12px;
                    text-indent: 0!important;
                    font-size: 28rpx;
                    font-weight: 300;
                    color: #ffffff;
                    background: #497bfb !important;
                    letter-spacing: 4rpx;
                    border-radius: 37rpx 37rpx 37rpx 37rpx !important;
                    box-shadow: 2rpx 3rpx 13rpx 0rpx rgba(43, 98, 239, 0.5), 0rpx 0rpx 9rpx 0rpx rgba(247, 250, 253, 0.29);
                }
            }
    .queren{
        display: flex;
        justify-content: space-between;
        /deep/ .u-input {
            border-bottom:  1px solid #ccc;
        }
    }
    .name{
        width: 50rpx;
    }
    .table{
        width: 94%;
        margin-left: 20rpx;
        position: relative;
        margin-top: 30rpx;
          overflow-x: auto;
        /deep/   .uni-table-th{
            font-size: 12px;
          }
        /deep/   .uni-table-td {
            font-size: 12px;
          }
    /deep/ .uni-table{
            min-width: 0rpx!important;
            // position: sticky !important;;
        }
    /deep/     .uni-table-body-wrapper {
  position: relative;
}
 /deep/ .uni-table-body {
  display: flex;
}
.fixed {
position: absolute;
right: -35px;
background: #fff;
}
 
    }
    .btnBox{
        min-width: 100rpx;
        // display: flex;
        justify-content: space-around;
       :v-deep    .u-button__text{
            font-size: 12px!important;
        }
        text{
            color: #035cfb;
        }
    }
    .main {
        width: 94%;
        margin: 10px;
        // margin-top: vww(100);
        position: relative;
        top: vww(-200);
        .top-tag{
                width: 60%;
                margin-left: 55%;
                height: 100rpx;
                margin-left: 50%;
                display: flex;
                /* margin-top: 40rpx; */
                color: #fff;
                align-items: center;
                
                    }
 
                    .div-box{
                        width: 100%;
                        display: flex;
                        margin-left: 10rpx;
                        flex-direction: column;
                        /deep/ .u-collapse{
                            background: #fff;
                        }
                        
                    }
    }
 
    .slide-fade-enter-active {
        transition: all 0.3s ease-out;
    }
 
    .coal-name {
        width: 75%;
        min-height: vww(100);
 
        .u-checkbox-group {
            .u-checkbox {}
        }
    }
    .box{
        display: flex;
        flex-direction: column;
        width: 100%;
        .box-top{
            width: 100%;
            height: 100rpx;
            display: inline-block;
            display: flex;
            justify-content: space-between;
            align-items: center;
 
        }
    }
                .collItem{
                    margin-top: 30rpx;
                    /deep/ .content{
                        background: none!important;
                    }
                }
                .history-information {
            margin-bottom:30rpx;
            margin-top: 10rpx;
            background: #ffffff;
            border-radius: 20rpx;
            @include flex flex-direction: column;
            padding: 10px;
            align-items: flex-start;
            justify-content: space-evenly;
            box-shadow: 0rpx 0rpx 14rpx 0rpx rgba(73, 120, 240, 0.14), 0rpx 7rpx 45rpx 0rpx rgba(73, 120, 240, 0.12);
 
 
            .first {
                width: 96%;
                height: 34rpx;
                font-size: 32rpx;
                font-weight: 300;
                color: #303030;
                @include flex;
                margin: vww(10) vww(10) 0;
            }
 
            .second {
                width: 100%;
                height: 31rpx;
                font-size: 30rpx;
                font-weight: 300;
                color: #515151;
                margin: vww(10) vww(10) 0;
                @include flex;
                justify-content: flex-start;
 
                .coal-name {
                    min-width: vww(20);
                    height: vww(20);
                    margin-right: vww(21);
                }
 
                .order-type {
                    height: 45rpx;
                    color: #035cfb;
                    border: 2px solid #035cfb;
                    border-radius: 4rpx;
                    padding: vww(2) vww(4);
                    text-align: center;
                }
            }
 
            .third {
                width: 96%;
                height:  auto;
                font-size: 30rpx;
                font-weight: 300;
                color: #515151;
                margin: vww(10) vww(10) 0;
                @include flex;
                flex-direction: column;
 
                .third-line {
                    @include flex;
                    align-items: center;;
 
                    &_text {
                        color: #919090;
                    }
 
                    &_num {
                        color: #035cfb;
                    }
                }
            }
 
            .fourth {
                width: 100%;
                height: 31rpx;
                font-size: 30rpx;
                font-weight: 300;
                color: #515151;
                margin: vww(10) vww(10) 0;
                @include flex;
 
                .fourth-icon {
                    width: vww(13);
                    height: vww(13);
                    margin-right: vww(14);
                }
 
                .senddate {
                    flex: 1;
                }
            }
        }
</style>