openatc-components 0.2.84 → 0.2.86
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 +1 -1
- package/package/kisscomps/components/OverLap/OverLap.vue +2 -2
- package/package/kisscomps/components/PatternStatus/PatternStatus.vue +6 -6
- package/package/kissui.min.js +1 -1
- package/package.json +1 -1
- package/src/i18n/language/en.js +2 -0
- package/src/i18n/language/zh.js +2 -0
- package/src/kisscomps/components/BoardCard/BoardCard.vue +1 -1
- package/src/kisscomps/components/OverLap/OverLap.vue +2 -2
- package/src/kisscomps/components/PatternStatus/PatternStatus.vue +6 -6
- package/src/node_modules/.package_versions.json +1 -0
- package/src/utils/errorcode.js +1 -2
- package/src/views/intersection.vue +2 -2
package/package.json
CHANGED
package/src/i18n/language/en.js
CHANGED
package/src/i18n/language/zh.js
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<div slot="content">
|
|
9
9
|
O{{list.id}}-
|
|
10
10
|
<span v-for="(ids,index3) in list.includedphases" :key="index3">
|
|
11
|
-
|
|
11
|
+
{{$t('openatccomponents.phase.phase')}}{{ids}}<span v-if="index3+1!==list.includedphases.length">,</span>
|
|
12
12
|
</span>
|
|
13
13
|
</div>
|
|
14
14
|
<div style="cursor:pointer;">
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
<div class="ring-nums">
|
|
21
21
|
O{{list.id}}-
|
|
22
22
|
<span v-for="(ids,index3) in list.includedphases" :key="index3">
|
|
23
|
-
|
|
23
|
+
{{$t('openatccomponents.phase.phase')}}{{ids}}<span v-if="index3+1!==list.includedphases.length">,</span>
|
|
24
24
|
</span>
|
|
25
25
|
</div>
|
|
26
26
|
</div>
|
|
@@ -17,14 +17,14 @@
|
|
|
17
17
|
<div style="position: relative;" :style="{'height': '34px','float':'left','width':((item.split+(item.sum?item.sum:0)) / (max?max:item.cycle) * 100) + '%'}" v-for="(item,index2) in list" :key="index2" :class="item.mode===7?'direction': ''">
|
|
18
18
|
<div class="first-1" :class="item.mode === 8 ? 'mask' : item.mode === 9 ? 'yellowClass' : ''" :style="{'width':Number(item.greenWidth.replace('%', ''))/Number((((item.split+(item.sum?item.sum:0)) / (max?max:item.cycle) * 100) + '%').replace('%', ''))*100+'%','height':'34px','background':'#7ccc66'}">
|
|
19
19
|
<el-tooltip placement="top-start" effect="light">
|
|
20
|
-
<div slot="content">
|
|
20
|
+
<div slot="content">{{$t('openatccomponents.phase.phase')}}{{item.id}}:{{item.split}}</div>
|
|
21
21
|
<div style="cursor:pointer;">
|
|
22
22
|
<div class="ring-phase">
|
|
23
23
|
<!-- <patternwalksvg :showWalk="item.peddirection" :Width="'32'" :Height="'34'"></patternwalksvg> -->
|
|
24
24
|
<xdrdirselector Width="60px" Height="60px" Widths="50px" Heights="50px" :showlist="item.direction"></xdrdirselector>
|
|
25
25
|
</div>
|
|
26
|
-
<div class="box" style="position: absolute; left:40px; width:
|
|
27
|
-
<div class="ring-nums">
|
|
26
|
+
<div class="box" style="position: absolute; left:40px; width:40px; top: -1px;">
|
|
27
|
+
<div class="ring-nums">{{$t('openatccomponents.phase.phase')}}{{item.id}}</div>
|
|
28
28
|
<div class="ring-nums">{{item.split}}</div>
|
|
29
29
|
</div>
|
|
30
30
|
</div>
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
<el-tooltip placement="top-start" effect="light">
|
|
61
61
|
<div slot="content">
|
|
62
62
|
<span class="ring-nums" v-for="(pha,index) in list.phases" :key="index">
|
|
63
|
-
|
|
63
|
+
{{$t('openatccomponents.phase.phase')}}{{pha}}
|
|
64
64
|
</span>
|
|
65
65
|
</div>
|
|
66
66
|
<div style="cursor:pointer;">
|
|
@@ -68,8 +68,8 @@
|
|
|
68
68
|
<!-- <patternwalksvg :showWalk="list.peddirection" :Width="'32'" :Height="'34'"></patternwalksvg> -->
|
|
69
69
|
<xdrdirselector v-if="list.direction&&list.direction.length>0" Width="60px" Height="60px" Widths="50px" Heights="50px" :showlist="list.direction"></xdrdirselector>
|
|
70
70
|
</div>
|
|
71
|
-
<div class="box" style="position: absolute; left:41px; width:
|
|
72
|
-
<div class="ring-nums">
|
|
71
|
+
<div class="box" style="position: absolute; left:41px; width:40px; top:-1px;">
|
|
72
|
+
<div class="ring-nums">{{$t('openatccomponents.phase.stage')}}{{list.key+1}}</div>
|
|
73
73
|
<div class="ring-nums">{{list.stageSplit}}</div>
|
|
74
74
|
</div>
|
|
75
75
|
<!-- <div class="box" style="line-height:28px">
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
package/src/utils/errorcode.js
CHANGED
|
@@ -139,12 +139,12 @@ export default {
|
|
|
139
139
|
return {
|
|
140
140
|
roadDirection: 'right',
|
|
141
141
|
// reqUrl: 'http://192.168.13.103:10003/openatc',
|
|
142
|
-
agentId: '
|
|
142
|
+
agentId: 'tjblfql',
|
|
143
143
|
// agentId: '13013',
|
|
144
144
|
// agentId: '12007_390',
|
|
145
145
|
// agentId: '12014',
|
|
146
146
|
reqUrl: 'http://192.168.13.103:10003/openatc',
|
|
147
|
-
Token: '
|
|
147
|
+
Token: 'eyJraWQiOiIxNzE4NzU5ODA0Njc0IiwidHlwIjoiSldUIiwiYWxnIjoiSFMyNTYifQ.eyJzdWIiOiJhZG1pbiIsImV4cCI6MTcxODgwMzAwNCwiaWF0IjoxNzE4NzU5ODA0fQ.8CKosL9Yrp8h8d_op6kGHHcNXIBgNu3YhwY7JdPIKJc',
|
|
148
148
|
// agentId: '30003-352',
|
|
149
149
|
// reqUrl: 'https://kints-dev.devdolphin.com/openatc',
|
|
150
150
|
// Token: 'eyJraWQiOiIxNjUwNTA5MDI2ODk2IiwidHlwIjoiSldUIiwiYWxnIjoiSFMyNTYifQ.eyJzdWIiOiJ4aWFvbWluZyIsImV4cCI6MTczNjkwOTAyNiwiaWF0IjoxNjUwNTA5MDI2fQ.-s4T-uMRmB2zf9yer87USKQXLY1a12Zq5lCOnqjNmfA',
|