openatc-components 0.0.76 → 0.0.77

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.0.76",
3
+ "version": "0.0.77",
4
4
  "description": "A Vue.js project",
5
5
  "author": "openatc developer",
6
6
  "private": false,
@@ -499,7 +499,7 @@ export default {
499
499
  }
500
500
  })
501
501
  control.control = that.preselectModel === -1 ? that.currModel : that.preselectModel
502
- control.terminal = Number(manualInfo.tempPatternid)
502
+ control.terminal = isNaN(parseInt(manualInfo.tempPatternid)) ? Number(manualInfo.tempPatternid.replace(/[^0-9]/ig, '')) : manualInfo.tempPatternid
503
503
  control.delay = Number(manualInfo.tempDelay)
504
504
  control.duration = Number(manualInfo.tempDuration)
505
505
  control.value = that.preselectStages === -1 ? 0 : that.preselectStages
@@ -249,7 +249,7 @@
249
249
  // width: 50%;
250
250
  }
251
251
  .el-input-number--mini {
252
- width: 44%;
252
+ // width: 44%;
253
253
  }
254
254
  .el-input-number {
255
255
  // width: 100%;
@@ -372,6 +372,9 @@
372
372
  margin: 0 auto;
373
373
  margin-bottom: 13px;
374
374
  }
375
+ .el-input--mini {
376
+ width: 44%;
377
+ }
375
378
  .el-form-item__content {
376
379
  min-width: 120px;
377
380
  }
@@ -390,6 +393,9 @@
390
393
  width: 45%;
391
394
  min-width: 180px;
392
395
  }
396
+ .el-input-number--mini{
397
+ width: 100%;
398
+ }
393
399
  .el-input {
394
400
  width: 100%;
395
401
  }