Commit 863ff351 authored by xiaoyan's avatar xiaoyan

fix: 修改国际化

parent 37e152af
......@@ -40,7 +40,7 @@
<view>
<view>{{$t('品名')}}{{ $lang.locale==='zh-Hans'?v.prodTitleZh:v.prodTitleEn }}</view>
<view>{{$t('备案')}}
<template v-if="v.brandName">{{v.brandName}}</template>
<template v-if="v.brandName">{{$t(`${v.brandName}`)}}</template>
<dict-tag v-else :type="DICT_TYPE.ECW_IS_BRAND" :value="v.feeType" />
</view>
</view>
......
......@@ -122,6 +122,7 @@
"装柜影像": "photo of container loading",
"补单": "add more",
"装柜纠错": "loading Correct errors",
"装箱纠错": "Packing Correct errors",
"下一步": "next step",
"审核中": "Under review",
"确认封柜": "confirm close container",
......@@ -199,6 +200,7 @@
"单位": "Unit",
"材质": "texture of material",
"数量": "quantity",
"用途": "Usage",
"关闭": "close",
"请问您是否要将订单:": "Would you like to place your order:",
"移出当前出货单": "Transfer out the current shipment order",
......@@ -558,7 +560,9 @@
"已到仓": "Received warehouse",
"到仓影像": "To warehouse imaging",
"合包装箱": "Combined packaging box",
"未合包装箱": "Uncombined packaging box",
"箱号": "Box number",
"编辑": "Edit",
"自动生成": "Automatic generation",
"编辑合包箱编号": "Edit package number",
"新建合包箱编号": "New packaging box number",
......
......@@ -68,9 +68,9 @@
</view>
</view>
<view style="flex:2;">
<button size="mini" type="primary" @click="editMergePkg(item)">编辑</button>
<button size="mini" type="warn" @click="package(item)">装箱</button>
<button size="mini" type="danger" @click="del(item)">删除</button>
<button size="mini" type="primary" @click="editMergePkg(item)">{{$t('编辑')}}</button>
<button size="mini" type="warn" @click="package(item)">{{$t('装箱')}}</button>
<button size="mini" type="danger" @click="del(item)">{{$t('删除')}}</button>
</view>
</view>
</view>
......
......@@ -21,7 +21,7 @@
<view class="flex text-center padding-sm" :key="'goods-' + index">
<view class="flex-sub">{{ $lang.locale==='zh-Hans'? v.prodTitleZh:v.prodTitleEn }}</view>
<view class="flex-sub">
<template v-if="v.brandName">{{v.brandName}}</template>
<template v-if="v.brandName">{{$t(`${v.brandName}`)}}</template>
<dict-tag v-else :type="DICT_TYPE.ECW_IS_BRAND" :value="v.brandType" />
</view>
<view class="flex-sub"><dict-tag :type="DICT_TYPE.ECW_PRODUCT_MATERIAL" :value="v.material" /></view>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment