部分页面国际化

This commit is contained in:
2025-06-06 16:05:31 +08:00
parent 9dddf7df6d
commit 9b0835a7b5
30 changed files with 229 additions and 156 deletions

View File

@@ -6,7 +6,7 @@
<view class="zd_wrapper">
<view class="filter_item">
<view class="filter_label_wraper">
<span class="filter_label">子卷号</span>
<span class="filter_label">{{$t('grid.sub-roll-number')}}</span>
</view>
<view class="filter_input_wraper">
<search-box v-model="val1" @handleChange="handleChange" />
@@ -18,18 +18,18 @@
<table>
<thead>
<tr>
<th>木箱号</th>
<th>{{$t('filter.box-no')}}</th>
<th>木箱编码</th>
<th>点位</th>
<th>{{$t('grid.point-code')}}</th>
<th>木箱规格</th>
</tr>
</thead>
<tbody>
<tr v-for="(e, i) in dataList" :key="i">
<td>{{e.box_no}}</td>
<td>{{e.material_code}}</td>
<td>{{e.material_name}}</td>
<td>{{e.struct_code}}</td>
<td>{{e.material_code}}</td>
</tr>
</tbody>
</table>
@@ -38,8 +38,8 @@
<!-- <uni-load-more color="#007AFF" iconType="circle" :status="status" :icon-size="14" :content-text="contentText" v-if="dataList.length > 0"/> -->
</view>
<view class="zd-row submitbar">
<button class="zd-col-6 btn-submit btn-default letter-30" @tap="clearUp">清空</button>
<button class="zd-col-15 btn-submit btn-success letter-30" @tap="toSure">查询</button>
<button class="zd-col-6 btn-submit btn-default letter-30" @tap="clearUp">{{$t('button.clear')}}</button>
<button class="zd-col-15 btn-submit btn-success letter-30" @tap="toSure">{{$t('button.search')}}</button>
</view>
<!-- <up-top ref="UT" :scrollTop="top"></up-top> -->
</view>