snow 2 年之前
父節點
當前提交
09aa570305

File diff suppressed because it is too large
+ 0 - 0
dist/index.html


File diff suppressed because it is too large
+ 0 - 0
dist/static/css/app.0aa65dab.css


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.0c1eddaa.js


二進制
dist/static/js/app.0c1eddaa.js.gz


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.0c635f5f.js


二進制
dist/static/js/app.0c635f5f.js.gz


+ 2 - 2
src/components/reports/src/DepartmentReport.vue

@@ -64,14 +64,14 @@ export default {
       /* 完成额 = 月销售额 - 月退货额 **/
       /* 完成额 = 月销售额 - 月退货额 **/
       const completion = subtraction(month, monthReturn)
       const completion = subtraction(month, monthReturn)
        /* 完成率 = 完成额 / 月指标 **/
        /* 完成率 = 完成额 / 月指标 **/
-      const completionRate = multiplication(division(completion,total_tips) || 0, 100).toFixed(2)
+      const completionRate = multiplication(division(completion,total_tips) || 0, 100)
       return {
       return {
         /* 月指标 **/
         /* 月指标 **/
         total_tips: unit2TenThousand(total_tips),
         total_tips: unit2TenThousand(total_tips),
         /* 完成额 **/
         /* 完成额 **/
         month: unit2TenThousand(completion),
         month: unit2TenThousand(completion),
         /* 完成率 **/
         /* 完成率 **/
-        completionRate: completionRate + '%'
+        completionRate: completionRate ? completionRate.toFixed(2) + '%' : completionRate + '%'
       }
       }
     }
     }
   },
   },

+ 1 - 1
src/components/reports/src/_utils.js

@@ -72,7 +72,7 @@ export function subtraction(arg1, arg2) {
 
 
 
 
 export function unit2TenThousand(value){
 export function unit2TenThousand(value){
-  if(value === NaN || value === "NaN" || value === 0 || value === "0") return '0.00'
+  if(value === NaN || value === "NaN" || value === 0 || value === "0") return '0'
   if(value < 10000) return value
   if(value < 10000) return value
   return division(value,10000) + 'W'
   return division(value,10000) + 'W'
 }
 }

Some files were not shown because too many files changed in this diff