-
+
-
{{ menu.name }}
+
{{ menu.name }}
@@ -26,14 +26,14 @@
import { CardTitle } from '@/components/Card'
defineOptions({ name: 'ShortcutCard' })
-
+const { t } = useI18n()
const router = useRouter() // 路由
/** 菜单列表 */
const menuList = [
- { name: '订单管理', icon: 'ep:list', bgColor: 'bg-yellow-500', routerName: 'SaleOrder' },
+ { name: t('order.ordermanage'), icon: 'ep:list', bgColor: 'bg-yellow-500', routerName: 'SaleOrder' },
{
- name: '创建订单',
+ name: t('order.createorder'),
icon: 'fa-solid:project-diagram',
bgColor: 'bg-green-600',
routerName: 'CreateOrder'
diff --git a/hangtag-ui/hangtag-ui-front/src/views/Login/Login.vue b/hangtag-ui/hangtag-ui-front/src/views/Login/Login.vue
index 1a2bb33..d6a954d 100644
--- a/hangtag-ui/hangtag-ui-front/src/views/Login/Login.vue
+++ b/hangtag-ui/hangtag-ui-front/src/views/Login/Login.vue
@@ -10,7 +10,8 @@

-
{{ underlineToHump(appStore.getTitle) }}
+
+
{{ t('omsSystem.title') }}
diff --git a/hangtag-ui/hangtag-ui-front/src/views/oms/saleorder/detail/index.vue b/hangtag-ui/hangtag-ui-front/src/views/oms/saleorder/detail/index.vue
index 9070c5b..2903950 100644
--- a/hangtag-ui/hangtag-ui-front/src/views/oms/saleorder/detail/index.vue
+++ b/hangtag-ui/hangtag-ui-front/src/views/oms/saleorder/detail/index.vue
@@ -13,27 +13,27 @@
备注
+ @click="remark">{{t('saleorder.title.remarks')}}
-
- {{ formData.billno }}
- {{formData.contractType}}
- {{ formatDate(formData.bizdate,'YYYY-MM-DD') }}
- {{ formatDate(formData.confirmdate,'YYYY-MM-DD') }}
- {{ formatDate(formData.plansenddate,'YYYY-MM-DD') }}
- {{ formData.phone }}
- {{ formData.fax }}
- {{ formData.emails }}
- {{ formData?.customer?.number }}
- {{ formData?.customer?.name }}
- {{ formData?.customer?.company }}
- {{ formData.currencyType }}
- {{ formData.remark }}
+
+ {{ formData.billno }}
+ {{formData.contractType}}
+ {{ formatDate(formData.bizdate,'YYYY-MM-DD') }}
+ {{ formatDate(formData.confirmdate,'YYYY-MM-DD') }}
+ {{ formatDate(formData.plansenddate,'YYYY-MM-DD') }}
+ {{ formData.phone }}
+ {{ formData.fax }}
+ {{ formData.emails }}
+ {{ formData?.customer?.number }}
+ {{ formData?.customer?.name }}
+ {{ formData?.customer?.company }}
+ {{ formData.currencyType }}
+ {{ formData.remark }}
-
-
+
+
-
+
@@ -92,10 +92,10 @@
>
-
-
-
-
+
+
+
+
-
+
-
-
+
+
@@ -144,22 +144,22 @@
-
- {{ formData.invoiceCode }}
- {{ formData.invoiceName }}
- {{ formData.address }}
- {{ formData.invoiceRemarks }}
+
+ {{ formData.invoiceCode }}
+ {{ formData.invoiceName }}
+ {{ formData.address }}
+ {{ formData.invoiceRemarks }}
-
- {{ formatDate(formData.createTime) }}
- {{ formData.updaterName }}
- {{ formatDate(formData.updateTime) }}
- {{ formData.auditorName }}
- {{ formatDate(formData.auditorTime) }}
+
+ {{ formatDate(formData.createTime) }}
+ {{ formData.updaterName }}
+ {{ formatDate(formData.updateTime) }}
+ {{ formData.auditorName }}
+ {{ formatDate(formData.auditorTime) }}
@@ -181,7 +181,7 @@ defineOptions({ name: 'TradeOrderDetail' })
const message = useMessage() // 消息弹窗
-
+const { t } = useI18n() // 国际化
const itemFormEntrysRef = ref() // 表单 Ref
diff --git a/hangtag-ui/hangtag-ui-front/src/views/oms/saleorder/index.vue b/hangtag-ui/hangtag-ui-front/src/views/oms/saleorder/index.vue
index 06d61a6..f200e25 100644
--- a/hangtag-ui/hangtag-ui-front/src/views/oms/saleorder/index.vue
+++ b/hangtag-ui/hangtag-ui-front/src/views/oms/saleorder/index.vue
@@ -8,61 +8,61 @@
:inline="true"
label-width="68px"
>
-
+
-
+
-
+
-
+
-
+
-
+
@@ -89,27 +89,27 @@
/>
-->
-
+
-
+
- 搜索
- 重置
+ {{t('billlist.search')}}
+ {{t('billlist.reset')}}
@@ -129,14 +129,15 @@
@click="handleUpdateBillStatus('invalid')"
:disabled="selectionList.length === 0"
>
- 作废
+ {{t('billlist.cancel')}}
提交
+ >
+ {{t('billlist.submit')}}
-
-
+
+
-
+
@@ -242,7 +241,7 @@
link
type="primary">
- 修改
+ {{t('billlist.edit')}}
@@ -261,7 +260,7 @@
@click="openDetail(scope.row.id)"
>
- 详情
+ {{t('billlist.details')}}