openatc-components 0.1.122 → 0.1.124
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/PatternStatus/PatternStatus.vue +4 -3
- package/package/kisscomps/components/XRDDirSelector/XRDDirSelector.vue +10 -2
- package/package/kissui.min.js +1 -1
- package/package.json +1 -1
- package/src/kisscomps/components/PatternStatus/PatternStatus.vue +4 -3
- package/src/kisscomps/components/XRDDirSelector/XRDDirSelector.vue +10 -2
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
<div style="cursor:pointer;">
|
|
22
22
|
<div class="ring-phase">
|
|
23
23
|
<!-- <patternwalksvg :showWalk="item.peddirection" :Width="'32'" :Height="'34'"></patternwalksvg> -->
|
|
24
|
-
<xdrdirselector Width="
|
|
24
|
+
<xdrdirselector Width="60px" Height="60px" Widths="50px" Heights="50px" :showlist="item.direction"></xdrdirselector>
|
|
25
25
|
</div>
|
|
26
26
|
<div class="box" style="position: absolute; left:40px;top: -1px;">
|
|
27
27
|
<div class="ring-nums">P{{item.id}}</div>
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
<div style="cursor:pointer;">
|
|
67
67
|
<div class="ring-phase">
|
|
68
68
|
<!-- <patternwalksvg :showWalk="list.peddirection" :Width="'32'" :Height="'34'"></patternwalksvg> -->
|
|
69
|
-
<xdrdirselector Width="
|
|
69
|
+
<xdrdirselector Width="60px" Height="60px" Widths="50px" Heights="50px" :showlist="list.direction"></xdrdirselector>
|
|
70
70
|
</div>
|
|
71
71
|
<!-- <div class="box" style="line-height:28px">
|
|
72
72
|
<span class="ring-nums" v-for="(pha,index) in list.phases" :key="index">
|
|
@@ -333,7 +333,8 @@ export default {
|
|
|
333
333
|
peddirection: peddirections
|
|
334
334
|
}))
|
|
335
335
|
}
|
|
336
|
-
|
|
336
|
+
let newTemp = tempList.filter(item => item.id !== '')
|
|
337
|
+
stagesTemp.push(...newTemp)
|
|
337
338
|
}
|
|
338
339
|
return stagesTemp
|
|
339
340
|
},
|
|
@@ -252,8 +252,8 @@
|
|
|
252
252
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
253
253
|
viewBox="0 0 50 50"
|
|
254
254
|
style="enable-background:new 0 0 50 50;"
|
|
255
|
-
:width="
|
|
256
|
-
:height="
|
|
255
|
+
:width="Widths"
|
|
256
|
+
:height="Heights"
|
|
257
257
|
xml:space="preserve">
|
|
258
258
|
<!-- <style type="text/css">
|
|
259
259
|
.st0{fill:#CBD3DB;}
|
|
@@ -498,6 +498,14 @@ export default {
|
|
|
498
498
|
type: String,
|
|
499
499
|
default: '200px'
|
|
500
500
|
},
|
|
501
|
+
Widths: {
|
|
502
|
+
type: String,
|
|
503
|
+
default: '200px'
|
|
504
|
+
},
|
|
505
|
+
Heights: {
|
|
506
|
+
type: String,
|
|
507
|
+
default: '200px'
|
|
508
|
+
},
|
|
501
509
|
PathWidth: {
|
|
502
510
|
type: Number,
|
|
503
511
|
default: 18
|