国际化

This commit is contained in:
2025-09-12 13:13:29 +08:00
parent caef2ecc53
commit 2ebaeac1e9
18 changed files with 533 additions and 331 deletions

View File

@@ -1,15 +1,15 @@
<template>
<view class="home_wraper">
<view class="zd_content">
<view class="header">首页</view>
<view class="header">{{$t('home.title')}}</view>
<view class="userInfo-wrap">
<view class="userInfo">
<text v-if="userName !== ''" class="p1">{{userName}}</text>
<text class="p2">欢迎进入宁波富佳手持系统</text>
<text class="p2">{{$t('home.message')}}</text>
</view>
<view class="exit" @tap="Quit">
<view class="icon-exit"></view>
<view class="exit-text">退出</view>
<view class="exit-text">{{$t('home.exit')}}</view>
</view>
</view>
<view class="zd_home_wrapper">
@@ -32,13 +32,13 @@
return {
userName: '',
menuList: [
{title: '物料组盘', icon: 'RF01', path: '/pages/manage/wlzp'},
{title: '定点作业', icon: 'RF02', path: '/pages/manage/ddzy'},
{title: '组盘入库', icon: 'RF03', path: '/pages/manage/zprk'},
{title: '人工叫料', icon: 'RF04', path: '/pages/manage/rgjl'},
{title: '手工移库', icon: 'RF05', path: '/pages/manage/sgyk'},
{title: '作业管理', icon: 'RF06', path: '/pages/manage/zygl'},
{title: '点位更新', icon: 'RF07', path: '/pages/manage/dwgx'}
{title: this.$t('home.MaterialPalletizing'), icon: 'RF01', path: '/pages/manage/wlzp'},
{title: this.$t('home.FixedpointOperation'), icon: 'RF02', path: '/pages/manage/ddzy'},
{title: this.$t('home.PalletizingWarehousing'), icon: 'RF03', path: '/pages/manage/zprk'},
{title: this.$t('home.ManualMaterialRequest'), icon: 'RF04', path: '/pages/manage/rgjl'},
{title: this.$t('home.ManualWarehouseTransfer'), icon: 'RF05', path: '/pages/manage/sgyk'},
{title: this.$t('home.OperationManagement'), icon: 'RF06', path: '/pages/manage/zygl'},
{title: this.$t('home.PointUpdate'), icon: 'RF07', path: '/pages/manage/dwgx'}
],
show: false,
secM: []