openatc-components 0.2.37 → 0.2.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/PatternWalkSvg.vue +429 -0
- package/package/kisscomps/components/PatternStatus/PatternStatus.vue +7 -4
- package/package/kisscomps/components/SchemeConfig/SchemeConfig.vue +181 -28
- package/package/kisscomps/components/SchemeConfig/azimuthlocking/index.vue +75 -32
- package/package/kisscomps/components/SchemeConfig/closePhaselControlModal/index.vue +15 -4
- package/package/kisscomps/components/SchemeConfig/lockingPhaselControlModal/index.vue +40 -17
- package/package/kisscomps/components/SchemeConfig/manualControlModalNew/index.vue +3 -3
- package/package/kisscomps/components/SchemeConfig/priorityControl/index.vue +22 -12
- package/package/kisscomps/components/SchemeConfig/realtimeStatusModal/index.vue +1 -1
- package/package/kisscomps/components/SchemeConfig/tentativeplancontrolmodal/index.vue +23 -12
- package/package/kisscomps/components/StageBord/StageBord.vue +1 -0
- package/package/kisscomps/components/Stages/index.vue +52 -11
- package/package/kisscomps/components/XRDDirSelector/XRDDirSelector.vue +30 -28
- package/package/kissui.min.js +1 -1
- package/package.json +1 -1
- package/src/i18n/language/en.js +6 -1
- package/src/i18n/language/zh.js +7 -2
- package/src/icons/svg/fangxiangsuoding.svg +1 -0
- package/src/icons/svg/jieduansuoding.svg +1 -0
- package/src/icons/svg/xiangweisuoding.svg +1 -0
- package/src/kisscomps/components/PatternStatus/PatternStatus.vue +7 -4
- package/src/kisscomps/components/SchemeConfig/SchemeConfig.vue +181 -28
- package/src/kisscomps/components/SchemeConfig/azimuthlocking/index.vue +75 -32
- package/src/kisscomps/components/SchemeConfig/closePhaselControlModal/index.vue +15 -4
- package/src/kisscomps/components/SchemeConfig/lockingPhaselControlModal/index.vue +40 -17
- package/src/kisscomps/components/SchemeConfig/manualControlModalNew/controlModelGroup.vue +128 -0
- package/src/kisscomps/components/SchemeConfig/manualControlModalNew/icon.vue +426 -0
- package/src/kisscomps/components/SchemeConfig/manualControlModalNew/index.vue +820 -0
- package/src/kisscomps/components/SchemeConfig/manualControlModalNew/othersIcon.vue +194 -0
- package/src/kisscomps/components/SchemeConfig/priorityControl/index.vue +22 -12
- package/src/kisscomps/components/SchemeConfig/realtimeStatusModal/index.vue +1 -1
- package/src/kisscomps/components/SchemeConfig/tentativeplancontrolmodal/index.vue +23 -12
- package/src/kisscomps/components/StageBord/StageBord.vue +1 -0
- package/src/kisscomps/components/Stages/index.vue +52 -11
- package/src/kisscomps/components/XRDDirSelector/XRDDirSelector.vue +30 -28
- package/src/views/intersection.vue +1 -1
- package/src/views/overView.vue +1 -1
- package/static/styles/commonkanban.scss +1 -0
- package/static/styles/light/theme/element-light.scss +4 -4
- package/static/styles/schemeconfig.scss +91 -59
- package/static/styles/stages.scss +1 -8
- package/src/node_modules/.package_versions.json +0 -1
|
@@ -484,6 +484,8 @@
|
|
|
484
484
|
</template>
|
|
485
485
|
<script>
|
|
486
486
|
import { mapState } from 'vuex'
|
|
487
|
+
import { getTheme } from '../../../utils/auth.js'
|
|
488
|
+
|
|
487
489
|
export default {
|
|
488
490
|
name: 'xdr-dir-selector',
|
|
489
491
|
props: {
|
|
@@ -554,196 +556,196 @@ export default {
|
|
|
554
556
|
id: 1,
|
|
555
557
|
name: '东西路段人行横道',
|
|
556
558
|
isshow: false,
|
|
557
|
-
color: '#040000',
|
|
559
|
+
color: getTheme() === 'light' ? '#040000' : '#fff',
|
|
558
560
|
lockColor: '#7ccc66'
|
|
559
561
|
},
|
|
560
562
|
{
|
|
561
563
|
id: 2,
|
|
562
564
|
name: '南北路段人行横道',
|
|
563
565
|
isshow: false,
|
|
564
|
-
color: '#040000',
|
|
566
|
+
color: getTheme() === 'light' ? '#040000' : '#fff',
|
|
565
567
|
lockColor: '#7ccc66'
|
|
566
568
|
},
|
|
567
569
|
{
|
|
568
570
|
id: 3,
|
|
569
571
|
name: 'X人行横道-\\',
|
|
570
572
|
isshow: false,
|
|
571
|
-
color: '#040000',
|
|
573
|
+
color: getTheme() === 'light' ? '#040000' : '#fff',
|
|
572
574
|
lockColor: '#7ccc66'
|
|
573
575
|
},
|
|
574
576
|
{
|
|
575
577
|
id: 4,
|
|
576
578
|
name: 'X人行横道-/',
|
|
577
579
|
isshow: false,
|
|
578
|
-
color: '#040000',
|
|
580
|
+
color: getTheme() === 'light' ? '#040000' : '#fff',
|
|
579
581
|
lockColor: '#7ccc66'
|
|
580
582
|
},
|
|
581
583
|
{
|
|
582
584
|
id: 5,
|
|
583
585
|
name: '北人行横道',
|
|
584
586
|
isshow: false,
|
|
585
|
-
color: '#040000',
|
|
587
|
+
color: getTheme() === 'light' ? '#040000' : '#fff',
|
|
586
588
|
lockColor: '#7ccc66'
|
|
587
589
|
},
|
|
588
590
|
{
|
|
589
591
|
id: 6,
|
|
590
592
|
name: '南人行横道',
|
|
591
593
|
isshow: false,
|
|
592
|
-
color: '#040000',
|
|
594
|
+
color: getTheme() === 'light' ? '#040000' : '#fff',
|
|
593
595
|
lockColor: '#7ccc66'
|
|
594
596
|
},
|
|
595
597
|
{
|
|
596
598
|
id: 7,
|
|
597
599
|
name: '东人行横道',
|
|
598
600
|
isshow: false,
|
|
599
|
-
color: '#040000',
|
|
601
|
+
color: getTheme() === 'light' ? '#040000' : '#fff',
|
|
600
602
|
lockColor: '#7ccc66'
|
|
601
603
|
},
|
|
602
604
|
{
|
|
603
605
|
id: 8,
|
|
604
606
|
name: '西人行横道',
|
|
605
607
|
isshow: false,
|
|
606
|
-
color: '#040000',
|
|
608
|
+
color: getTheme() === 'light' ? '#040000' : '#fff',
|
|
607
609
|
lockColor: '#7ccc66'
|
|
608
610
|
},
|
|
609
611
|
{
|
|
610
612
|
id: 9,
|
|
611
613
|
name: '西人行横道-下',
|
|
612
614
|
isshow: false,
|
|
613
|
-
color: '#040000',
|
|
615
|
+
color: getTheme() === 'light' ? '#040000' : '#fff',
|
|
614
616
|
lockColor: '#7ccc66'
|
|
615
617
|
},
|
|
616
618
|
{
|
|
617
619
|
id: 10,
|
|
618
620
|
name: '西人行横道-上',
|
|
619
621
|
isshow: false,
|
|
620
|
-
color: '#040000',
|
|
622
|
+
color: getTheme() === 'light' ? '#040000' : '#fff',
|
|
621
623
|
lockColor: '#7ccc66'
|
|
622
624
|
},
|
|
623
625
|
{
|
|
624
626
|
id: 11,
|
|
625
627
|
name: '东人行横道-上',
|
|
626
628
|
isshow: false,
|
|
627
|
-
color: '#040000',
|
|
629
|
+
color: getTheme() === 'light' ? '#040000' : '#fff',
|
|
628
630
|
lockColor: '#7ccc66'
|
|
629
631
|
},
|
|
630
632
|
{
|
|
631
633
|
id: 12,
|
|
632
634
|
name: '东人行横道-下',
|
|
633
635
|
isshow: false,
|
|
634
|
-
color: '#040000',
|
|
636
|
+
color: getTheme() === 'light' ? '#040000' : '#fff',
|
|
635
637
|
lockColor: '#7ccc66'
|
|
636
638
|
},
|
|
637
639
|
{
|
|
638
640
|
id: 13,
|
|
639
641
|
name: '南人行横道-右',
|
|
640
642
|
isshow: false,
|
|
641
|
-
color: '#040000',
|
|
643
|
+
color: getTheme() === 'light' ? '#040000' : '#fff',
|
|
642
644
|
lockColor: '#7ccc66'
|
|
643
645
|
},
|
|
644
646
|
{
|
|
645
647
|
id: 14,
|
|
646
648
|
name: '南人行横道-左',
|
|
647
649
|
isshow: false,
|
|
648
|
-
color: '#040000',
|
|
650
|
+
color: getTheme() === 'light' ? '#040000' : '#fff',
|
|
649
651
|
lockColor: '#7ccc66'
|
|
650
652
|
},
|
|
651
653
|
{
|
|
652
654
|
id: 15,
|
|
653
655
|
name: '北人行横道-右',
|
|
654
656
|
isshow: false,
|
|
655
|
-
color: '#040000',
|
|
657
|
+
color: getTheme() === 'light' ? '#040000' : '#fff',
|
|
656
658
|
lockColor: '#7ccc66'
|
|
657
659
|
},
|
|
658
660
|
{
|
|
659
661
|
id: 16,
|
|
660
662
|
name: '北人行横道-左',
|
|
661
663
|
isshow: false,
|
|
662
|
-
color: '#040000',
|
|
664
|
+
color: getTheme() === 'light' ? '#040000' : '#fff',
|
|
663
665
|
lockColor: '#7ccc66'
|
|
664
666
|
},
|
|
665
667
|
{
|
|
666
668
|
id: 17,
|
|
667
669
|
name: '东南人行横道',
|
|
668
670
|
isshow: false,
|
|
669
|
-
color: '#040000',
|
|
671
|
+
color: getTheme() === 'light' ? '#040000' : '#fff',
|
|
670
672
|
lockColor: '#7ccc66'
|
|
671
673
|
},
|
|
672
674
|
{
|
|
673
675
|
id: 18,
|
|
674
676
|
name: '西南人行横道',
|
|
675
677
|
isshow: false,
|
|
676
|
-
color: '#040000',
|
|
678
|
+
color: getTheme() === 'light' ? '#040000' : '#fff',
|
|
677
679
|
lockColor: '#7ccc66'
|
|
678
680
|
},
|
|
679
681
|
{
|
|
680
682
|
id: 19,
|
|
681
683
|
name: '东北人行横道',
|
|
682
684
|
isshow: false,
|
|
683
|
-
color: '#040000',
|
|
685
|
+
color: getTheme() === 'light' ? '#040000' : '#fff',
|
|
684
686
|
lockColor: '#7ccc66'
|
|
685
687
|
},
|
|
686
688
|
{
|
|
687
689
|
id: 20,
|
|
688
690
|
name: '西北人行横道',
|
|
689
691
|
isshow: false,
|
|
690
|
-
color: '#040000',
|
|
692
|
+
color: getTheme() === 'light' ? '#040000' : '#fff',
|
|
691
693
|
lockColor: '#7ccc66'
|
|
692
694
|
},
|
|
693
695
|
{
|
|
694
696
|
id: 21,
|
|
695
697
|
name: '东南人行横道-上',
|
|
696
698
|
isshow: false,
|
|
697
|
-
color: '#040000',
|
|
699
|
+
color: getTheme() === 'light' ? '#040000' : '#fff',
|
|
698
700
|
lockColor: '#7ccc66'
|
|
699
701
|
},
|
|
700
702
|
{
|
|
701
703
|
id: 22,
|
|
702
704
|
name: '东南人行横道-下',
|
|
703
705
|
isshow: false,
|
|
704
|
-
color: '#040000',
|
|
706
|
+
color: getTheme() === 'light' ? '#040000' : '#fff',
|
|
705
707
|
lockColor: '#7ccc66'
|
|
706
708
|
},
|
|
707
709
|
{
|
|
708
710
|
id: 23,
|
|
709
711
|
name: '西南人行横道-上',
|
|
710
712
|
isshow: false,
|
|
711
|
-
color: '#040000',
|
|
713
|
+
color: getTheme() === 'light' ? '#040000' : '#fff',
|
|
712
714
|
lockColor: '#7ccc66'
|
|
713
715
|
},
|
|
714
716
|
{
|
|
715
717
|
id: 24,
|
|
716
718
|
name: '西南人行横道-下',
|
|
717
719
|
isshow: false,
|
|
718
|
-
color: '#040000',
|
|
720
|
+
color: getTheme() === 'light' ? '#040000' : '#fff',
|
|
719
721
|
lockColor: '#7ccc66'
|
|
720
722
|
},
|
|
721
723
|
{
|
|
722
724
|
id: 25,
|
|
723
725
|
name: '东北人行横道-上',
|
|
724
726
|
isshow: false,
|
|
725
|
-
color: '#040000',
|
|
727
|
+
color: getTheme() === 'light' ? '#040000' : '#fff',
|
|
726
728
|
lockColor: '#7ccc66'
|
|
727
729
|
},
|
|
728
730
|
{
|
|
729
731
|
id: 26,
|
|
730
732
|
name: '东北人行横道-下',
|
|
731
733
|
isshow: false,
|
|
732
|
-
color: '#040000',
|
|
734
|
+
color: getTheme() === 'light' ? '#040000' : '#fff',
|
|
733
735
|
lockColor: '#7ccc66'
|
|
734
736
|
},
|
|
735
737
|
{
|
|
736
738
|
id: 27,
|
|
737
739
|
name: '西北人行横道-上',
|
|
738
740
|
isshow: false,
|
|
739
|
-
color: '#040000',
|
|
741
|
+
color: getTheme() === 'light' ? '#040000' : '#fff',
|
|
740
742
|
lockColor: '#7ccc66'
|
|
741
743
|
},
|
|
742
744
|
{
|
|
743
745
|
id: 28,
|
|
744
746
|
name: '西北人行横道-下',
|
|
745
747
|
isshow: false,
|
|
746
|
-
color: '#040000',
|
|
748
|
+
color: getTheme() === 'light' ? '#040000' : '#fff',
|
|
747
749
|
lockColor: '#7ccc66'
|
|
748
750
|
}
|
|
749
751
|
],
|
|
@@ -144,7 +144,7 @@ export default {
|
|
|
144
144
|
// agentId: '12007_390',
|
|
145
145
|
// agentId: '12014',
|
|
146
146
|
reqUrl: 'http://192.168.13.103:10003/openatc',
|
|
147
|
-
Token: '
|
|
147
|
+
Token: 'eyJraWQiOiIxNzE1NzM1NTU3NjcxIiwidHlwIjoiSldUIiwiYWxnIjoiSFMyNTYifQ.eyJzdWIiOiJhZG1pbiIsImV4cCI6MTcxNTc3ODc1NywiaWF0IjoxNzE1NzM1NTU3fQ.7ED5tQWYBpdv7HcBjZ_KSZprkcstns9ybCCwcrj5qZQ',
|
|
148
148
|
// agentId: '30003-352',
|
|
149
149
|
// reqUrl: 'https://kints-dev.devdolphin.com/openatc',
|
|
150
150
|
// Token: 'eyJraWQiOiIxNjUwNTA5MDI2ODk2IiwidHlwIjoiSldUIiwiYWxnIjoiSFMyNTYifQ.eyJzdWIiOiJ4aWFvbWluZyIsImV4cCI6MTczNjkwOTAyNiwiaWF0IjoxNjUwNTA5MDI2fQ.-s4T-uMRmB2zf9yer87USKQXLY1a12Zq5lCOnqjNmfA',
|
package/src/views/overView.vue
CHANGED
|
@@ -20,7 +20,7 @@ export default {
|
|
|
20
20
|
modeName: '交警遥控',
|
|
21
21
|
controlName: '步进',
|
|
22
22
|
agentId: 'jmlxhl',
|
|
23
|
-
Token: '
|
|
23
|
+
Token: 'eyJraWQiOiIxNzE1NzM1NTU3NjcxIiwidHlwIjoiSldUIiwiYWxnIjoiSFMyNTYifQ.eyJzdWIiOiJhZG1pbiIsImV4cCI6MTcxNTc3ODc1NywiaWF0IjoxNzE1NzM1NTU3fQ.7ED5tQWYBpdv7HcBjZ_KSZprkcstns9ybCCwcrj5qZQ',
|
|
24
24
|
reqUrl: 'http://192.168.13.103:10003/openatc'
|
|
25
25
|
}
|
|
26
26
|
},
|
|
@@ -13,17 +13,17 @@
|
|
|
13
13
|
$--color-black: #f7f8fa;
|
|
14
14
|
$--color-primary: #299BCC;
|
|
15
15
|
// $--color-white: #202940;
|
|
16
|
-
// $--color-black: #
|
|
16
|
+
// $--color-black: #f7f8fa;
|
|
17
17
|
// $--background-color-base: #191F34;
|
|
18
18
|
// $--color-text-primary: #FFFFFF;
|
|
19
19
|
// $--color-text-regular: #FFFFFF;
|
|
20
20
|
// $--color-text-secondary: #B9BABF;
|
|
21
21
|
// $--color-text-placeholder: #8D9498;
|
|
22
22
|
// $--color-info: #8D9498;
|
|
23
|
-
// $--border-color-base: #
|
|
23
|
+
// $--border-color-base: #DCDFE6;
|
|
24
24
|
// $--border-color-light: #30384D;
|
|
25
|
-
// $--border-color-lighter: #
|
|
26
|
-
// $--border-color-extra-light:#
|
|
25
|
+
// $--border-color-lighter: #EBEEF5;
|
|
26
|
+
// $--border-color-extra-light:#F2F6FC;
|
|
27
27
|
// $--box-shadow-base: 0 2px 4px 0 rgba(0, 0, 0, .12), 0 0 6px rgba(0, 0, 0, .04);
|
|
28
28
|
// $--button-primary-font-color: #FFFFFF;
|
|
29
29
|
// $--button-info-font-color: #FFFFFF;
|
|
@@ -57,14 +57,14 @@
|
|
|
57
57
|
.model-label, .stage-label {
|
|
58
58
|
width: 100PX;
|
|
59
59
|
font-size: 14PX;
|
|
60
|
-
font-weight:
|
|
61
|
-
color:
|
|
60
|
+
font-weight: 700;
|
|
61
|
+
color: $--color-text-secondary;;
|
|
62
62
|
line-height: 28PX;
|
|
63
63
|
padding-right: 12PX;
|
|
64
64
|
}
|
|
65
65
|
.model-label-title {
|
|
66
66
|
font-size: 14PX;
|
|
67
|
-
font-weight:
|
|
67
|
+
font-weight: 700;
|
|
68
68
|
line-height: 28PX;
|
|
69
69
|
color: $--color-text-secondary;
|
|
70
70
|
padding-right: 12PX;
|
|
@@ -74,8 +74,8 @@
|
|
|
74
74
|
text-align: center;
|
|
75
75
|
cursor:pointer;
|
|
76
76
|
width: 70PX;
|
|
77
|
-
height:
|
|
78
|
-
background-color: #edf6ff;
|
|
77
|
+
height: 80PX;
|
|
78
|
+
// background-color: #edf6ff;
|
|
79
79
|
border-radius: 6PX;
|
|
80
80
|
line-height: 1.15;
|
|
81
81
|
.patternWalk{
|
|
@@ -88,22 +88,28 @@
|
|
|
88
88
|
height: 24PX;
|
|
89
89
|
}
|
|
90
90
|
.single-model .model-icon {
|
|
91
|
-
margin
|
|
91
|
+
margin: 0 auto;
|
|
92
92
|
width: 24PX;
|
|
93
93
|
height: 24PX;
|
|
94
|
+
color: $--color-text-regular;
|
|
94
95
|
}
|
|
95
96
|
.single-model-select {
|
|
97
|
+
// background-color: #299BCC !important;
|
|
98
|
+
// border: solid 1PX #409eff;
|
|
99
|
+
}
|
|
100
|
+
.single-model-new {
|
|
96
101
|
margin-right: 10PX;
|
|
102
|
+
padding-top: 13PX;
|
|
97
103
|
text-align: center;
|
|
98
104
|
cursor:pointer;
|
|
99
105
|
width: 70PX;
|
|
100
|
-
height:
|
|
101
|
-
background-color: #
|
|
106
|
+
height: 80PX;
|
|
107
|
+
background-color: #edf6ff;
|
|
102
108
|
border-radius: 6PX;
|
|
103
|
-
|
|
109
|
+
line-height: 1.15;
|
|
104
110
|
}
|
|
105
111
|
.single-model-name {
|
|
106
|
-
margin-top:
|
|
112
|
+
margin-top: 13PX;
|
|
107
113
|
font-size: 12PX;
|
|
108
114
|
font-weight: normal;
|
|
109
115
|
font-stretch: normal;
|
|
@@ -111,6 +117,15 @@
|
|
|
111
117
|
letter-spacing: 0PX;
|
|
112
118
|
color: #606266;
|
|
113
119
|
}
|
|
120
|
+
.single-model-name-theme {
|
|
121
|
+
margin-top: 13PX;
|
|
122
|
+
font-size: 13PX;
|
|
123
|
+
font-weight: normal;
|
|
124
|
+
font-stretch: normal;
|
|
125
|
+
// line-height: 22PX;
|
|
126
|
+
letter-spacing: 0PX;
|
|
127
|
+
color: $--color-text-regular;
|
|
128
|
+
}
|
|
114
129
|
.current-stage-num {
|
|
115
130
|
margin-top: 3PX;
|
|
116
131
|
font-size: 12PX;
|
|
@@ -207,7 +222,7 @@
|
|
|
207
222
|
}
|
|
208
223
|
// 手动控制弹框
|
|
209
224
|
.manual-control-modal{
|
|
210
|
-
padding: 21PX 0PX 21PX 28PX;
|
|
225
|
+
// padding: 21PX 0PX 21PX 28PX;
|
|
211
226
|
min-width: 360PX;
|
|
212
227
|
overflow: auto;
|
|
213
228
|
.title {
|
|
@@ -226,7 +241,7 @@
|
|
|
226
241
|
// width: 100% !important;
|
|
227
242
|
}
|
|
228
243
|
.model-label {
|
|
229
|
-
margin-top:
|
|
244
|
+
margin-top: 6PX;
|
|
230
245
|
}
|
|
231
246
|
.stage-label {
|
|
232
247
|
margin-top: 30PX;
|
|
@@ -240,7 +255,6 @@
|
|
|
240
255
|
}
|
|
241
256
|
.el-form-item__label {
|
|
242
257
|
font-size: 14PX;
|
|
243
|
-
font-weight: 400;
|
|
244
258
|
color: $--color-text-secondary;
|
|
245
259
|
}
|
|
246
260
|
.el-dialog__footer {
|
|
@@ -264,25 +278,68 @@
|
|
|
264
278
|
text-align: left;
|
|
265
279
|
}
|
|
266
280
|
}
|
|
267
|
-
.footer {
|
|
268
|
-
button {
|
|
269
|
-
width: 56PX;
|
|
270
|
-
height: 32PX;
|
|
271
|
-
padding: 0;
|
|
272
|
-
text-align: center;
|
|
273
|
-
line-height: 30PX;
|
|
274
|
-
font-size: 12PX;
|
|
275
|
-
font-weight: normal;
|
|
276
|
-
font-stretch: normal;
|
|
277
|
-
}
|
|
278
|
-
}
|
|
279
281
|
.model-label, .stage-label {
|
|
280
282
|
color: $--color-text-secondary;
|
|
281
283
|
}
|
|
282
284
|
}
|
|
285
|
+
.manual-control-modal-new {
|
|
286
|
+
padding: 20PX 20PX 0 20PX;
|
|
287
|
+
.el-tabs__nav.is-top {
|
|
288
|
+
width: 100%;
|
|
289
|
+
}
|
|
290
|
+
.el-tabs--card>.el-tabs__header .el-tabs__nav {
|
|
291
|
+
border-color: $--border-color-lighter;
|
|
292
|
+
}
|
|
293
|
+
.el-tabs--card>.el-tabs__header .el-tabs__item {
|
|
294
|
+
background-color: $--color-black;
|
|
295
|
+
width: 25%;
|
|
296
|
+
text-align: center;
|
|
297
|
+
border-left: none;
|
|
298
|
+
border-bottom-color: $--border-color-lighter;
|
|
299
|
+
}
|
|
300
|
+
.el-tabs--card>.el-tabs__header .el-tabs__item.is-active {
|
|
301
|
+
background-color: $--color-white;
|
|
302
|
+
border-bottom: none;
|
|
303
|
+
}
|
|
304
|
+
.el-tabs__content {
|
|
305
|
+
overflow-x: auto;
|
|
306
|
+
}
|
|
307
|
+
.group-control {
|
|
308
|
+
margin-bottom: 20PX;
|
|
309
|
+
overflow: hidden;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.common-config {
|
|
313
|
+
.el-form-item__label {
|
|
314
|
+
color: $--color-text-secondary;
|
|
315
|
+
}
|
|
316
|
+
.el-form-item {
|
|
317
|
+
margin-bottom: 0PX;
|
|
318
|
+
}
|
|
319
|
+
.el-input-number {
|
|
320
|
+
.el-input__inner {
|
|
321
|
+
text-align: left;
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
.footer {
|
|
327
|
+
float: right;
|
|
328
|
+
margin: 28PX 0PX 40PX 0;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
.main-patternstatus {
|
|
332
|
+
margin-bottom: 0;
|
|
333
|
+
}
|
|
334
|
+
.closephasekanban:last-child {
|
|
335
|
+
margin-bottom: 0;
|
|
336
|
+
}
|
|
337
|
+
.stage-part {
|
|
338
|
+
margin-top: 6PX;
|
|
339
|
+
}
|
|
340
|
+
}
|
|
283
341
|
.priority-control{
|
|
284
342
|
height: 100%;
|
|
285
|
-
padding: 21PX 0PX 21PX 28PX;
|
|
286
343
|
min-width: 360PX;
|
|
287
344
|
overflow: auto;
|
|
288
345
|
.title {
|
|
@@ -299,32 +356,19 @@
|
|
|
299
356
|
}
|
|
300
357
|
.footer {
|
|
301
358
|
float: right;
|
|
302
|
-
margin: 38PX 24PX 40PX 0;
|
|
303
|
-
button {
|
|
304
|
-
width: 56PX;
|
|
305
|
-
height: 32PX;
|
|
306
|
-
padding: 0;
|
|
307
|
-
text-align: center;
|
|
308
|
-
line-height: 30PX;
|
|
309
|
-
font-size: 12PX;
|
|
310
|
-
font-weight: normal;
|
|
311
|
-
font-stretch: normal;
|
|
312
|
-
}
|
|
313
359
|
}
|
|
314
360
|
.el-input--mini{
|
|
315
361
|
width: 90%;
|
|
316
362
|
}
|
|
317
363
|
.el-form-item {
|
|
318
364
|
margin-bottom: 10PX;
|
|
365
|
+
margin-right: 10PX;
|
|
319
366
|
}
|
|
320
367
|
.el-form-item__label {
|
|
321
368
|
font-size: 14PX;
|
|
322
|
-
font-weight:
|
|
369
|
+
font-weight: 700;
|
|
323
370
|
color: $--color-text-secondary;
|
|
324
371
|
}
|
|
325
|
-
.el-select {
|
|
326
|
-
width: 90%;
|
|
327
|
-
}
|
|
328
372
|
.el-input-number {
|
|
329
373
|
width: 100%;
|
|
330
374
|
.el-input__inner {
|
|
@@ -334,7 +378,7 @@
|
|
|
334
378
|
}
|
|
335
379
|
.tentativeplan-control{
|
|
336
380
|
// height: 100%;
|
|
337
|
-
padding: 21PX 0PX 21PX 28PX;
|
|
381
|
+
// padding: 21PX 0PX 21PX 28PX;
|
|
338
382
|
min-width: 360PX;
|
|
339
383
|
overflow: hidden !important;
|
|
340
384
|
.forbiddenstage{
|
|
@@ -362,6 +406,7 @@
|
|
|
362
406
|
color: $--color-text-primary;
|
|
363
407
|
padding: 1px 1px;
|
|
364
408
|
box-sizing: border-box;
|
|
409
|
+
font-size: 14PX;
|
|
365
410
|
}
|
|
366
411
|
.title {
|
|
367
412
|
margin-bottom: 24PX;
|
|
@@ -378,6 +423,9 @@
|
|
|
378
423
|
.col-inner{
|
|
379
424
|
// width: 100% !important;
|
|
380
425
|
}
|
|
426
|
+
.model-label, .stage-label {
|
|
427
|
+
color: $--color-text-secondary;
|
|
428
|
+
}
|
|
381
429
|
.model-label {
|
|
382
430
|
margin-top: 14PX;
|
|
383
431
|
}
|
|
@@ -389,14 +437,13 @@
|
|
|
389
437
|
}
|
|
390
438
|
.footer {
|
|
391
439
|
float: right;
|
|
392
|
-
margin: 38PX 24PX 40PX 0;
|
|
393
440
|
}
|
|
394
441
|
.el-form-item {
|
|
395
442
|
margin-bottom: 0PX;
|
|
443
|
+
margin-right: 10PX;
|
|
396
444
|
}
|
|
397
445
|
.el-form-item__label {
|
|
398
446
|
font-size: 14PX;
|
|
399
|
-
font-weight: 400;
|
|
400
447
|
color: $--color-text-secondary;
|
|
401
448
|
}
|
|
402
449
|
.el-dialog__footer {
|
|
@@ -405,27 +452,12 @@
|
|
|
405
452
|
.el-dialog__header {
|
|
406
453
|
padding: 19PX 30PX;
|
|
407
454
|
}
|
|
408
|
-
.el-select {
|
|
409
|
-
width: 90%;
|
|
410
|
-
}
|
|
411
455
|
.el-input-number {
|
|
412
456
|
width: 100%;
|
|
413
457
|
.el-input__inner {
|
|
414
458
|
text-align: left;
|
|
415
459
|
}
|
|
416
460
|
}
|
|
417
|
-
.footer {
|
|
418
|
-
button {
|
|
419
|
-
width: 56PX;
|
|
420
|
-
height: 32PX;
|
|
421
|
-
padding: 0;
|
|
422
|
-
text-align: center;
|
|
423
|
-
line-height: 30PX;
|
|
424
|
-
font-size: 12PX;
|
|
425
|
-
font-weight: normal;
|
|
426
|
-
font-stretch: normal;
|
|
427
|
-
}
|
|
428
|
-
}
|
|
429
461
|
.model-label, .stage-label {
|
|
430
462
|
color: $--color-text-secondary;
|
|
431
463
|
}
|
|
@@ -35,14 +35,7 @@
|
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
.single-model-select {
|
|
38
|
-
|
|
39
|
-
text-align: center;
|
|
40
|
-
cursor:pointer;
|
|
41
|
-
width: 70px;
|
|
42
|
-
height: 65px;
|
|
43
|
-
background-color: #a2cfff;
|
|
44
|
-
border-radius: 6px;
|
|
45
|
-
// border: solid 1PX #409eff;
|
|
38
|
+
// background-color: #a2cfff;
|
|
46
39
|
}
|
|
47
40
|
.single-model-name {
|
|
48
41
|
margin-top: 3px;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{}
|