openatc-components 0.1.80 → 0.1.82
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/SchemeConfig/tentativeplancontrolmodal/index.vue +3 -3
- package/package/kisscomps/components/StageBord/StageBord.vue +2 -2
- package/package/kissui.min.js +1 -1
- package/package.json +1 -1
- package/src/kisscomps/components/SchemeConfig/tentativeplancontrolmodal/index.vue +3 -3
- package/src/kisscomps/components/StageBord/StageBord.vue +2 -2
- package/src/utils/errorcode.js +4 -0
- package/static/styles/channelizatioon.scss +1 -0
- package/static/styles/schemeconfig.scss +15 -0
package/package.json
CHANGED
|
@@ -111,15 +111,15 @@
|
|
|
111
111
|
:list="patternOne.length===0?planPattern.rings[j-1]:patternOne[0].rings[j-1]"
|
|
112
112
|
>
|
|
113
113
|
</expend-config>
|
|
114
|
-
<div
|
|
114
|
+
<div class="forbiddenstage">
|
|
115
115
|
{{$t('openatccomponents.pattern.forbiddenstage')}}
|
|
116
116
|
<el-input class="stage-value" size="small" v-model="forbiddenstage"></el-input>
|
|
117
117
|
</div>
|
|
118
|
-
<div
|
|
118
|
+
<div class="forbiddenstage">
|
|
119
119
|
{{$t('openatccomponents.pattern.screenstage')}}
|
|
120
120
|
<el-input class="stage-value" size="small" v-model="screenstage"></el-input>
|
|
121
121
|
</div>
|
|
122
|
-
<div
|
|
122
|
+
<div class="forbiddenstage">
|
|
123
123
|
{{$t('openatccomponents.pattern.coordinatestage')}}
|
|
124
124
|
<el-input class="stage-value" size="small" v-model="coordinatestage"></el-input>
|
|
125
125
|
</div>
|
|
@@ -228,14 +228,14 @@ export default {
|
|
|
228
228
|
height: auto;
|
|
229
229
|
margin: 5px 0;
|
|
230
230
|
line-height: 40px;
|
|
231
|
-
color: #FFFFFF;
|
|
231
|
+
// color: #FFFFFF;
|
|
232
232
|
padding: 1px 1px;
|
|
233
233
|
box-sizing: border-box;
|
|
234
234
|
}
|
|
235
235
|
.el-button--primary:hover, .el-button--primary:focus{
|
|
236
236
|
background: #409EFF;
|
|
237
237
|
border-color: #409EFF;
|
|
238
|
-
color: #FFFFFF;
|
|
238
|
+
// color: #FFFFFF;
|
|
239
239
|
}
|
|
240
240
|
</style>
|
|
241
241
|
<style lang="scss">
|
package/src/utils/errorcode.js
CHANGED
|
@@ -34,6 +34,8 @@ let errorCodeMap = new Map([
|
|
|
34
34
|
[503, '星期超出限值'],
|
|
35
35
|
[504, '日期值超出限值'],
|
|
36
36
|
[505, '配置未知计划号'],
|
|
37
|
+
[505, '配置未知计划号'],
|
|
38
|
+
[506, '包含普通计划的日期未覆盖全年'],
|
|
37
39
|
[601, '通道数超出限值'],
|
|
38
40
|
[602, '通道配置未知控制源'],
|
|
39
41
|
[603, '通道控制源未配置'],
|
|
@@ -121,6 +123,8 @@ let errorCodeMapEn = new Map([
|
|
|
121
123
|
[503, 'The week exceeds the limit'],
|
|
122
124
|
[504, 'The date value exceeds the limit'],
|
|
123
125
|
[505, 'Configure unknown plan number'],
|
|
126
|
+
[506, 'Dates that include common plans do not cover the full year'],
|
|
127
|
+
[507, 'No month is configured for the scheduling plan'],
|
|
124
128
|
[601, 'The number of channels exceeds the limit'],
|
|
125
129
|
[602, 'Channel configuration unknown control source'],
|
|
126
130
|
[603, 'Channel control source is not configured'],
|
|
@@ -330,6 +330,21 @@
|
|
|
330
330
|
padding: 21PX 0PX 21PX 28PX;
|
|
331
331
|
min-width: 360PX;
|
|
332
332
|
overflow: auto;
|
|
333
|
+
.forbiddenstage{
|
|
334
|
+
width: 60%;
|
|
335
|
+
margin: 10px auto;
|
|
336
|
+
color: $--color-text-primary;
|
|
337
|
+
}
|
|
338
|
+
.stage-item {
|
|
339
|
+
cursor: pointer;
|
|
340
|
+
width: 100%;
|
|
341
|
+
height: auto;
|
|
342
|
+
margin: 5px 0;
|
|
343
|
+
line-height: 40px;
|
|
344
|
+
color: $--color-text-primary;
|
|
345
|
+
padding: 1px 1px;
|
|
346
|
+
box-sizing: border-box;
|
|
347
|
+
}
|
|
333
348
|
.title {
|
|
334
349
|
margin-bottom: 24PX;
|
|
335
350
|
font-size: 20PX;
|