openatc-components 0.2.40 → 0.2.42

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.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openatc-components",
3
- "version": "0.2.40",
3
+ "version": "0.2.42",
4
4
  "description": "A Vue.js project",
5
5
  "author": "openatc developer",
6
6
  "private": false,
@@ -30,16 +30,16 @@
30
30
  :Height="'40'" /> -->
31
31
  <xdr-dir-selector :Width="dirWidth" :Height="dirHeight" :Widths="dirWidths" :Heights="dirHeights" :Data="showStyle" :Datas="showStyles" :showlist="dirListSetTheme(item)"></xdr-dir-selector>
32
32
  <div style="display:flex;flex-direction:row;justify-content:center;align-items:end;" :style="{height: StageHeight}">
33
- <div class="current-stage-num" style="width:20%;" :style="{color: themeColor}">{{index + 1}}</div>
33
+ <div class="current-stage-num" style="width:20%;" :style="{color: themeColor, fontSize: numSize}">{{index + 1}}</div>
34
34
  <div style="width:70%;">
35
- <i class="iconfont icon-feijidongche" :style="{color: themeColor}" style="font-size:11PX;color:#606266;margin-left:10PX" v-if="item[item.length-1].controltype === 6"></i>
36
- <i class="iconfont icon-lukouzhilu" :style="{color: themeColor2}" style="font-size:16PX;color:#454545;margin-left:10PX" v-if="item[item.length-1].controltype === 1"></i>
37
- <i class="iconfont icon-BRT" :style="{color: themeColor2}" style="font-size:11PX;color:#454545;margin-left:10PX" v-if="item[item.length-1].controltype === 4"></i>
35
+ <i class="iconfont icon-feijidongche" :style="{color: themeColor, fontSize: iconSize}" style="font-size:11PX;color:#606266;margin-left:10PX" v-if="item[item.length-1].controltype === 6"></i>
36
+ <i class="iconfont icon-lukouzhilu" :style="{color: themeColor2, fontSize: iconSize2}" style="font-size:16PX;color:#454545;margin-left:10PX" v-if="item[item.length-1].controltype === 1"></i>
37
+ <i class="iconfont icon-BRT" :style="{color: themeColor2, fontSize: iconSize}" style="font-size:11PX;color:#454545;margin-left:10PX" v-if="item[item.length-1].controltype === 4"></i>
38
38
  <div style="transform:scale(0.65);margin-left:10PX">
39
39
  <i class="iconfont icon-xuxiangwei-xin" :style="{color: themeColor2}" style="font-size:5PX;color:#454545;" v-if="item[item.length-1].controltype === 99"></i>
40
40
  </div>
41
- <i class="iconfont icon-gongjiaoche" :style="{color: themeColor}" style="font-size:11PX;color:#606266;margin-left:10PX" v-if="item[item.length-1].controltype === 3"></i>
42
- <i class="iconfont icon-youguidianche" :style="{color: themeColor}" style="font-size:11PX;color:#606266;margin-left:10PX" v-if="item[item.length-1].controltype === 5"></i>
41
+ <i class="iconfont icon-gongjiaoche" :style="{color: themeColor, fontSize: iconSize}" style="font-size:11PX;color:#606266;margin-left:10PX" v-if="item[item.length-1].controltype === 3"></i>
42
+ <i class="iconfont icon-youguidianche" :style="{color: themeColor, fontSize: iconSize}" style="font-size:11PX;color:#606266;margin-left:10PX" v-if="item[item.length-1].controltype === 5"></i>
43
43
  <div v-if="presetStageIndex === index + 1" style="color:red;width:50px;position:absolute;right:0px;bottom:5px;font-size:11px;">{{presetText}}</div>
44
44
  </div>
45
45
  </div>
@@ -122,17 +122,27 @@ export default {
122
122
  type: String,
123
123
  default: '65PX'
124
124
  },
125
- },
126
- data () {
127
- return {
128
- showStyle:{
125
+ showStyle: {
126
+ type: Object,
127
+ default: () => ({
129
128
  top:'7PX',
130
129
  left:'13px'
131
- },
132
- showStyles:{
130
+ })
131
+ },
132
+ showStyles: {
133
+ type: Object,
134
+ default: () => ({
133
135
  top:'5PX',
134
136
  left:'12px'
135
- },
137
+ })
138
+ },
139
+ noClick: {
140
+ type: Boolean,
141
+ default: false
142
+ }
143
+ },
144
+ data () {
145
+ return {
136
146
  presetStageIndex: -1,
137
147
  side: {key: 'pedphase1653818707546719', phaseid: 1, id: 1, name: '东人行横道'},
138
148
  // stagesList: [],
@@ -166,6 +176,23 @@ export default {
166
176
  return {
167
177
  zoom: this.zoom
168
178
  }
179
+ },
180
+ iconSize () {
181
+ const fontsize = parseInt(this.dirWidth.replace(/px$/, ""));
182
+ return fontsize / 75 * 11 + 'px'
183
+ },
184
+ iconSize2 () {
185
+ const fontsize = parseInt(this.dirWidth.replace(/px$/, ""));
186
+ return fontsize / 75 * 16 + 'px'
187
+ },
188
+ numSize () {
189
+ const fontsize = parseInt(this.dirWidth.replace(/px$/, ""));
190
+ const newfontsize = fontsize / 75 * 12
191
+ if (newfontsize < 10) {
192
+ return 10 + 'px'
193
+ } else {
194
+ return newfontsize + 'px'
195
+ }
169
196
  }
170
197
  },
171
198
  watch: {
@@ -231,6 +258,7 @@ export default {
231
258
  return res
232
259
  },
233
260
  selectStages (value) {
261
+ if (this.noClick) return
234
262
  if (this.isShowCurrentStage) {
235
263
  return false
236
264
  }