openatc-components 0.2.70 → 0.2.72
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/BoardCard/BoardCard.vue +0 -4
- package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/PatternWalkSvg.vue +429 -0
- package/package/kisscomps/components/IntersectionMap/crossDirection/crossDiagram.vue +65 -11
- package/package/kisscomps/components/PatternStatus/PatternStatus.vue +17 -94
- package/package/kisscomps/components/SchemeConfig/SchemeConfig.vue +5 -98
- package/package/kisscomps/components/SchemeConfig/azimuthlocking/index.vue +11 -7
- package/package/kisscomps/components/SchemeConfig/closePhaselControlModal/index.vue +9 -5
- package/package/kisscomps/components/SchemeConfig/lockingPhaselControlModal/index.vue +7 -5
- package/package/kisscomps/components/SchemeConfig/manualControlModalNew/index.vue +41 -10
- package/package/kisscomps/components/SchemeConfig/priorityControl/index.vue +9 -5
- package/package/kisscomps/components/SchemeConfig/realtimeStatusModal/index.vue +1 -1
- package/package/kisscomps/components/SchemeConfig/tentativeplancontrolmodal/index.vue +12 -8
- package/package/kisscomps/components/Stages/index.vue +2 -1
- package/package/kisscomps/components/patternList/patternList.vue +0 -4
- package/package/kissui.min.js +1 -1
- package/package.json +1 -1
- package/src/api/cross.js +4 -0
- package/src/api/template.js +4 -0
- package/src/i18n/language/zh.js +2 -2
- package/src/kisscomps/components/BoardCard/BoardCard.vue +0 -4
- package/src/kisscomps/components/IntersectionMap/crossDirection/crossDiagram.vue +65 -11
- package/src/kisscomps/components/PatternStatus/PatternStatus.vue +17 -94
- package/src/kisscomps/components/SchemeConfig/SchemeConfig.vue +5 -98
- package/src/kisscomps/components/SchemeConfig/azimuthlocking/index.vue +11 -7
- package/src/kisscomps/components/SchemeConfig/closePhaselControlModal/index.vue +9 -5
- package/src/kisscomps/components/SchemeConfig/lockingPhaselControlModal/index.vue +7 -5
- package/src/kisscomps/components/SchemeConfig/manualControlModalNew/index.vue +41 -10
- package/src/kisscomps/components/SchemeConfig/priorityControl/index.vue +9 -5
- package/src/kisscomps/components/SchemeConfig/realtimeStatusModal/index.vue +1 -1
- package/src/kisscomps/components/SchemeConfig/tentativeplancontrolmodal/index.vue +12 -8
- package/src/kisscomps/components/Stages/index.vue +2 -1
- package/src/kisscomps/components/patternList/patternList.vue +0 -4
- package/src/views/overView.vue +1 -1
- package/static/styles/commonkanban.scss +3 -3
- package/static/styles/overview.scss +2 -2
- package/static/styles/schemeconfig.scss +38 -23
- package/src/node_modules/.package_versions.json +0 -1
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* See the Mulan PSL v2 for more details.
|
|
11
11
|
**/
|
|
12
12
|
<template>
|
|
13
|
-
<div class="manual-control-modal closephase-control">
|
|
13
|
+
<div class="manual-control-modal closephase-control manual-common-content">
|
|
14
14
|
<!-- <div class="title" style="margin-bottom: 18px;">{{$t('openatccomponents.overview.phaseclosecontrol')}}</div> -->
|
|
15
15
|
<el-row>
|
|
16
16
|
<el-col :span="24">
|
|
@@ -61,13 +61,13 @@
|
|
|
61
61
|
</div>
|
|
62
62
|
</el-row>
|
|
63
63
|
<div class="footer" v-if="realtimeStatusModalvisible">
|
|
64
|
-
<el-button @click="handleClose()">{{$t('openatccomponents.button.Back')}}</el-button>
|
|
65
|
-
<el-button
|
|
64
|
+
<el-button v-if="isShowBack" @click="handleClose()">{{$t('openatccomponents.button.Back')}}</el-button>
|
|
65
|
+
<el-button @click="toAutoControl()" v-if="isHasPermission('configer:manual:renew')">{{$t('openatccomponents.overview.recovery')}}</el-button>
|
|
66
66
|
<el-button type="primary" @click="handleManualControl()">{{$t('openatccomponents.overview.implement')}}</el-button>
|
|
67
67
|
</div>
|
|
68
68
|
<div class="footer" v-if="!realtimeStatusModalvisible">
|
|
69
|
-
<el-button @click="handleClose()">{{$t('openatccomponents.button.Back')}}</el-button>
|
|
70
|
-
<el-button
|
|
69
|
+
<el-button v-if="isShowBack" @click="handleClose()">{{$t('openatccomponents.button.Back')}}</el-button>
|
|
70
|
+
<el-button @click="toAutoControl()" v-if="isHasPermission('configer:manual:renew')">{{$t('openatccomponents.overview.recovery')}}</el-button>
|
|
71
71
|
<el-button type="primary" @click="handleManualControl()">{{$t('openatccomponents.overview.comfirm')}}</el-button>
|
|
72
72
|
</div>
|
|
73
73
|
</div>
|
|
@@ -118,6 +118,10 @@ export default {
|
|
|
118
118
|
},
|
|
119
119
|
roadDirection: {
|
|
120
120
|
type: String
|
|
121
|
+
},
|
|
122
|
+
isShowBack: {
|
|
123
|
+
type: Boolean,
|
|
124
|
+
default: true
|
|
121
125
|
}
|
|
122
126
|
},
|
|
123
127
|
data () {
|
|
@@ -10,12 +10,11 @@
|
|
|
10
10
|
* See the Mulan PSL v2 for more details.
|
|
11
11
|
**/
|
|
12
12
|
<template>
|
|
13
|
-
<div class="lockingphase-control manual-
|
|
13
|
+
<div class="lockingphase-control manual-common-content">
|
|
14
14
|
<!-- <div class="title" style="margin-bottom: 18px;">{{$t('openatccomponents.overview.phaselocking')}}</div> -->
|
|
15
15
|
<el-row>
|
|
16
16
|
<el-col :span="12">
|
|
17
17
|
<el-form
|
|
18
|
-
:inline="true"
|
|
19
18
|
ref="manual"
|
|
20
19
|
label-position="left"
|
|
21
20
|
:model="manualInfo"
|
|
@@ -41,7 +40,6 @@
|
|
|
41
40
|
</el-col>
|
|
42
41
|
<el-col :span="12">
|
|
43
42
|
<el-form
|
|
44
|
-
:inline="true"
|
|
45
43
|
ref="manual"
|
|
46
44
|
label-position="left"
|
|
47
45
|
:model="manualInfo"
|
|
@@ -90,8 +88,8 @@
|
|
|
90
88
|
</div>
|
|
91
89
|
</el-row>
|
|
92
90
|
<div class="footer">
|
|
93
|
-
<el-button @click="handleClose()">{{$t('openatccomponents.button.Back')}}</el-button>
|
|
94
|
-
<el-button
|
|
91
|
+
<el-button v-if="isShowBack" @click="handleClose()">{{$t('openatccomponents.button.Back')}}</el-button>
|
|
92
|
+
<el-button @click="toAutoControl()" v-if="isHasPermission('configer:manual:renew')">{{$t('openatccomponents.overview.recovery')}}</el-button>
|
|
95
93
|
<el-button type="primary" @click="handleLockPhase()">{{lockPhaseBtnName}}</el-button>
|
|
96
94
|
</div>
|
|
97
95
|
</div>
|
|
@@ -118,6 +116,10 @@ export default {
|
|
|
118
116
|
},
|
|
119
117
|
roadDirection: {
|
|
120
118
|
type: String
|
|
119
|
+
},
|
|
120
|
+
isShowBack: {
|
|
121
|
+
type: Boolean,
|
|
122
|
+
default: true
|
|
121
123
|
}
|
|
122
124
|
},
|
|
123
125
|
data () {
|
|
@@ -54,6 +54,7 @@
|
|
|
54
54
|
:phaseList="phaseList"
|
|
55
55
|
:patternStatus="statusData"
|
|
56
56
|
:lockPhaseBtnName="lockPhaseBtnName"
|
|
57
|
+
:isShowBack="isShowBack"
|
|
57
58
|
@closePhaseBack="handleClose"
|
|
58
59
|
@closePhaseControl="closePhaseControl"
|
|
59
60
|
@toAutoControl="toAutoControl" />
|
|
@@ -63,9 +64,20 @@
|
|
|
63
64
|
:realtimeStatusModalvisible="realtimeStatusModalvisible"
|
|
64
65
|
:phaseList="phaseList"
|
|
65
66
|
:patternStatus="statusData"
|
|
67
|
+
:isShowBack="isShowBack"
|
|
66
68
|
@closePhaseBack="handleClose"
|
|
67
69
|
@toAutoControl="toAutoControl"
|
|
68
70
|
/>
|
|
71
|
+
|
|
72
|
+
<div class="footer" v-if="realtimeStatusModalvisible && ((activeName === 'residentcontrol' && preselecttype !== '相位锁定' && preselecttype !== '方向锁定') || activeName === 'specialcontrol' || activeName === 'schemeselection')">
|
|
73
|
+
<el-button v-if="isShowBack" @click="handleClose()">{{$t('openatccomponents.button.Back')}}</el-button>
|
|
74
|
+
<el-button @click="toAutoControl()" v-if="isHasPermission('configer:manual:renew')">{{$t('openatccomponents.overview.recovery')}}</el-button>
|
|
75
|
+
<el-button type="primary" @click="handleManualControl()">{{$t('openatccomponents.overview.implement')}}</el-button>
|
|
76
|
+
</div>
|
|
77
|
+
<div class="footer" v-if="!realtimeStatusModalvisible && ((activeName === 'residentcontrol' && preselecttype !== '相位锁定' && preselecttype !== '方向锁定') || activeName === 'specialcontrol' || activeName === 'schemeselection')">
|
|
78
|
+
<el-button @click="toAutoControl()" v-if="isHasPermission('configer:manual:renew')">{{$t('openatccomponents.overview.recovery')}}</el-button>
|
|
79
|
+
<el-button class="3" type="primary" @click="handleManualControl()">{{$t('openatccomponents.overview.comfirm')}}</el-button>
|
|
80
|
+
</div>
|
|
69
81
|
</el-tab-pane>
|
|
70
82
|
<el-tab-pane :label="$t('openatccomponents.overview.specialcontrol')" name="specialcontrol">
|
|
71
83
|
<ControlModelGroup
|
|
@@ -90,6 +102,17 @@
|
|
|
90
102
|
</el-form-item>
|
|
91
103
|
</el-form>
|
|
92
104
|
</div>
|
|
105
|
+
|
|
106
|
+
<div class="footer" v-if="realtimeStatusModalvisible && ((activeName === 'residentcontrol' && preselecttype !== '相位锁定' && preselecttype !== '方向锁定') || activeName === 'specialcontrol' || activeName === 'schemeselection')">
|
|
107
|
+
<el-button v-if="isShowBack" @click="handleClose()">{{$t('openatccomponents.button.Back')}}</el-button>
|
|
108
|
+
<el-button @click="toAutoControl()" v-if="isHasPermission('configer:manual:renew')">{{$t('openatccomponents.overview.recovery')}}</el-button>
|
|
109
|
+
<el-button type="primary" @click="handleManualControl()">{{$t('openatccomponents.overview.implement')}}</el-button>
|
|
110
|
+
</div>
|
|
111
|
+
<div class="footer" v-if="!realtimeStatusModalvisible && ((activeName === 'residentcontrol' && preselecttype !== '相位锁定' && preselecttype !== '方向锁定') || activeName === 'specialcontrol' || activeName === 'schemeselection')">
|
|
112
|
+
<el-button @click="toAutoControl()" v-if="isHasPermission('configer:manual:renew')">{{$t('openatccomponents.overview.recovery')}}</el-button>
|
|
113
|
+
<el-button class="3" type="primary" @click="handleManualControl()">{{$t('openatccomponents.overview.comfirm')}}</el-button>
|
|
114
|
+
</div>
|
|
115
|
+
|
|
93
116
|
</el-tab-pane>
|
|
94
117
|
<el-tab-pane :label="$t('openatccomponents.overview.schemeselection')" name="schemeselection">
|
|
95
118
|
<ControlModelGroup
|
|
@@ -148,6 +171,16 @@
|
|
|
148
171
|
</pattern-list>
|
|
149
172
|
</div>
|
|
150
173
|
</div>
|
|
174
|
+
|
|
175
|
+
<div class="footer" v-if="realtimeStatusModalvisible && ((activeName === 'residentcontrol' && preselecttype !== '相位锁定' && preselecttype !== '方向锁定') || activeName === 'specialcontrol' || activeName === 'schemeselection')">
|
|
176
|
+
<el-button v-if="isShowBack" @click="handleClose()">{{$t('openatccomponents.button.Back')}}</el-button>
|
|
177
|
+
<el-button @click="toAutoControl()" v-if="isHasPermission('configer:manual:renew')">{{$t('openatccomponents.overview.recovery')}}</el-button>
|
|
178
|
+
<el-button type="primary" @click="handleManualControl()">{{$t('openatccomponents.overview.implement')}}</el-button>
|
|
179
|
+
</div>
|
|
180
|
+
<div class="footer" v-if="!realtimeStatusModalvisible && ((activeName === 'residentcontrol' && preselecttype !== '相位锁定' && preselecttype !== '方向锁定') || activeName === 'specialcontrol' || activeName === 'schemeselection')">
|
|
181
|
+
<el-button @click="toAutoControl()" v-if="isHasPermission('configer:manual:renew')">{{$t('openatccomponents.overview.recovery')}}</el-button>
|
|
182
|
+
<el-button class="3" type="primary" @click="handleManualControl()">{{$t('openatccomponents.overview.comfirm')}}</el-button>
|
|
183
|
+
</div>
|
|
151
184
|
</el-tab-pane>
|
|
152
185
|
<el-tab-pane :label="$t('openatccomponents.overview.others')" name="others">
|
|
153
186
|
<ControlModelGroup
|
|
@@ -167,6 +200,7 @@
|
|
|
167
200
|
:sidewalkPhaseData="sidewalkPhaseData"
|
|
168
201
|
:realtimeStatusModalvisible="realtimeStatusModalvisible"
|
|
169
202
|
:roadDirection="roadDirection"
|
|
203
|
+
:isShowBack="isShowBack"
|
|
170
204
|
@closePhaseBack="handleClose"
|
|
171
205
|
@closePhaseControl="closePhaseControl"
|
|
172
206
|
@toAutoControl="toAutoControl" />
|
|
@@ -178,6 +212,7 @@
|
|
|
178
212
|
:overlap="overlap"
|
|
179
213
|
:patternSelect="patternSelect"
|
|
180
214
|
:allPatternList="allPatternList"
|
|
215
|
+
:isShowBack="isShowBack"
|
|
181
216
|
@closePhaseBack="handleClose"
|
|
182
217
|
@closePhaseControl="closePhaseControl"
|
|
183
218
|
@toAutoControl="toAutoControl"
|
|
@@ -186,21 +221,13 @@
|
|
|
186
221
|
v-if="preselecttype === '优先控制'"
|
|
187
222
|
:realtimeStatusModalvisible="realtimeStatusModalvisible"
|
|
188
223
|
:phaseList="phaseList"
|
|
224
|
+
:isShowBack="isShowBack"
|
|
189
225
|
@closePhaseBack="handleClose"
|
|
190
226
|
@closePhaseControl="closePhaseControl"
|
|
191
227
|
@toAutoControl="toAutoControl"
|
|
192
228
|
/>
|
|
193
229
|
</el-tab-pane>
|
|
194
230
|
</el-tabs>
|
|
195
|
-
<div class="footer" v-if="realtimeStatusModalvisible && ((activeName === 'residentcontrol' && preselecttype !== '相位锁定' && preselecttype !== '方向锁定') || activeName === 'specialcontrol' || activeName === 'schemeselection')">
|
|
196
|
-
<el-button @click="handleClose()">{{$t('openatccomponents.button.Back')}}</el-button>
|
|
197
|
-
<el-button type="primary" plain @click="toAutoControl()" v-if="isHasPermission('configer:manual:renew')">{{$t('openatccomponents.overview.recovery')}}</el-button>
|
|
198
|
-
<el-button type="primary" @click="handleManualControl()">{{$t('openatccomponents.overview.implement')}}</el-button>
|
|
199
|
-
</div>
|
|
200
|
-
<div class="footer" v-if="!realtimeStatusModalvisible && ((activeName === 'residentcontrol' && preselecttype !== '相位锁定' && preselecttype !== '方向锁定') || activeName === 'specialcontrol' || activeName === 'schemeselection')">
|
|
201
|
-
<el-button type="primary" plain @click="toAutoControl()" v-if="isHasPermission('configer:manual:renew')">{{$t('openatccomponents.overview.recovery')}}</el-button>
|
|
202
|
-
<el-button class="3" type="primary" @click="handleManualControl()">{{$t('openatccomponents.overview.comfirm')}}</el-button>
|
|
203
|
-
</div>
|
|
204
231
|
</div>
|
|
205
232
|
</template>
|
|
206
233
|
|
|
@@ -274,7 +301,7 @@ export default {
|
|
|
274
301
|
specialcontrolList: {
|
|
275
302
|
type: Array
|
|
276
303
|
},
|
|
277
|
-
realtimeStatusModalvisible: {
|
|
304
|
+
realtimeStatusModalvisible: { // 区分是保存方案还是提交方案,保存方案没有路口实时信息
|
|
278
305
|
type: Boolean,
|
|
279
306
|
default: true
|
|
280
307
|
},
|
|
@@ -311,6 +338,10 @@ export default {
|
|
|
311
338
|
},
|
|
312
339
|
patternChooseControlList: {
|
|
313
340
|
type: Array
|
|
341
|
+
},
|
|
342
|
+
isShowBack: {
|
|
343
|
+
type: Boolean,
|
|
344
|
+
default: true
|
|
314
345
|
}
|
|
315
346
|
},
|
|
316
347
|
watch: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="priority-control">
|
|
2
|
+
<div class="priority-control manual-common-content">
|
|
3
3
|
<!-- <div class="title" style="margin-bottom: 18px;">{{$t('openatccomponents.overview.prioritycontrol')}}</div> -->
|
|
4
4
|
<el-row>
|
|
5
5
|
<el-col :span="12">
|
|
@@ -86,13 +86,13 @@
|
|
|
86
86
|
</el-col>
|
|
87
87
|
</el-row>
|
|
88
88
|
<div class="footer" v-if="realtimeStatusModalvisible">
|
|
89
|
-
<el-button @click="handleClose()">{{$t('openatccomponents.button.Back')}}</el-button>
|
|
90
|
-
<el-button
|
|
89
|
+
<el-button v-if="isShowBack" @click="handleClose()">{{$t('openatccomponents.button.Back')}}</el-button>
|
|
90
|
+
<el-button @click="toAutoControl()" v-if="isHasPermission('configer:manual:renew')">{{$t('openatccomponents.overview.recovery')}}</el-button>
|
|
91
91
|
<el-button type="primary" @click="handleManualControl()">{{$t('openatccomponents.overview.implement')}}</el-button>
|
|
92
92
|
</div>
|
|
93
93
|
<div class="footer" v-if="!realtimeStatusModalvisible">
|
|
94
|
-
<el-button @click="handleClose()">{{$t('openatccomponents.button.Back')}}</el-button>
|
|
95
|
-
<el-button
|
|
94
|
+
<el-button v-if="isShowBack" @click="handleClose()">{{$t('openatccomponents.button.Back')}}</el-button>
|
|
95
|
+
<el-button @click="toAutoControl()" v-if="isHasPermission('configer:manual:renew')">{{$t('openatccomponents.overview.recovery')}}</el-button>
|
|
96
96
|
<el-button type="primary" @click="handleManualControl()">{{$t('openatccomponents.overview.comfirm')}}</el-button>
|
|
97
97
|
</div>
|
|
98
98
|
</div>
|
|
@@ -114,6 +114,10 @@ export default {
|
|
|
114
114
|
},
|
|
115
115
|
phaseList: {
|
|
116
116
|
type: Array
|
|
117
|
+
},
|
|
118
|
+
isShowBack: {
|
|
119
|
+
type: Boolean,
|
|
120
|
+
default: true
|
|
117
121
|
}
|
|
118
122
|
},
|
|
119
123
|
data () {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="tentativeplan-control">
|
|
2
|
+
<div class="tentativeplan-control manual-common-content">
|
|
3
3
|
<!-- <div class="title" style="margin-bottom: 18px">
|
|
4
4
|
{{ $t('openatccomponents.overview.tentativeplan') }}
|
|
5
5
|
</div> -->
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
</el-form>
|
|
93
93
|
</el-col>
|
|
94
94
|
</el-row>
|
|
95
|
-
<el-row>
|
|
95
|
+
<el-row style="margin-top: 20px;">
|
|
96
96
|
<el-radio v-model="isRing" :label="false" @change="changeRing">{{
|
|
97
97
|
$t('openatccomponents.common.ringStyle')
|
|
98
98
|
}}</el-radio>
|
|
@@ -126,14 +126,14 @@
|
|
|
126
126
|
>
|
|
127
127
|
</pattern-list>
|
|
128
128
|
</el-row>
|
|
129
|
-
<el-row>
|
|
129
|
+
<el-row style="margin-top: 20px;">
|
|
130
130
|
<el-tabs v-model="activeTab" type="card">
|
|
131
131
|
<el-tab-pane
|
|
132
132
|
v-if="!isRing"
|
|
133
133
|
:label="$t('openatccomponents.pattern.ringConfig')"
|
|
134
134
|
name="kanban"
|
|
135
135
|
>
|
|
136
|
-
<div style="width: 100%; overflow: hidden;
|
|
136
|
+
<div style="width: 100%; overflow: hidden;">
|
|
137
137
|
<kan-ban
|
|
138
138
|
v-for="n in ringCount"
|
|
139
139
|
:key="n"
|
|
@@ -315,19 +315,19 @@
|
|
|
315
315
|
</el-tabs>
|
|
316
316
|
</el-row>
|
|
317
317
|
<div class="footer" v-if="realtimeStatusModalvisible">
|
|
318
|
-
<el-button @click="handleClose()">{{
|
|
318
|
+
<el-button v-if="isShowBack" @click="handleClose()">{{
|
|
319
319
|
$t('openatccomponents.button.Back')
|
|
320
320
|
}}</el-button>
|
|
321
|
-
<el-button
|
|
321
|
+
<el-button @click="toAutoControl()" v-if="isHasPermission('configer:manual:renew')">{{$t('openatccomponents.overview.recovery')}}</el-button>
|
|
322
322
|
<el-button type="primary" @click="handleManualControl()">{{
|
|
323
323
|
$t('openatccomponents.overview.implement')
|
|
324
324
|
}}</el-button>
|
|
325
325
|
</div>
|
|
326
326
|
<div class="footer" v-if="!realtimeStatusModalvisible">
|
|
327
|
-
<el-button @click="handleClose()">{{
|
|
327
|
+
<el-button v-if="isShowBack" @click="handleClose()">{{
|
|
328
328
|
$t('openatccomponents.button.Back')
|
|
329
329
|
}}</el-button>
|
|
330
|
-
<el-button
|
|
330
|
+
<el-button @click="toAutoControl()" v-if="isHasPermission('configer:manual:renew')">{{$t('openatccomponents.overview.recovery')}}</el-button>
|
|
331
331
|
<el-button type="primary" @click="handleManualControl()">{{
|
|
332
332
|
$t('openatccomponents.overview.comfirm')
|
|
333
333
|
}}</el-button>
|
|
@@ -359,6 +359,10 @@ export default {
|
|
|
359
359
|
},
|
|
360
360
|
patternSelect: {
|
|
361
361
|
type: Array
|
|
362
|
+
},
|
|
363
|
+
isShowBack: {
|
|
364
|
+
type: Boolean,
|
|
365
|
+
default: true
|
|
362
366
|
}
|
|
363
367
|
},
|
|
364
368
|
watch: {
|
|
@@ -298,6 +298,7 @@ export default {
|
|
|
298
298
|
dirListSetTheme (list) {
|
|
299
299
|
let dirArr = []
|
|
300
300
|
let color = getTheme() === 'light' ? '#606266' : '#F1F3F4'
|
|
301
|
+
let pedColor = getTheme() === 'light' ? '#606266' : 'rgba(255, 255, 255, 0.6)'
|
|
301
302
|
for (let rec of list) {
|
|
302
303
|
let recd = {
|
|
303
304
|
...rec,
|
|
@@ -305,7 +306,7 @@ export default {
|
|
|
305
306
|
}
|
|
306
307
|
dirArr.push(recd)
|
|
307
308
|
for(let i=0;i<rec.peddirection.length;i++) {
|
|
308
|
-
rec.peddirection[i].color =
|
|
309
|
+
rec.peddirection[i].color = pedColor
|
|
309
310
|
}
|
|
310
311
|
}
|
|
311
312
|
return dirArr
|
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
<BoardCard
|
|
4
4
|
:patternId="patternId"
|
|
5
5
|
:contrloType="contrloType"
|
|
6
|
-
:patternType="patternType"
|
|
7
6
|
:stagesChange="stagesChange"
|
|
8
7
|
:patternStatusList="patternStatusList"
|
|
9
8
|
:cycles="cycles"
|
|
@@ -537,9 +536,6 @@ export default {
|
|
|
537
536
|
patternStatusList: {
|
|
538
537
|
type: Array
|
|
539
538
|
},
|
|
540
|
-
patternType: {
|
|
541
|
-
type: String
|
|
542
|
-
},
|
|
543
539
|
patternId: {
|
|
544
540
|
type: Number
|
|
545
541
|
},
|
package/src/views/overView.vue
CHANGED
|
@@ -19,7 +19,7 @@ export default {
|
|
|
19
19
|
isShowMode: true,
|
|
20
20
|
modeName: '交警遥控',
|
|
21
21
|
controlName: '步进',
|
|
22
|
-
agentId: '
|
|
22
|
+
agentId: '12007_001',
|
|
23
23
|
Token: 'eyJraWQiOiIxNzA4OTA5NDk2ODcxIiwidHlwIjoiSldUIiwiYWxnIjoiSFMyNTYifQ.eyJzdWIiOiJhZG1pbiIsImV4cCI6MTcwODk1MjY5NiwiaWF0IjoxNzA4OTA5NDk2fQ.FI0gzBQFLyQsj95LG56lVZxb6WYlr2-datNsyv6fF-I',
|
|
24
24
|
reqUrl: 'http://192.168.13.103:10003/openatc'
|
|
25
25
|
}
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
overflow: hidden;
|
|
58
58
|
text-align: center;
|
|
59
59
|
padding: 0 6PX;
|
|
60
|
-
margin-bottom: -
|
|
60
|
+
margin-bottom: -10PX;
|
|
61
61
|
font-size: 12PX;
|
|
62
62
|
color: $--color-info;
|
|
63
63
|
background-color: $--color-black;
|
|
@@ -141,10 +141,10 @@
|
|
|
141
141
|
cursor: pointer;
|
|
142
142
|
width: 100%;
|
|
143
143
|
height: 48PX;
|
|
144
|
-
margin: 5PX 0;
|
|
144
|
+
// margin: 5PX 0;
|
|
145
145
|
// background-color: rgba(31,46,46,0.9);
|
|
146
146
|
text-align: left;
|
|
147
|
-
line-height:
|
|
147
|
+
line-height: 37PX;
|
|
148
148
|
padding: 1PX 1PX;
|
|
149
149
|
box-sizing: border-box;
|
|
150
150
|
// cursor: pointer;
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
margin-left: 15PX;
|
|
110
110
|
margin-top: 15PX;
|
|
111
111
|
height: 20PX;
|
|
112
|
-
font-size:
|
|
112
|
+
font-size: 18PX;
|
|
113
113
|
font-weight: normal;
|
|
114
114
|
font-stretch: normal;
|
|
115
115
|
line-height: 22PX;
|
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
float: right;
|
|
131
131
|
color: $--color-text-regular;
|
|
132
132
|
.el-checkbox__label {
|
|
133
|
-
font-size:
|
|
133
|
+
font-size: 14PX;
|
|
134
134
|
color: $--color-text-regular;
|
|
135
135
|
font-weight: normal;
|
|
136
136
|
font-stretch: normal;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
// 方案配置面板
|
|
2
2
|
.scheme-config {
|
|
3
3
|
position: relative;
|
|
4
|
+
overflow: hidden;
|
|
4
5
|
.iconfont {
|
|
5
6
|
font-family: "iconfont" !important;
|
|
6
7
|
font-size: 34PX;
|
|
@@ -14,12 +15,13 @@
|
|
|
14
15
|
.right-control-part {
|
|
15
16
|
min-width: 300PX;
|
|
16
17
|
overflow: auto;
|
|
18
|
+
height: 100%;
|
|
17
19
|
}
|
|
18
20
|
.cross-mess {
|
|
19
21
|
margin-left: 15PX;
|
|
20
22
|
margin-top: 15PX;
|
|
21
23
|
height: 20PX;
|
|
22
|
-
font-size:
|
|
24
|
+
font-size: 18PX;
|
|
23
25
|
font-weight: normal;
|
|
24
26
|
font-stretch: normal;
|
|
25
27
|
line-height: 22PX;
|
|
@@ -219,11 +221,18 @@
|
|
|
219
221
|
}
|
|
220
222
|
}
|
|
221
223
|
}
|
|
224
|
+
.manual-common-content {
|
|
225
|
+
height: calc(100% - 100PX);
|
|
226
|
+
overflow-y: auto;
|
|
227
|
+
}
|
|
228
|
+
.manual-common-content::-webkit-scrollbar {
|
|
229
|
+
width: 8PX;
|
|
230
|
+
}
|
|
222
231
|
}
|
|
223
232
|
// 手动控制弹框
|
|
224
233
|
.manual-control-modal{
|
|
225
234
|
// padding: 21PX 0PX 21PX 28PX;
|
|
226
|
-
min-width: 360PX;
|
|
235
|
+
// min-width: 360PX;
|
|
227
236
|
overflow: auto;
|
|
228
237
|
.title {
|
|
229
238
|
margin-bottom: 24PX;
|
|
@@ -284,6 +293,10 @@
|
|
|
284
293
|
}
|
|
285
294
|
.manual-control-modal-new {
|
|
286
295
|
padding: 20PX 20PX 0 20PX;
|
|
296
|
+
height: 100%;
|
|
297
|
+
.el-tabs {
|
|
298
|
+
height: 100%;
|
|
299
|
+
}
|
|
287
300
|
.el-tabs__nav.is-top {
|
|
288
301
|
width: 100%;
|
|
289
302
|
}
|
|
@@ -303,6 +316,14 @@
|
|
|
303
316
|
}
|
|
304
317
|
.el-tabs__content {
|
|
305
318
|
overflow-x: auto;
|
|
319
|
+
height: calc(100% - 60PX);
|
|
320
|
+
}
|
|
321
|
+
.el-tab-pane {
|
|
322
|
+
height: 100%;
|
|
323
|
+
}
|
|
324
|
+
.el-form-item__label {
|
|
325
|
+
font-size: 14PX;
|
|
326
|
+
color: $--color-text-secondary;
|
|
306
327
|
}
|
|
307
328
|
.group-control {
|
|
308
329
|
margin-bottom: 20PX;
|
|
@@ -310,9 +331,6 @@
|
|
|
310
331
|
}
|
|
311
332
|
|
|
312
333
|
.common-config {
|
|
313
|
-
.el-form-item__label {
|
|
314
|
-
color: $--color-text-secondary;
|
|
315
|
-
}
|
|
316
334
|
.el-form-item {
|
|
317
335
|
margin-bottom: 0PX;
|
|
318
336
|
}
|
|
@@ -340,7 +358,6 @@
|
|
|
340
358
|
}
|
|
341
359
|
.priority-control{
|
|
342
360
|
height: 100%;
|
|
343
|
-
min-width: 360PX;
|
|
344
361
|
overflow: auto;
|
|
345
362
|
.title {
|
|
346
363
|
margin-bottom: 24PX;
|
|
@@ -361,13 +378,11 @@
|
|
|
361
378
|
width: 90%;
|
|
362
379
|
}
|
|
363
380
|
.el-form-item {
|
|
364
|
-
margin-bottom:
|
|
381
|
+
margin-bottom: 0PX;
|
|
365
382
|
margin-right: 10PX;
|
|
366
383
|
}
|
|
367
384
|
.el-form-item__label {
|
|
368
|
-
font-size: 14PX;
|
|
369
385
|
font-weight: 700;
|
|
370
|
-
color: $--color-text-secondary;
|
|
371
386
|
}
|
|
372
387
|
.el-input-number {
|
|
373
388
|
width: 100%;
|
|
@@ -375,16 +390,20 @@
|
|
|
375
390
|
text-align: left;
|
|
376
391
|
}
|
|
377
392
|
}
|
|
393
|
+
.el-select {
|
|
394
|
+
width: 100%;
|
|
395
|
+
}
|
|
378
396
|
}
|
|
379
397
|
.tentativeplan-control{
|
|
380
398
|
// height: 100%;
|
|
381
399
|
// padding: 21PX 0PX 21PX 28PX;
|
|
382
|
-
min-width: 360PX;
|
|
383
|
-
overflow: hidden !important;
|
|
400
|
+
// min-width: 360PX;
|
|
401
|
+
// overflow: hidden !important;
|
|
384
402
|
.forbiddenstage{
|
|
385
403
|
width: 77% !important;
|
|
386
404
|
margin: 10px auto;
|
|
387
405
|
color: $--color-text-primary;
|
|
406
|
+
font-size: 14PX;
|
|
388
407
|
}
|
|
389
408
|
.stage-panel-contener {
|
|
390
409
|
display: flex;
|
|
@@ -443,10 +462,6 @@
|
|
|
443
462
|
margin-bottom: 0PX;
|
|
444
463
|
margin-right: 10PX;
|
|
445
464
|
}
|
|
446
|
-
.el-form-item__label {
|
|
447
|
-
font-size: 14PX;
|
|
448
|
-
color: $--color-text-secondary;
|
|
449
|
-
}
|
|
450
465
|
.el-dialog__footer {
|
|
451
466
|
padding: 10PX 72PX 38PX 0;
|
|
452
467
|
}
|
|
@@ -491,6 +506,9 @@
|
|
|
491
506
|
text-align: center;
|
|
492
507
|
}
|
|
493
508
|
}
|
|
509
|
+
.el-select {
|
|
510
|
+
width: 100%;
|
|
511
|
+
}
|
|
494
512
|
}
|
|
495
513
|
.closephase-control{
|
|
496
514
|
height: 100%;
|
|
@@ -511,16 +529,17 @@
|
|
|
511
529
|
|
|
512
530
|
.lockingphase-control {
|
|
513
531
|
height: 100%;
|
|
514
|
-
min-width: 430PX;
|
|
515
|
-
overflow: auto;
|
|
516
532
|
.closephasekanban {
|
|
517
533
|
width: 60%;
|
|
518
534
|
margin: 0 auto;
|
|
519
535
|
margin-bottom: 13PX;
|
|
520
536
|
}
|
|
521
537
|
.el-form-item {
|
|
522
|
-
|
|
523
|
-
|
|
538
|
+
margin-bottom: 0;
|
|
539
|
+
margin-right: 10PX;
|
|
540
|
+
}
|
|
541
|
+
.el-input-number {
|
|
542
|
+
width: 100%;
|
|
524
543
|
}
|
|
525
544
|
.el-input-number--mini{
|
|
526
545
|
width: 100%;
|
|
@@ -528,8 +547,4 @@
|
|
|
528
547
|
.el-input {
|
|
529
548
|
width: 100%;
|
|
530
549
|
}
|
|
531
|
-
.el-form-item__content {
|
|
532
|
-
width: calc(100% - 120PX);
|
|
533
|
-
min-width: 80PX;
|
|
534
|
-
}
|
|
535
550
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{}
|