From 9bc94b6816faa707e9925e4a40bea8fee0699228 Mon Sep 17 00:00:00 2001 From: hwj Date: Wed, 24 Jun 2026 15:49:48 +0800 Subject: [PATCH] =?UTF-8?q?style=EF=BC=9A=E4=BA=A7=E5=93=81=E5=85=A5?= =?UTF-8?q?=E5=BA=93=E3=80=81=E4=BA=A7=E5=93=81=E5=87=BA=E5=BA=93=E3=80=81?= =?UTF-8?q?=E7=9B=98=E7=82=B9=E7=8A=B6=E6=80=81=E7=AD=9B=E9=80=89=E6=A1=86?= =?UTF-8?q?=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/locales/en-US.js | 2 ++ src/locales/zh-CN.js | 2 ++ src/pages_function/pages/productCheck/index.vue | 7 +++---- src/pages_function/pages/productInbound/index.vue | 7 +++---- src/pages_function/pages/productOutbound/index.vue | 7 +++---- 5 files changed, 13 insertions(+), 12 deletions(-) diff --git a/src/locales/en-US.js b/src/locales/en-US.js index bf2a1ed..b2c2e57 100644 --- a/src/locales/en-US.js +++ b/src/locales/en-US.js @@ -1400,6 +1400,7 @@ export default { selectPalletTitle: 'Select Pallet', createPalletTitle: 'New Pallet', all: 'All', + inboundStatus: 'Inbound Status', reset: 'Reset', clear: 'Clear', loading: 'Loading...', @@ -1637,6 +1638,7 @@ export default { selectProductTitle: 'Select Product', selectPalletTitle: 'Select Pallet', all: 'All', + outboundStatus: 'Outbound Status', reset: 'Reset', clear: 'Clear', loading: 'Loading...', diff --git a/src/locales/zh-CN.js b/src/locales/zh-CN.js index dd8941d..3ec6af9 100644 --- a/src/locales/zh-CN.js +++ b/src/locales/zh-CN.js @@ -1403,6 +1403,7 @@ export default { selectPalletTitle: '选择托盘', createPalletTitle: '新增托盘', all: '全部', + inboundStatus: '入库状态', reset: '重置', clear: '清空', loading: '加载中...', @@ -1640,6 +1641,7 @@ export default { selectProductTitle: '选择产品', selectPalletTitle: '选择托盘', all: '全部', + outboundStatus: '出库状态', reset: '重置', clear: '清空', loading: '加载中...', diff --git a/src/pages_function/pages/productCheck/index.vue b/src/pages_function/pages/productCheck/index.vue index 0efdc22..9941478 100644 --- a/src/pages_function/pages/productCheck/index.vue +++ b/src/pages_function/pages/productCheck/index.vue @@ -18,7 +18,7 @@ /> - {{ selectedStatusLabel || t('productCheck.all') }} + {{ selectedStatusLabel || t('productCheck.checkStatus') }} {{ t('productCheck.reset') }} @@ -155,7 +155,6 @@ const selectedStatus = ref('') const searchKeyword = ref('') const statusPickerRef = ref(null) const statusOptions = computed(() => [ - { label: t('productCheck.all'), value: '' }, { label: t('productCheck.statusDraft'), value: '0' }, { label: t('productCheck.statusAuditing'), value: '10' }, { label: t('productCheck.statusApproved'), value: '20' }, @@ -526,7 +525,7 @@ onUnload(() => clearSearchTimer())