搬运站点

This commit is contained in:
2023-11-29 14:14:22 +08:00
parent 55f31ff1c4
commit e585b698a4
3 changed files with 16 additions and 4 deletions

View File

@@ -16,6 +16,12 @@ module.exports = {
speed: 'speed',
error: 'error'
},
carrypoint: {
topinfo: 'pickup point',
button1: 'auto pickup',
button2: 'auto release',
button3: 'set target site'
},
user: {
usermanagement: 'User management',
fullname: 'Full name',

View File

@@ -16,6 +16,12 @@ module.exports = {
speed: '当前速度',
error: 'AGV故障'
},
carrypoint: {
topinfo: '搬运起点',
button1: '自动取货',
button2: '自动放货',
button3: '定位目标站点'
},
user: {
usermanagement: '用户管理',
fullname: '姓名',

View File

@@ -3,7 +3,7 @@
<div class="right_side">
<div class="content_wrap">
<div class="title_wrap">
<h2>搬运起点</h2>
<h2>{{ $t('carrypoint.topinfo') }}</h2>
</div>
<div class="box1">
<div class="point-box">
@@ -11,9 +11,9 @@
</div>
</div>
<div class="box2 buttons_wrapper">
<button class="button_control" @click="toSure('3')"><p>自动取货</p></button>
<button class="button_control" @click="toSure('4')"><p>自动放货</p></button>
<button class="button_control" @click="toSure('1')"><p>定为目标站点</p></button>
<button class="button_control" @click="toSure('3')"><p>{{ $t('carrypoint.button1') }}</p></button>
<button class="button_control" @click="toSure('4')"><p>{{ $t('carrypoint.button2') }}</p></button>
<button class="button_control" @click="toSure('1')"><p>{{ $t('carrypoint.button3') }}</p></button>
</div>
</div>
</div>