king
2019-07-16 68ba2dfa35789cda9908fc0bc65336dde17a0d29
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
<template>
    <div class="main">
        <div class="banner"><img src='../../img/home.png' alt=""></div>
        <div class="wrapper-box">
            <h3 class="content_title fadeInUp zoomIn animated"><span>主营业务</span></h3>
            <div class="m_zhu">
                <div class="title_a">明科商业智能开放平台</div>
                <div class="title_b">MingKeOS</div>
                <div class="title_b">三屏合一、敏捷开发、多平台接口</div>
                <div class="content">使用MingKeOS可以让用户通过简单配置自然语言对话的交互方式,即可实现企业管 理过程中复杂的业务逻辑处理,平台内置采购、生产、销售、技术、品控、追溯售后、供应商、经销商、
                    库存、财务、电商、数据中心、接口、人工智能(Kane)等28大业务领域模块。</div>
                <div class="img_txt">
                    <div class="line">
                        <img src="../../img/zhu1.png" alt="">
                        <span>可配置</span>
                    </div>
                    <div class="line">
                        <img src="../../img/zhu2.png" alt="">
                        <span>易变更</span>
                    </div>
                    <div class="line">
                        <img src="../../img/zhu3.png" alt="">
                        <span>大数据</span>
                    </div>
                    <div class="line">
                        <img src="../../img/zhu4.png" alt="">
                        <span>多平台接口</span>
                    </div>
                </div>
                <!-- <button class="btn">查看更多</button> -->
            </div>
 
            <div class="m_zhu m_zhu2">
                <div class="title_a">全渠道供应链产品</div>
                <div class="title_b">WMS、MES、质量追溯</div>
                <div class="title_b">供应商协同、经销商管理、ERP接口</div>
                <div class="content" style="margin-top: 0.3rem;">MingKeOS可广泛应用于ERP、SRM、CRM、WMS、MES、DMS、OMS、APP、BDA、FCC等多种系统的研发建设场景</div>
                <div class="img_txt" style="padding:0.36rem 0.7rem 0.1rem;">
                    <div class="line">
                        <img src="../../img/zhu5.png" alt="" class="imgs">
                        <span class="s1">仓库管理系统<br />WMS </span>
                    </div>
                    <div class="line">
                        <span class="s1 s2" style="margin-right:0.29rem">制造执行系统<br />MES</span>
                        <img src="../../img/zhu6.png" alt="" class="imgs s2">
                        
                    </div>
                </div>
                <div class="img_txt" style="padding:0.36rem 0.7rem 0.1rem;">
                    <div class="line">
                        <img src="../../img/zhu7.png" alt="" class="imgs">
                        <span class="s1">质量追溯系统<br />QTS</span>
                    </div>
                    <div class="line">
                        <span class="s1 s2">经销商管理平台<br />DMS</span>
                        <img src="../../img/zhu8.png" alt="" class="imgs s2">
                        
                    </div>
                </div>
                <!-- <button class="btn" style="margin-top: 0.5rem;">查看更多</button> -->
            </div>
 
            <div class="m_zhu m_zhu3" style="height: 12.5rem;">
                <div class="title_a">电商系列产品</div>
                <div class="title_b">商城系统、支付接口、红包营销</div>
                <div class="title_b">电商OMS、电商WMS、物流接口</div>
                <div class="content" style="padding-top: 0.8rem;">MingKeOS帮助企业对接各销售渠道,实现商品,库存,订单,物流,财务等数据的全链路贯通。OMS拥有作业流程智能设定,可根据企业需求自定义自动化审单流程,灵活的拆单合单规则可满足企业对于复杂订单的处理需求,自动匹配物流方案全面优化了企业在审单、备货、发货和售后等环节的作业效率。</div>
                <div class="img_txt" style="padding:0.36rem 0.7rem 0.1rem;">
                    <div class="line">
                        <img src="../../img/zhu9.png" alt="" class="imgs">
                        <span class="s1">自建商城<br />B2C、B2B2C</span>
                    </div>
                    <div class="line">
                        <span class="s1 s2">多平台对接<br />天猫、京东…</span>
                        <img src="../../img/zhu10.png" alt="" class="imgs s2">
                    </div>
                </div>
                <div class="img_txt" style="padding:0.36rem 0.8rem 0.1rem 0.7rem;">
                    <div class="line">
                        <img src="../../img/zhu11.png" alt="" class="imgs">
                        <span class="s1">多支付场景<br />支付宝、微信…</span>
                    </div>
                    <div class="line">
                        <span class="s1 s2" style="margin: -0.1rem 0 0 0.2rem;">物流接口<br />菜鸟、无界<br />顺丰、德邦</span>
                        <img src="../../img/zhu12.png" alt="" class="imgs s2">
                    </div>
                </div>
                <div class="img_txt" style="padding:0.36rem 0.7rem 0.1rem;">
                    <div class="line">
                        <img src="../../img/zhu13.png" alt="" class="imgs">
                        <span class="s1" style="margin-top: -0.1rem;">OMS-WMS<br />全渠道、订单归类<br />仓配策略、赠品策略</span>
                    </div>
                </div>
                <!-- <button class="btn" style="margin-top: 0.5rem;">查看更多</button> -->
            </div>
 
            <div class="wrapper">
                <ul class="business_ul">
                    <router-link tag="li" to="/caseDetail" v-for="(item,index) in 3" :key="index" class="fadeInUp" v-drag>
                        <router-link tag="div" class="business_box animated pulse" :key="index" to="/caseDetail">
                            <div class="business_box_t">
                                <h2>电商平台</h2>
                                <p>MingKeOS帮助企业对接各销售渠道,实现商品,库存,订单,物流,财务等数据的全链路贯通。
                                    OMS拥有作业流程智能设定,可根据企业需求自定义自动化审单流程,灵活的拆单合单规则可满足企业对于复杂订单的处理需求,自动匹配物流方案,全面优化了企业在审单、备货、发货和售后等环节的作业效率。</p>
                            </div>
                            <ul class="business_box_b" id="string">
                                <li v-for="(item,index2) in 4" :key="index2">
                                    <h3><img src="../../img/shop.png" alt=""></h3>
                                    <div>
                                        <p>自建商城</p>
                                        <p>B2C、B2B2C</p>
                                    </div>
                                </li>
                            </ul>
                            <div class="loadMoreBtn">
                                <el-button>查看更多</el-button>
                            </div>
                            <div class="particulars">
                                <a href="/caseDetail" style="color: #14A9E5;">了解详情 >></a>
                            </div>
                        </router-link>
                        <div class="business">
                            <h3>
                                <img src="../../img/index_woman.png" v-if="index == 0" alt="">
                                <img src="../../img/index_technology.png" v-if="index == 1" alt="">
                                <img src="../../img/index33.jpg" v-if="index == 2" alt="">
                            </h3>
                            <h2 v-if="index == 0"><a style="text-decoration: none;">明科商业智能开放平台</a></h2>
                            <h2 v-if="index == 1"><a style="text-decoration: none;">全渠道供应链产品</a></h2>
                            <h2 v-if="index == 2"><a style="text-decoration: none;">电商系列产品</a></h2>
                            <p v-if="index == 0">MingKeOS</p>
                            <p v-if="index == 1">WMS、MES、质量追溯</p>
                            <p v-if="index == 2">商城系统、支付接口、红包营销</p>
                            <p v-if="index == 0">三屏合一、敏捷开发、多平台接口</p>
                            <p v-if="index == 1">供应商协同、经销商管理、ERP接口</p>
                            <p v-if="index == 2">电商OMS、电商WMS、物流接口</p>
                        </div>
                    </router-link>
                </ul>
            </div>
        </div>
        <div class="wrapper" style="margin-top: 0.5rem;">
            <h3 class="content_title fadeInUp zoomIn animated title"><span>明科商业智能开放平台MingKeOS</span></h3>
            <h3 class="content_title fadeInUp zoomIn animated title-m"><span>MingKeOS</span></h3>
            <h4 class="content_subtitle"><span>为企业搭建供应链信息化平台</span></h4>
            <el-carousel :interval="5000" arrow="always" class="platform_ul-m">
                <el-carousel-item>
                    <h3><img src="../../img/yuan1.png" alt=""></h3>
                    <h2 style="margin-top: 0.3rem;">自主的可配置平台</h2>
                    <p>众所周知,需求变更是IT项目成败的关键,MingKeOS易变更、可配置的特性可以为企业信息化建设保驾护航</p>
                </el-carousel-item>
                <el-carousel-item>
                    <h3><img src="../../img/100.png" alt=""></h3>
                    <h2 style="margin-top: 0.3rem;">成熟的行业方案</h2>
                    <p>明科已经为超过2000家企业进行供应链项目实施,可提供众多成熟的企业应用供您选择,您无需组织人员花费大量时间去设计开发,并可依据企业个性化需求完成新功能的配置</p>
                </el-carousel-item>
                <el-carousel-item>
                    <h3><img src="../../img/yuan2.png" alt=""></h3>
                    <h2 style="margin-top: 0.3rem;">独有的开发生态圈</h2>
                    <p>明科拥有众多的平台实施合作伙伴,您可以选择任何一家为您完成项目实施,也可以培养自己的IT团队进行系统运维</p>
                </el-carousel-item>
            </el-carousel>
            <ul class="platform_ul">
                <router-link to="/caseDetail" tag="li" v-for="(item,index) in 3" :key="item.menu_id">
                    <h3 v-if="index == 0"><img src="../../img/yuan1.png" alt=""></h3>
                    <h3 v-if="index == 1"><img src="../../img/100.png" alt=""></h3>
                    <h3 v-if="index == 2"><img src="../../img/yuan2.png" alt=""></h3>
                    <h2 v-if="index == 0">自主的可配置平台</h2>
                    <h2 v-if="index == 1">成熟的行业方案</h2>
                    <h2 v-if="index == 2">独有的开发生态圈</h2>
                    <p v-if="index == 0" style="line-height:25px;">众所周知,需求变更是IT项目成败的关键,MingKeOS易变更、可配置的特性可以为企业信息化建设保驾护航</p>
                    <p v-if="index == 1" style="line-height:25px;">明科已经为超过2000家企业进行供应链项目实施,可提供众多成熟的企业应用供您选择,您无需组织人员花费大量时间去设计开发,并可依据企业个性化需求完成新功能的配置</p>
                    <p v-if="index == 2" style="line-height:25px;">明科拥有众多的平台实施合作伙伴,您可以选择任何一家为您完成项目实施,也可以培养自己的IT团队进行系统运维</p>
                </router-link>
            </ul>
        </div>
        <div class="wrapper-box">
            <h3 class="content_title fadeInUp zoomIn animated title"><span>成熟的供应链系统解决方案</span></h3>
            <h3 class="content_title fadeInUp zoomIn animated title-m"><span>解决方案</span></h3>
            <div class="wrapper">
                <div class="content programme">
                    <ul class="programme_ul">
                        <router-link to="" tag="li">
                            <h3><img src="../../img/programmeTool.png" alt="" @mouseover="img_index = 1" @mouseout="img_index = 0" class="animated" :class="img_index == 1 ? 'rotateIn' : ''"></h3>
                            <p>电动工具</p>
                        </router-link>
                        <router-link to="" tag="li">
                            <h3><img src="../../img/2.png" alt="" @mouseover="img_index = 2" @mouseout="img_index = 0" class="animated" :class="img_index == 2 ? 'rotateIn' : ''"></h3>
                            <p>系统集成</p>
                        </router-link>
                        <router-link to="" tag="li">
                            <h3><img src="../../img/3.png" alt="" @mouseover="img_index = 3" @mouseout="img_index = 0" class="animated" :class="img_index == 3 ? 'rotateIn' : ''"></h3>
                            <p>汽配行业</p>
                        </router-link>
                        <router-link to="" tag="li">
                            <h3><img src="../../img/4.png" alt="" @mouseover="img_index = 4" @mouseout="img_index = 0" class="animated" :class="img_index == 4 ? 'rotateIn' : ''"></h3>
                            <p>交通运输</p>
                        </router-link>
                        <router-link to="" tag="li">
                            <h3><img src="../../img/5.png" alt="" @mouseover="img_index = 5" @mouseout="img_index = 0" class="animated" :class="img_index == 5 ? 'rotateIn' : ''"></h3>
                            <p>制药行业</p>
                        </router-link>
                        <router-link to="" tag="li">
                            <h3><img src="../../img/6.png" alt="" @mouseover="img_index = 6" @mouseout="img_index = 0" class="animated" :class="img_index == 6 ? 'rotateIn' : ''"></h3>
                            <p>能源行业</p>
                        </router-link>
 
 
                        <router-link to="" tag="li">
                            <h3><img src="../../img/7.png" alt="" @mouseover="img_index = 7" @mouseout="img_index = 0" class="animated" :class="img_index == 7 ? 'rotateIn' : ''"></h3>
                            <p>仓储物流</p>
                        </router-link>
                        <router-link to="" tag="li">
                            <h3><img src="../../img/11.png" alt="" @mouseover="img_index = 8" @mouseout="img_index = 0" class="animated" :class="img_index == 8 ? 'rotateIn' : ''"></h3>
                            <p>门窗行业</p>
                        </router-link>
                        <router-link to="" tag="li">
                            <h3><img src="../../img/8.png" alt="" @mouseover="img_index = 9" @mouseout="img_index = 0" class="animated" :class="img_index == 9 ? 'rotateIn' : ''"></h3>
                            <p>医药流通</p>
                        </router-link>
                        <router-link to="" tag="li">
                            <h3><img src="../../img/9.png" alt="" @mouseover="img_index = 10" @mouseout="img_index = 0" class="animated" :class="img_index == 10 ? 'rotateIn' : ''"></h3>
                            <p>商业连锁</p>
                        </router-link>
                        <router-link to="" tag="li">
                            <h3><img src="../../img/12.png" alt="" @mouseover="img_index = 11" @mouseout="img_index = 0" class="animated" :class="img_index == 11 ? 'rotateIn' : ''"></h3>
                            <p>电子商务</p>
                        </router-link>
                        <router-link to="" tag="li">
                            <h3><img src="../../img/10.png" alt="" @mouseover="img_index = 12" @mouseout="img_index = 0" class="animated" :class="img_index == 12 ? 'rotateIn' : ''"></h3>
                            <p>条码管理</p>
                        </router-link>
                    </ul>
                </div>
            </div>
        </div>
        
        <div class="content">
            <h3 class="content_title fadeInUp zoomIn animated"><span>典型案例</span></h3>
            <h4 class="content_subtitle"><span>专注大中型企业信息化应用</span></h4>
            <div class="m_zhu m_zhu4" style="height: 9.3rem;">
                <div class="content" style="padding-top: 3.9rem;" @click="jump('successCaseIndex')">基于自动识别技术设计,实现了SAP接口入库、出库、盘点、移位、预警、交叉驳运等业务的精细化管理。采购供货协同项目物料计划,按需采购,定向配送交叉驳运,自动分拣服务器位于北京总部机房乌兹别克斯坦、俄罗斯跨境实施</div>
                <!-- <button class="btn" style="margin-top: 0.5rem;">查看更多</button> -->
            </div>
            <div class="content case pc_case">
                <el-carousel height="6.7rem" direction="vertical" :autoplay="false" style="position: relative;">
                    <el-carousel-item>
                        <div class="backg11">
                            <div style="float: right;color: #fff;margin: 2.2rem 2.6rem 0 0;">
                                <div style="font-size: 0.35rem;margin-bottom: 0.4rem;">卡斯柯</div>
                                <img src="../../img/zhong1.png" @click="jump('successCaseIndex')"  alt="" style="margin-right: 0.45rem;cursor: pointer;">
                                <img src="../../img/zhong4.png" @click="jump('successCaseIndex')" alt="" style="margin-right: 0.45rem;cursor: pointer;">
                                <img src="../../img/zhong3.png" @click="jump('successCaseIndex')"  alt="" style="cursor: pointer;">
                                <div style="position: relative;margin-top: 0.4rem;cursor: pointer;" @click="jump('successCase')">
                                    <img src="../../img/zhong5.png" alt="">
                                    <img src="../../img/zhong6.png" alt="" style="position: absolute;top: 0.11rem;right: 1.94rem;">
                                    <span style="position: absolute;top: 0.12rem;right: 2.43rem;font-size: 0.18rem;">了解更多</span>
                                </div>
                            </div>
                        </div>
                    </el-carousel-item>
                    <el-carousel-item>
                        <div class="backg11 backg22">
                            <div style="float: right;color: #fff;margin: 2.2rem 2.6rem 0 0;">
                                <div style="font-size: 0.35rem;margin-bottom: 0.4rem;">威克士</div>
                                <img src="../../img/zhong4.png" @click="jump('successCaseIndex')"  alt="" style="margin-right: 0.45rem;cursor: pointer;">
                                <img src="../../img/zhong2.png" @click="jump('successCaseIndex')"  alt="" style="margin-right: 0.45rem;cursor: pointer;">
                                <img src="../../img/zhong3.png" @click="jump('successCaseIndex')"  alt="" style="cursor: pointer;">
                                <div style="position: relative;margin-top: 0.4rem;cursor: pointer;" @click="jump('successCase')" >
                                    <img src="../../img/zhong5.png" alt="">
                                    <img src="../../img/zhong6.png" alt="" style="position: absolute;top: 0.11rem;right: 2.08rem;">
                                    <span style="position: absolute;top: 0.12rem;right: 2.58rem;font-size: 0.18rem;">了解更多</span>
                                </div>
                            </div>
                        </div>
                    </el-carousel-item>
                    <el-carousel-item>
                        <div class="backg11 backg33">
                            <div style="float: right;color: #fff;margin: 1.9rem 2.6rem 0 0;">
                                <div style="font-size: 0.35rem;margin-bottom: 0.4rem;">同仁堂</div>
                                <img src="../../img/zhong1.png" @click="jump('successCaseIndex')"  alt="" style="margin-right: 0.45rem;cursor: pointer;">
                                <img src="../../img/zhong2.png" @click="jump('successCaseIndex')"  alt="" style="margin-right: 0.45rem;cursor: pointer;">
                                <img src="../../img/zhong4.png" @click="jump('successCaseIndex')"  alt="" style="cursor: pointer;">
                                <div style="position: relative;margin-top: 0.4rem;cursor: pointer;" @click="jump('successCase')" >
                                    <img src="../../img/zhong5.png" alt="">
                                    <img src="../../img/zhong6.png" alt="" style="position: absolute;top: 0.11rem;right: 1.48rem;">
                                    <span style="position: absolute;top: 0.12rem;right: 2rem;font-size: 0.18rem;">了解更多</span>
                                </div>
                            </div>
                        </div>
                    </el-carousel-item>
                    <el-carousel-item>
                        <div class="backg11 backg44">
                            <div style="float: right;color: #fff;margin: 1.9rem 2.6rem 0 0;">
                                <div style="font-size: 0.35rem;margin-bottom: 0.4rem;">中国石油工程建设公司</div>
                                <img src="../../img/zhong1.png" @click="jump('successCaseIndex')"  alt="" style="margin-right: 0.45rem;cursor: pointer;">
                                <img src="../../img/zhong2.png" @click="jump('successCaseIndex')"  alt="" style="margin-right: 0.45rem;cursor: pointer;">
                                <img src="../../img/zhong3.png" @click="jump('successCaseIndex')"  alt="" style="cursor: pointer;">
                                <div style="position: relative;margin-top: 0.4rem;cursor: pointer;" @click="jump('successCase')" >
                                    <img src="../../img/zhong5.png" alt="">
                                    <img src="../../img/zhong6.png" alt="" style="position: absolute;top: 0.11rem;right: 1.82rem;">
                                    <span style="position: absolute;top: 0.12rem;right: 2.35rem;font-size: 0.18rem;">了解更多</span>
                                </div>
                            </div>
                        </div>
                    </el-carousel-item>
                </el-carousel>
            </div>
        </div>
        <div class="m_hide" style="height: 1rem;"></div>
        <div class="wrapper">
            <h3 class="content_title fadeInUp zoomIn animated"><span>明科动态</span></h3>
            <div class="m_hide" style="height: 0.5rem;"></div>
            <div class="wrapper">
                <ul class="dynamic_ul">
                    <router-link to="/dynamicDetail" tag="li" v-for="(item,index) in 3" :key="index">
                        <div style="cursor: pointer;">
                            <h3 v-if="index == 0" class="h33">
                                <img src="../../img/dynamic.png" alt="">
                                <span>企业资讯</span>
                            </h3>
                            <div class="dynamic_ul_card" v-if="index == 0" style="height: 2.56rem;">
                                <h2>
                                    <span style="display: inline-block;padding-top: 0.27rem;">明科产品质量安全追溯系统解决方案</span>
                                    <span class="times" style="display: inline-block;padding-top: 0.08rem;">2017-03-08</span>
                                    <div style="clear: both;"></div>
                                </h2>
                                <p class="m_txt" style="line-height: 0.25rem;">明科公司面向生产型企业专门研发了一套质量监管系统,针对商品的生产日期、有效期批号等信息,创建唯一可识别条码,进行产品质量追溯,再根据此识别码的包装关联码查询流通过程中的商品流...</p>
                            </div>
 
                            <h3 v-if="index == 1" style="position: relative;" class="h33">
                                <img src="../../img/22.png" alt="">
                                <span class="m_hide" style="position: absolute;top: 40%;left: 26%;font-size: 0.2rem;">宝时得电商平台</span>
                                <span class="p_hide" style="position: absolute;top: 43%;left: 26%;font-size: 0.4rem;">宝时得电商平台</span>
                                <span>公司活动</span>
                            </h3>
                            <div class="dynamic_ul_card" v-if="index == 1" style="height: 2.56rem;">
                                <h2>
                                    <span style="display: inline-block;padding-top: 0.27rem;">宝时得电商平台项目启动会议隆重举行</span>
                                    <span class="times" style="display: inline-block;padding-top: 0.08rem;">2017-10-10</span>
                                    <div style="clear: both;"></div>
                                </h2>
                                <p class="m_txt" style="line-height: 0.25rem;">9月22日上午,宝时得电商平台项目启动会在苏州厅隆重召开,专业工具营销中心朱总、财务张总、信息化管理部丁总,携项目组团队参加了此次会议。北京明科普华副总经理张富贵携顾问代表4人出席了会议。</p>
                            </div>
 
                            <h3 v-if="index == 2" class="h33">
                                <img src="../../img/33.png" alt="">
                                <span>解决方案</span>
                            </h3>
                            <div class="dynamic_ul_card" v-if="index == 2" style="height: 2.56rem;">
                                <h2>
                                    <span style="display: inline-block;padding-top: 0.27rem;">明科售后服务跟踪系统解决方案</span>
                                    <span class="times" style="display: inline-block;padding-top: 0.08rem;">2017-03-08</span>
                                    <div style="clear: both;"></div>
                                </h2>
                                <p class="m_txt" style="line-height: 0.25rem;">明科服务跟踪系统MK-SES是由明科公司首创的基于自动识别技术的服务系统,它能让企业能够更好的为用户提供更人性化的跟踪服务,并且能有效的降低服务成本。</p>
                            </div>
 
                        </div>
                    </router-link>
                </ul>
            </div>
        </div>
        <div class="p_hide" style="height: 0.5rem;"></div>
    </div>
