@@ -28,11 +28,11 @@
{{ productInfo.sku }}
- 单价:
+ {{ $t('product.unitPrice') }}:
{{ productInfo.currency }} {{ formatPrice(productInfo.price) }}
- 数量:
+ {{ $t('product.quantity') }}:
x{{ productInfo.quantity }}
- 小计:
+ {{ $t('order.subtotal') }}:
{{ productInfo.currency }} {{ formatPrice(productInfo.price * productInfo.quantity) }}
@@ -44,239 +44,238 @@
ref="formRef"
:model="form"
:rules="rules"
- label-width="120px"
- label-position="left"
+ :label-width="isMobile ? 'auto' : '120px'"
+ :label-position="isMobile ? 'top' : 'left'"
>
- 客户信息
+ {{ $t('order.customerInfo') }}
-
+
-
+
-
+
- 收货地址
-
+ {{ $t('order.shippingAddress') }}
+
-
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
+
+
+
-
-
-
-
-
-
-
- {{ currentCountryConfig.name }}邮编为{{ currentCountryConfig.postcodeLength }}位数字
-
+
+
+
+
+
+
+
+
+ {{ currentCountryConfig.name }}{{ t('order.postcodeHint').replace('{0}', currentCountryConfig.postcodeLength) }}
+
+
-
+
-
+
-
+
- 提交订单
+ {{ $t('order.submit') }}
- 返回
+ {{ $t('order.back') }}
@@ -286,10 +285,15 @@