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())