</template>
<script>
    export default {
        data() {
            return {
                brothers: '',
                data: [],
                img_index:0,
            }
        },
        methods:{
            jump(u){
                this.$router.push(u)
            }
        },
        directives: {
            drag: function(el) {
                //获取当前元素
                let dragBox = el;
                dragBox.onmousemove = e => {
                    let brothers = e.currentTarget.firstElementChild;
                    let box = dragBox.childNodes[2];
                    box.style.opacity = 0;
                    brothers.style.display = 'block';
                    brothers.style.opacity = '0.95';
                    brothers.style.zIndex = '999'
                };
                dragBox.onmouseout = e => {
                    let brothers = e.currentTarget.firstElementChild;
                    let box = dragBox.childNodes[2];
                    box.style.opacity = 1;
                    box.style.display = 'block'
                    brothers.style.opacity = '0.95';
                    brothers.style.display = 'none';
                }
            }
        }
    }
</script>
<style scoped lang="less">
    .backg11{
        width: 100%;
        height: 6.7rem;
        background:url(../../img/ban1.jpg) no-repeat;
        background-size: 100% 100%;
    }
    .backg22{
        width: 100%;
        height: 6.7rem;
        background:url(../../img/ban2.jpg) no-repeat;
        background-size: 100% 100%;
    }
    .backg33{
        background:url(../../img/ban3.jpg) no-repeat;
    }
    .backg44{
        background:url(../../img/ban4.jpg) no-repeat;
    }
    .dynamic_ul li {
        h2 {
            padding: 0 .11rem;
 
            span:first-child {
                color: #20242A;
                font-size: 0.18rem;
            }
 
            span:nth-child(2) {
                color: #676767;
                font-size: 0.13rem;
                float: right;
            }
        }
 
        p {
            padding: 0.14rem 0.11rem;
            color: #676767;
            font-size: 0.14rem;
        }
 
        h3 {
            // height:1.4rem;
            position: relative;
            overflow: hidden;
 
            img {
                width: 100%;
                height: 100%;
            }
 
            span {
                display: inline-block;
                width: 50%;
                text-align: center;
                // background:linear-gradient(to right,rgba(3, 209, 245, 0) 0%,rgb(253, 251, 251,1) 150%);
                position: relative;
                bottom: 22px;
                left: 0;
                color: #fff;
            }
        }
    }
 
    @media (max-width: 750px) and (min-width: 0) {
        .dynamic_ul_card {
            height: auto !important;
 
            h2 {
                span {
                    padding-top: 0 !important;
                    font-size: 0.32rem !important;
                    font-family: PingFang-SC-Bold;
                    font-weight: bold;
                    color: rgba(32, 36, 42, 1);
                    line-height: 0.4rem;
                }
 
                .times {
                    display: none !important;
                }
            }
 
            .m_txt {
                font-size: 0.32rem;
                font-family: PingFang-SC-Regular;
                font-weight: 400;
                color: rgba(54, 54, 54, 1);
                line-height: 0.44rem !important;
                text-align: left;
                margin-top: 0;
            }
        }
 
        .pc_case {
            display: none;
        }
 
        .m_zhu {
            height: 9rem;
            background: url(../../img/z_back.png) no-repeat;
            background-size: 100% 100%;
 
            .title_a {
                font-size: 0.44rem;
                font-family: PingFang-SC-Medium;
                font-weight: 500;
                color: #fff;
                text-align: center;
                padding-top: 0.7rem;
                margin-bottom: 0.1rem;
            }
 
            .title_b {
                text-align: center;
                font-size: 0.24rem;
                font-family: PingFang-SC-Regular;
                font-weight: 400;
                color: #fff;
                margin-top: 0.1rem;
            }
 
            .content {
                font-size: 0.32rem;
                font-family: PingFang-SC-Regular;
                font-weight: 400;
                color: rgba(54, 54, 54, 1);
                line-height: 0.44rem;
                padding: 0.6rem 0.6rem 0.2rem;
            }
 
            .img_txt {
                display: flex;
                padding: 0.36rem 0.5rem 0.5rem;
 
                .line {
                    flex: 1;
                    text-align: center;
 
                    img {
                        width: 0.9rem;
                    }
 
                    .imgs {
                        float: left;
                    }
 
                    span {
                        display: inline-block;
                        text-align: center;
                        color: #838383;
                        margin-top: 0.1rem;
                    }
 
                    .s1 {
                        float: left;
                        margin-left: 0.1rem;
                    }
                    .s2{
                        float: right;
                    }
                }
 
            }
 
            .btn {
                width: 3.38rem;
                height: 1.04rem;
                margin-left: calc(50% - 1.69rem);
                border: 0.02rem solid rgba(82, 182, 231, 1);
                font-size: 0.3rem;
                font-family: PingFang-SC-Medium;
                font-weight: 500;
                color: rgba(3, 128, 190, 1);
                background-color: #fff;
                outline: none;
            }
        }
 
        .m_zhu2 {
            background: url(../../img/z_back2.png) no-repeat;
            background-size: 100% 100%;
        }
 
        .m_zhu3 {
            background: url(../../img/z_back3.png) no-repeat;
            background-size: 100% 100%;
        }
 
        .m_zhu4 {
            background: url(../../img/z_back4.png) no-repeat;
            background-size: 100% 100%;
        }
 
        .platform_ul {
            display: none;
        }
 
        .main {
            background: #f5f5f5;
        }
 
        .business {
            display: none;
        }
 
        .business_ul {
            display: none;
        }
 
        .content_title {
            margin: 0.9rem 0 0.6rem;
        }
 
        .title {
            display: none;
        }
 
        li .business_box {
            display: block;
            background: #fff;
            margin: 0 0.41rem 0.41rem 0.29rem;
 
            .business_box_t {
                background: url(../../img/business.png) 100% 100%;
 
                h2 {
                    text-align: center;
                    color: #fff;
                    padding: .25rem 0 .1rem;
                }
 
                p {
                    margin-top: 0.1rem;
                    font-size: 0.32rem;
                    line-height: 0.44rem;
                }
            }
        }
 
        .banner {
            background: url(../../img/indexBanner_m.png) no-repeat center;
            min-height: 11.44rem;
            background-size: cover;
 
            img {
                display: none;
            }
        }
 
        .business_ul li {
            margin-top: 0.3rem;
        }
 
        .business_box_b {
            width: 100%;
            overflow: hidden;
 
            div {
                margin-left: 0.19rem;
                text-align: center;
 
                p {
                    font-size: 0.24rem;
                    color: #838383;
                }
            }
        }
 
        .loadMoreBtn {
            text-align: center;
            margin: 0.23rem 0;
 
            .el-button {
                border: 2px solid #52B6E7;
                padding: 0.28rem 1.1rem;
                color: #0380BE;
                font-size: 0.3rem;
            }
        }
 
        .business_box li {
            float: left;
            width: 50%;
            display: flex;
            margin-top: 0.39rem;
            align-items: center;
        }
 
        .content_subtitle {
            display: none;
        }
 
        .programme_ul {
            width: 90%;
            margin: 0 auto;
 
            li {
                width: 20%;
                float: left;
                text-align: center;
                margin-bottom: 0.3rem;
 
                img {
                    max-height: 0.58rem;
                }
 
                p {
                    font-size: 0.24rem;
                    margin-top: 0.19rem;
                    color: #818181;
                }
            }
        }
 
        .case {
            background: url(../../img/caseBag_m.png) no-repeat;
            background-size: 100% 130%;
 
            img {
                display: none;
            }
 
            .caseContent {
                margin-top: 3.71rem;
 
                p {
                    width: 80%;
                    margin: 0 auto;
                    font-size: 0.32rem;
                    color: #363636;
                }
            }
        }
 
        .dynamic_ul li {
            text-align: center;
            padding: 0 0.2rem;
            margin-bottom: 0.3rem;
 
            h3 {
                height: 4rem;
 
                span {
                    left: -1.6rem;
                }
            }
        }
 
        .dynamic_ul li h3 span {
            background: transparent;
            bottom: 0.55rem;
        }
 
        .dynamic_ul_card {
            border: 1px solid #D1D1D1;
            padding: 0.3rem 0.2rem;
            background: #fff;
 
            h2 {
                font-weight: bold;
                font-size: 0.36rem;
 
                span {
                    font-size: 0.36rem;
                    color: #20242A;
                }
            }
 
            p {
                margin-top: 0.3rem;
                font-size: 0.32rem;
                line-height: 0.44rem;
                color: #363636;
            }
        }
 
        .particulars {
            display: none;
        }
 
        .el-carousel__item {
            width: 100%;
            background: #fff;
            padding: 0.6rem 0 0;
 
            h3 {
                width: 2rem;
                height: 2rem;
                margin: 0 auto;
            }
 
            h2 {
                text-align: center;
            }
 
            p {
                padding: .4rem;
            }
        }
    }
 
    @media all and (min-width: 751px) {
        .h33{
            height: 2.05rem;
        }
        .dynamic_ul li h3 span {
            bottom: 0.27rem;
        }
 
        .m_zhu {
            display: none;
        }
 
        .center {
            width: 90%;
            margin: 0 auto;
            box-sizing: border-box;
            padding: 3.92rem 2rem 0 2rem;
            text-align: center;
        }
 
        .wrapper-box {
            padding: .5rem 1.8rem;
        }
 
        .business_ul {
            display: flex;
            height: 3rem;
            margin: 0.69rem 0 .85rem;
        }
        .business_ul > li:hover {
            z-index: 1000;
        }
        .business_ul > li {
            display: inline-block;
            text-align: center;
            background: rgba(255, 255, 255, 1);
            flex: 1;
            height: 4rem;
            padding-bottom: 0.1rem;
            box-sizing: border-box;
            position: relative;
            -webkit-transition: transform 1s, opacity 1s;
            -moz-transition: transform 1s, opacity 1s;
            -o-transition: transform 1s, opacity 1s;
            transition: transform 1s, opacity 1s;
 
            .business {
                position: absolute;
                top: .1rem;
                left: .3rem;
                width: 85%;
                margin: 0 auto;
                padding-bottom: .2rem;
                box-shadow: 0px 0px 38px 0px rgba(79, 78, 80, 0.15);
            }
 
            h3 {
 
                img {
                    transition: all 0.6s;
                    -webkit-transition: all 0.6s;
                }
            }
 
            h2 {
                margin: 0.1rem 0 0.14rem;
 
                a {
                    font-size: 0.15rem;
                    text-decoration: underline;
                }
            }
 
            p {
                color: #838383;
                font-size: 0.1rem;
            }
 
            p:nth-child(4) {
                margin-top: 0.04rem;
            }
        }
 
        .business_box {
            display: none;
            width: 100%;
            height: auto;
            background: #fff;
            padding: 0 0 0.4rem 0;
 
            .business_box_t {
                background: url(../../img/business.png) 100% 100%;
                text-align: left;
                height: 1.4rem;
                color: #fff;
                padding: .2rem .1rem;
 
                h2 {
                    margin: 0;
                    font-size: .18rem;
                }
 
                p {
                    font-size: .035rem;
                    color: #fff;
                }
            }
 
            .business_box_b {
                display: flex;
                // margin-top: 0.28rem;
                padding: 0 .1rem;
                flex-wrap: wrap;
 
                li {
                    width: 33.3%;
                    margin-top: 0.28rem;
 
                    h3 {
                        img {
                            width: .2rem;
                            height: .2rem;
                            margin-bottom: 0.13rem;
                        }
                    }
 
                    div>p {
                        font-size: .02rem;
                        color: #838383;
                    }
                }
            }
        }
 
        .caseContent {
            display: none;
        }
 
 
        .platform_ul {
            display: flex;
            padding: 0 .8rem;
            margin-bottom: 1.2rem;
 
            li {
                flex: 1;
                margin: 0 .3rem;
                padding: 0.37rem;
                text-align: center;
 
                h3 {
                    width: 100%;
 
                    img {
                        width: .93rem;
                        height: .93rem;
                        margin: 0 auto;
                    }
                }
 
                h2 {
                    font-size: 0.14rem;
                    color: #20242A;
                    margin: 0.3rem 0 0.15rem;
                }
 
                p {
                    font-size: 0.11rem;
                    color: #838383;
                }
            }
        }
 
        .loadMoreBtn {
            display: none;
        }
 
        .particulars {
            margin-top: .2rem;
            padding: 0 .2rem;
            text-align: right;
            color: #14A9E5;
        }
 
        .content_subtitle {
            text-align: center;
            margin: 0.16rem 0 0.91rem;
 
            span {
                color: #838383;
                font-size: 0.16rem;
            }
        }
 
        .content {
            width: 100%;
            overflow: hidden;
        }
 
        .programme_ul {
            padding: .6rem 0;
            display: flex;
            flex-wrap: wrap;
 
            li {
                display: inline-block;
                width: .9rem;
                margin: 0.18rem 2%;
                text-align: center;
 
                h3 {
                    width: .58rem;
                    height: .58rem;
                    margin: 0 auto;
 
                    img {
                        width: 100%;
                        height: 100%;
                    }
                }
 
                p {
                    font-size: .14rem;
                    padding: .15rem 0;
                }
            }
        }
 
 
        .dynamic_ul {
            padding: .2rem .8rem;
            display: flex;
 
            li {
                width: 30%;
                margin-right: .5rem;
                margin-bottom: .3rem;
            }
 
            li:nth-child(3n) {
                margin: 0;
            }
        }
 
        .dynamic_ul_card {
            background: rgba(243, 243, 243, 1);
        }
 
        .wrapper:last-child .content_title {
            margin: 1rem 0 1.21rem;
        }
 
        .platform_ul>li:hover {
            transform: scale(1.2);
            box-shadow: 0px 0px 38px 0px rgba(79, 78, 80, 0.15);
        }
 
        .platform_ul-m {
            display: none;
        }
 
        .title-m {
            display: none;
        }
    }
</style>
<style>
    .el-carousel__indicator--vertical {
        padding: 0.1rem 0.12rem;
    }
 
    .el-carousel__indicators--vertical {
        right: 0.2rem;
    }
</style>