Przeglądaj źródła

多语言适配调整

qymljy 8 miesięcy temu
rodzic
commit
7a59055a62

+ 2 - 2
src/SDrpManagement/agentOrder/modules/edit.vue

@@ -620,12 +620,12 @@ export default {
             this.data.amount >= this.freefreightamount
               ? this.$t("当前订单免运费")
               : this.$t("订单满") +
-                `‘${this.tool.formatAmount(this.freefreightamount, 2)}’${$t(
+                `‘${this.tool.formatAmount(this.freefreightamount, 2)}’${this.$t(
                   "元免运费,当前还差"
                 )}‘${this.tool.formatAmount(
                   this.freefreightamount - this.data.amount,
                   2
-                )}’${$t("元")}`;
+                )}’${this.$t("元")}`;
           break;
       }
       return result;

+ 2 - 2
src/SDrpManagement/salerOrder/modules/edit.vue

@@ -603,12 +603,12 @@ export default {
             this.data.amount >= this.freefreightamount
               ? this.$t("当前订单免运费")
               : this.$t("订单满") +
-                `${this.tool.formatAmount(this.freefreightamount, 2)}${$t(
+                `${this.tool.formatAmount(this.freefreightamount, 2)}${this.$t(
                   "元免运费,当前还差"
                 )}${this.tool.formatAmount(
                   this.freefreightamount - this.data.amount,
                   2
-                )}${$t("元")}`;
+                )}${this.$t("元")}`;
           break;
       }
       return result;