Prechádzať zdrojové kódy

多语言适配bug修复

qymljy 7 mesiacov pred
rodič
commit
dbfb01a2f0

+ 1 - 1
src/HDrpManagement/contactProfile/modules/detail.vue

@@ -1018,7 +1018,7 @@ export default {
         return this.tool.formatAmount(num, 0, "¥");
       } else {
         return (
-          this.tool.formatAmount(tool.unitConversion(num, 10000), 2, "¥") +
+          this.tool.formatAmount(this.tool.unitConversion(num, 10000), 2, "¥") +
           this.$t("万")
         );
       }

+ 1 - 1
src/HDrpManagement/contactProfile/modules/myNewCrad.vue

@@ -45,7 +45,7 @@ export default {
       if (num == 0) {
         return this.tool.formatAmount(num, 0, '¥')
       } else {
-        return this.tool.formatAmount(tool.unitConversion(num , 10000), 2, '¥') +this.$t('万')
+        return this.tool.formatAmount(this.tool.unitConversion(num , 10000), 2, '¥') +this.$t('万')
       }
     },
   }

+ 1 - 1
src/HDrpManagement/customerPortrait/modules/detail.vue

@@ -601,7 +601,7 @@ export default {
       if (num == 0) {
         return this.tool.formatAmount(num,0,'¥')
       } else {
-        return this.tool.formatAmount(tool.unitConversion(num , 10000),2,'¥') +this.$t('万')
+        return this.tool.formatAmount(this.tool.unitConversion(num , 10000),2,'¥') +this.$t('万')
       }
     },
     /* 渲染表格 */

+ 2 - 2
src/HDrpManagement/invoicePredictionManage/details/index.vue

@@ -385,7 +385,7 @@ export default {
             this.mainData.orderoutamount > 10000
               ? "¥" +
                 this.tool.formatAmount(
-                  tool.unitConversion(this.mainData.orderoutamount, 10000),
+                  this.tool.unitConversion(this.mainData.orderoutamount, 10000),
                   2
                 ) +
                 this.$t("万")
@@ -401,7 +401,7 @@ export default {
             this.mainData.orderinvoamount > 10000
               ? "¥" +
                 this.tool.formatAmount(
-                  tool.unitConversion(this.mainData.orderinvoamount, 10000),
+                  this.tool.unitConversion(this.mainData.orderinvoamount, 10000),
                   2
                 ) +
                 this.$t("万")

+ 2 - 2
src/HDrpManagement/invoicePredictionManage/details/modules/subordinate.vue

@@ -117,7 +117,7 @@ export default {
             this.mainData.orderoutamount > 10000
               ? "¥" +
                 this.tool.formatAmount(
-                  tool.unitConversion(this.mainData.orderoutamount, 10000),
+                  this.tool.unitConversion(this.mainData.orderoutamount, 10000),
                   2
                 ) +
                 this.$t("万")
@@ -133,7 +133,7 @@ export default {
             this.mainData.orderinvoamount > 10000
               ? "¥" +
                 this.tool.formatAmount(
-                  tool.unitConversion(this.mainData.orderinvoamount, 10000),
+                  this.tool.unitConversion(this.mainData.orderinvoamount, 10000),
                   2
                 ) +
                 this.$t("万")

+ 1 - 1
src/HDrpManagement/projectPortrait/modules/detail.vue

@@ -691,7 +691,7 @@ export default {
       if (num == 0) {
         return this.tool.formatAmount(num,0,'¥')
       } else {
-        return this.tool.formatAmount(tool.unitConversion(num , 10000),2,'¥') +this.$t('万')
+        return this.tool.formatAmount(this.tool.unitConversion(num , 10000),2,'¥') +this.$t('万')
       }
     },
   },

+ 1 - 1
src/HDrpManagement/projectPredictionManage/details/index.vue

@@ -324,7 +324,7 @@ export default {
             this.mainData.projectamount > 10000
               ? "¥" +
                 this.tool.formatAmount(
-                  tool.unitConversion(this.mainData.projectamount, 10000),
+                  this.tool.unitConversion(this.mainData.projectamount, 10000),
                   2
                 ) +
                 this.$t("万")

+ 1 - 1
src/HDrpManagement/projectPredictionManage/details/modules/subordinate.vue

@@ -92,7 +92,7 @@ export default {
             this.mainData.projectamount > 10000
               ? "¥" +
                 this.tool.formatAmount(
-                  tool.unitConversion(this.mainData.projectamount, 10000),
+                  this.tool.unitConversion(this.mainData.projectamount, 10000),
                   2
                 ) +
                 this.$t("万")

+ 1 - 1
src/HDrpManagement/salerPortrait/modules/detail.vue

@@ -1372,7 +1372,7 @@ export default {
       if (num == 0) {
         return this.tool.formatAmount(num, 0, "¥");
       } else {
-        return this.tool.formatAmount(tool.unitConversion(num , 10000), 2, "¥") +this.$t("万");
+        return this.tool.formatAmount(this.tool.unitConversion(num , 10000), 2, "¥") +this.$t("万");
       }
     },
     /*订单明细排序*/