翻译3个页面

This commit is contained in:
2024-01-12 17:58:33 +08:00
parent f35d800396
commit ba4cf1d1b3
6 changed files with 113 additions and 44 deletions

View File

@@ -1,11 +1,11 @@
<template>
<view class="zd_container">
<nav-bar title="任务管理"></nav-bar>
<nav-bar title="{{$t('menu.task-management')}}"></nav-bar>
<view class="zd_content">
<view class="zd_wrapper">
<view class="filter_item">
<view class="filter_label_wraper">
<span class="filter_label">关键字</span>
<span class="filter_label">{{$t('filter.keywords')}}</span>
</view>
<view class="filter_input_wraper">
<search-box
@@ -19,18 +19,18 @@
<table>
<thead>
<tr>
<th>任务号</th>
<th>物料编码</th>
<th>载具1</th>
<th>载具2</th>
<th>取货点1</th>
<th>放货点1</th>
<th>取货点2</th>
<th>放货点2</th>
<th>状态</th>
<th>任务类型</th>
<th>{{$t('grid.task-number')}}</th>
<th>{{$t('grid.material-code')}}</th>
<th>{{$t('filter.vehicle-code')}}1</th>
<th>{{$t('filter.vehicle-code')}}2</th>
<th>{{$t('grid.pickup-point')}}1</th>
<th>{{$t('grid.release-point')}}1</th>
<th>{{$t('grid.pickup-point')}}2</th>
<th>{{$t('grid.release-point')}}2</th>
<th>{{$t('filter.state')}}</th>
<th>{{$t('grid.task-type')}}</th>
<th>AGV</th>
<th>生成时间</th>
<th>{{$t('grid.generation-time')}}</th>
</tr>
</thead>
<tbody>
@@ -54,9 +54,9 @@
</view>
</view>
<view class="submit-bar">
<button class="submit-button" :class="{'btn-disabled': !pkId}" :disabled="disabled2" @tap="_taskConfirm">强制完成</button>
<button class="submit-button" :class="{'btn-disabled': !pkId}" :disabled="disabled1" @tap="_againLssued">重新下发</button>
<button class="submit-button" @tap="_taskTaskQuery">查询</button>
<button class="submit-button" :class="{'btn-disabled': !pkId}" :disabled="disabled2" @tap="_taskConfirm">{{$t('button.force-complete')}}</button>
<button class="submit-button" :class="{'btn-disabled': !pkId}" :disabled="disabled1" @tap="_againLssued">{{$t('button.reissue')}}</button>
<button class="submit-button" @tap="_taskTaskQuery">{{$t('button.search')}}</button>
</view>
</view>
</template>