From 332350cfabe164b20109b61ce1e075cec8aa8650 Mon Sep 17 00:00:00 2001 From: ZF sun <34314687@qq.com> Date: Fri, 26 Dec 2025 18:11:15 +0800 Subject: [PATCH] =?UTF-8?q?chore(=E5=A4=9A=E8=AF=AD=E8=A8=80):=20=E9=83=A8?= =?UTF-8?q?=E5=88=86=E8=AF=AD=E8=A8=80=E6=9A=82=E6=97=B6=E4=BD=BF=E7=94=A8?= =?UTF-8?q?=20isEnEnv=20=E8=AE=A1=E7=AE=97=E5=B1=9E=E6=80=A7=E6=9D=A5?= =?UTF-8?q?=E5=88=A4=E6=96=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components-diy/diy-category-item.vue | 4 +-- pages_promotion/merch/detail.vue | 4 +-- pages_promotion/point/goods_list.vue | 42 ++++++++++++++-------------- 3 files changed, 25 insertions(+), 25 deletions(-) diff --git a/components-diy/diy-category-item.vue b/components-diy/diy-category-item.vue index 4446591..3138ed6 100644 --- a/components-diy/diy-category-item.vue +++ b/components-diy/diy-category-item.vue @@ -100,7 +100,7 @@ parseFloat(showPrice(item)).toFixed(2).split('.')[1] }} - 咨询 + {{ $lang('Make') ? $lang('Make') : '咨询' }} - 咨询 + {{ $lang('Make') ? $lang('Make') : '咨询' }} diff --git a/pages_promotion/merch/detail.vue b/pages_promotion/merch/detail.vue index ac7dd4a..e45ec69 100644 --- a/pages_promotion/merch/detail.vue +++ b/pages_promotion/merch/detail.vue @@ -79,7 +79,7 @@ .{{ parseFloat(showPrice(item)).toFixed(2).split('.')[1] }} - 咨询 + {{ $lang('Make') ? $lang('Make') : '咨询' }} @@ -164,7 +164,7 @@ .{{ parseFloat(showPrice(item)).toFixed(2).split('.')[1] }} - 咨询 + {{ $lang('Make') ? $lang('Make') : '咨询' }} diff --git a/pages_promotion/point/goods_list.vue b/pages_promotion/point/goods_list.vue index d1e2fb1..080341f 100644 --- a/pages_promotion/point/goods_list.vue +++ b/pages_promotion/point/goods_list.vue @@ -5,7 +5,7 @@ - + @@ -13,24 +13,24 @@ - 综合 + {{ isEnEnv ? 'Comprehensive' : '综合' }} - 积分 + {{ isEnEnv ? 'Points' : '积分' }} - 上新时间 + {{ isEnEnv ? 'New Arrival' : '上新时间' }} - 筛选 + {{ isEnEnv ? 'Filter' : '筛选' }} @@ -48,12 +48,12 @@ - {{ item.name }} + {{ isEnEnv ? item.en_goods_name : item.goods_name }} {{ item.point }} - 积分 + {{ isEnEnv ? 'Points' : '积分' }} + {{ $lang('common.currencySymbol') }} @@ -63,7 +63,7 @@ - 库存{{ item.stock }} + {{ isEnEnv ? 'Stock ' : '库存' }}{{ item.stock }} @@ -72,7 +72,7 @@ - + @@ -80,22 +80,22 @@ - 筛选 + {{ isEnEnv ? 'Filter' : '筛选' }} - 积分区间 + {{ isEnEnv ? 'Point Range' : '积分区间' }} - + - + - 全部分类 + {{ isEnEnv ? 'All Categories' : '全部分类' }} - 全部 + {{ isEnEnv ? 'All' : '全部' }} {{ item.category_name }} @@ -103,8 +103,8 @@ - - + + @@ -268,26 +268,26 @@ // } if (!Number(this.maxPoint) && this.maxPoint) { this.$util.showToast({ - title: '请输入最高价' + title: this.isEnEnv ? 'Please enter the maximum price' : '请输入最高价' }); return; } if (Number(this.minPoint) < 0 || Number(this.maxPoint) < 0) { this.$util.showToast({ - title: '筛选价格不能小于0' + title: this.isEnEnv ? 'Filter price cannot be less than 0' : '筛选价格不能小于0' }); return; } if (this.minPoint != '' && Number(this.minPoint) > Number(this.maxPoint) && this.maxPoint) { this.$util.showToast({ - title: '最低价不能大于最高价' + title: this.isEnEnv ? 'Minimum price cannot be greater than maximum price' : '最低价不能大于最高价' }); return; } if (this.maxPoint != '' && Number(this.maxPoint) < Number(this.minPoint)) { this.$util.showToast({ - title: '最高价不能小于最低价' + title: this.isEnEnv ? 'Maximum price cannot be less than minimum price' : '最高价不能小于最低价' }); return; }