Browse Source

提货提示

xiaomei 9 months ago
parent
commit
6d02399acf
3 changed files with 9 additions and 4 deletions
  1. 3 1
      src/language/en.json
  2. 3 1
      src/language/zh.json
  3. 3 2
      src/views/mine/teaRights.vue

+ 3 - 1
src/language/en.json

@@ -237,5 +237,7 @@
   "lang236": "Select province/city/district",
   "lang237": "Detailed address:",
   "lang238": "Please fill in the information completely",
-  "lang239": "XX Chabao logistics fee needs to be deducted when picking up goods"
+  "lang239": "XX Chabao logistics fee needs to be deducted when picking up goods",
+  "lang240": "Note: You need to pay the packaging and logistics fees of XX Chabao when picking up the goods",
+  "lang241": "You need to pay the packaging and logistics fees of XX Chabao when picking up the goods"
 }

+ 3 - 1
src/language/zh.json

@@ -237,5 +237,7 @@
   "lang236": "选择省/市/区",
   "lang237": "详细地址:",
   "lang238": "请完整填写信息",
-  "lang239": "提货需要扣除 XX 茶宝物流费用"
+  "lang239": "提货需要扣除 XX 茶宝物流费用",
+  "lang240": "备注:提货需支付包装及物流费共计 XX 茶宝",
+  "lang241": "提货需支付 XX 茶宝包装及物流费用"
 }

+ 3 - 2
src/views/mine/teaRights.vue

@@ -123,7 +123,8 @@
       <div class="area">
         <div class="title">{{ $t('lang157') }}</div>
         <van-address-edit :area-list="areaList" :address-info="AddressInfo" show-search-result :save-button-text="$t('lang111')" :area-columns-placeholder="[]" @save="onSave" />
-        <span>{{ $t('lang233') + ' ' + logistics_freight + ' ' + $t('lang174') + $t('lang234') }}</span>
+        <!-- <span>{{ $t('lang233') + ' ' + logistics_freight + ' ' + $t('lang174') + $t('lang234') }}</span> -->
+         <span>{{ $t('lang240').replace('XX', logistics_freight) }}</span>
       </div>
     </van-popup>
     <!-- 赠送 -->
@@ -327,7 +328,7 @@ export default {
       let _this = this
       Dialog.confirm({
         title: _this.$t('lang136'),
-        message: _this.$t('lang239').replace('XX', _this.logistics_freight),
+        message: _this.$t('lang241').replace('XX', _this.logistics_freight),
         confirmButtonText: _this.$t('lang111'),
         cancelButtonText: _this.$t('lang135'),
       })