snow 2 년 전
부모
커밋
dd9e981f34

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/index.html


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/css/app.7099a3c2.css


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/js/app.0c635f5f.js


BIN
dist/static/js/app.0c635f5f.js.gz


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/js/app.faf47ed1.js


BIN
dist/static/js/app.faf47ed1.js.gz


+ 3 - 3
src/App.vue

@@ -27,15 +27,15 @@
             </li>
 
             <li style="margin-bottom:20px">
-              <department-report name="百辰荣达" companyNo="GS2302231125079621" :date="currentDate" />
+              <department-report companyNo="GS2302231125079621" :date="currentDate" />
             </li>
 
             <li style="margin-bottom:20px">
-              <department-report name="普润心堂" companyNo="GS2302231124114965" :date="currentDate" />
+              <department-report companyNo="GS2302231124114965" :date="currentDate" />
             </li>
 
             <li style="margin-bottom:20px">
-              <department-report name="宏源广诚" companyNo="GS2302231323386950" :date="currentDate" />
+              <department-report companyNo="GS2302231323386950" :date="currentDate" />
             </li>
           </ul>
         </div>

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

@@ -1,6 +1,6 @@
 <template>
   <div class="SalesReportRejectedNew">
-    <h3 class="table-header">{{name}}业绩报表</h3>
+    <h3 class="table-header">{{companyName || '--'}}业绩报表</h3>
 
     <div class="table-sub__header">
       <span>月指标:</span>{{ stats.total_tips }}
@@ -31,7 +31,6 @@
           </template>
       </el-table-column>
 
-
       <el-table-column label="本月销售额" min-width="120" align="center">
         <template slot-scope="scope">
             {{ unit2TenThousand(scope.row.monthinfo.msale_total) }}
@@ -66,14 +65,13 @@ export default {
       const completion = subtraction(month, monthReturn)
        /* 完成率 = 完成额 / 月指标 **/
       const completionRate = multiplication(division(completion,total_tips) || 0, 100).toFixed(2)
-      
       return {
         /* 月指标 **/
         total_tips: unit2TenThousand(total_tips),
         /* 完成额 **/
         month: unit2TenThousand(completion),
         /* 完成率 **/
-        completionRate:completionRate + '%'
+        completionRate: completionRate + '%'
       }
     }
   },
@@ -85,6 +83,7 @@ export default {
         total_tips: 0,
         monthReturn:0
       },
+      companyName:"",
       mapReponseType,
       dataTime: this.date,
       loading: false,
@@ -121,7 +120,8 @@ export default {
       });
 
       if (res.code === 0 && res.data && res.data.length > 0) {
-        const { monthinfo = [], dayinfo = [], total_tips = 0 } = res.data[0] || [];
+        const { monthinfo = [], dayinfo = [], total_tips = 0, companyName } = res.data[0] || [];
+        this.companyName = companyName
         const types = Object.keys(mapReponseType)
 
 

+ 12 - 6
src/components/reports/src/WanyuReport.vue

@@ -1,6 +1,6 @@
 <template>
   <div class="SalesReportRejectedNew">
-    <h3 class="table-header">万宇业绩报表</h3>
+    <h3 class="table-header">北京万宇恒通国际科贸有限公司业绩报表</h3>
 
     <el-table
       :data="tableData"
@@ -16,9 +16,9 @@
     >
       <el-table-column label="部门" fixed="left" min-width="120" prop="depart" />
       <el-table-column label="本日销售额" min-width="120" align="center">
-        <template slot-scope="scope">
+         <template slot-scope="scope">
             {{ unit2TenThousand(scope.row.dayinfo.sale_total) }}
-          </template>
+         </template>
       </el-table-column>
 
 
@@ -49,7 +49,14 @@
 <script>
 import asyncRequest from "@/api/report";
 import setHeight from "@/mixins/index";
-import { addition, unit2TenThousand,multiplication,division, subtraction } from "./_utils";
+import { 
+  addition, 
+  unit2TenThousand,
+  multiplication,
+  division, 
+  subtraction 
+} from "./_utils";
+
 export default {
   name: "WanyuReport",
   props: ["date"],
@@ -155,7 +162,6 @@ export default {
           const monthNetSales = subtraction(monthinfo.msale_total, monthinfo.mth_total)
           /* 月经销售完成率 = 月净销售 / 销售指标 **/
           const monthProportion = multiplication(division(monthNetSales,total_tips),100).toFixed(2)
-
           return {
             depart,
             total_tips,
@@ -170,7 +176,7 @@ export default {
             },
             /* 占比 =  (当前部门销售额 / 各部门总销售额) / 100 **/
             proportion:multiplication(
-             division(monthinfo.msale_total,this.total.month) || 0
+              division(monthinfo.msale_total,this.total.month) || 0
             ,100) || 0 + '%',
           }
         })

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.