车辆控制agv图片
|
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 37 KiB |
|
Before Width: | Height: | Size: 48 KiB After Width: | Height: | Size: 38 KiB |
|
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 38 KiB |
|
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 37 KiB |
|
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 38 KiB |
|
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 36 KiB |
|
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 38 KiB |
|
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 37 KiB |
@@ -24,21 +24,21 @@
|
||||
</div>
|
||||
<div class="agv_wrap">
|
||||
<!-- 跳过起点 -->
|
||||
<button class="switch_item switch_item_1" @click="switchDown('9', '0')" :disabled="disabled"></button>
|
||||
<button class="switch_item switch_item_1" @click="switchDown('9', '0')" :disabled="disabled">{{ $t('vehiclecontrol.skipthestart') }}</button>
|
||||
<!-- 初始化坐标 -->
|
||||
<button class="switch_item switch_item_2" @click="_queryRestPoint" :disabled="disabled"></button>
|
||||
<button class="switch_item switch_item_2" @click="_queryRestPoint" :disabled="disabled">{{ $t('vehiclecontrol.initializecoordinate') }}</button>
|
||||
<!-- 全屏 -->
|
||||
<button class="switch_item switch_item_3" @click="switchDown('11', '0')" :disabled="disabled"></button>
|
||||
<button class="switch_item switch_item_3" @click="switchDown('11', '0')" :disabled="disabled">{{ $t('vehiclecontrol.fullscreen') }}</button>
|
||||
<!-- 退出 -->
|
||||
<button class="switch_item switch_item_4" @click="switchDown('7', '0')" :disabled="disabled"></button>
|
||||
<button class="switch_item switch_item_4" @click="switchDown('7', '0')" :disabled="disabled">{{ $t('vehiclecontrol.quit') }}</button>
|
||||
<!-- 关机 -->
|
||||
<button class="switch_item switch_item_5" @click="switchDown('1', '0')" :disabled="disabled"></button>
|
||||
<button class="switch_item switch_item_5" @click="switchDown('1', '0')" :disabled="disabled">{{ $t('vehiclecontrol.poweroff') }}</button>
|
||||
<!-- 软启动 -->
|
||||
<button class="switch_item switch_item_6" @click="switchDown('8', '0')" :disabled="disabled"></button>
|
||||
<button class="switch_item switch_item_6" @click="switchDown('8', '0')" :disabled="disabled">{{ $t('vehiclecontrol.softwarerestart') }}</button>
|
||||
<!-- 重启 -->
|
||||
<button class="switch_item switch_item_7" @click="switchDown('10', '0')" :disabled="disabled"></button>
|
||||
<button class="switch_item switch_item_7" @click="switchDown('10', '0')" :disabled="disabled">{{ $t('vehiclecontrol.restart') }}</button>
|
||||
<!-- 跳过检测 -->
|
||||
<button class="switch_item switch_item_8" @click="switchDown('12', '0')" :disabled="disabled"></button>
|
||||
<button class="switch_item switch_item_8" @click="switchDown('12', '0')" :disabled="disabled">{{ $t('vehiclecontrol.skipdetection') }}</button>
|
||||
</div>
|
||||
<div class="state_title-wrap">
|
||||
<h3>{{ $t('vehiclecontrol.Control') }}</h3>
|
||||
@@ -283,6 +283,8 @@ export default {
|
||||
padding 10px 30px 29px 80px
|
||||
.switch_item
|
||||
_wh(157px, 157px)
|
||||
_font(24px, 24px, #fff,,center)
|
||||
padding 85px 10px 10px 10px
|
||||
.switch_item_1
|
||||
background center url(../../../images/new/switch_1.png) no-repeat
|
||||
.switch_item_2
|
||||
@@ -405,4 +407,7 @@ export default {
|
||||
font-size 26px
|
||||
.control_label
|
||||
font-size 24px
|
||||
.switch_item
|
||||
font-size 20px
|
||||
line-height 20px
|
||||
</style>
|
||||
|
||||