snow 1 gadu atpakaļ
vecāks
revīzija
2a29f4801e

Failā izmaiņas netiks attēlotas, jo tās ir par lielu
+ 0 - 0
dist/index.html


Failā izmaiņas netiks attēlotas, jo tās ir par lielu
+ 0 - 0
dist/static/css/app.12d92e03.css


Failā izmaiņas netiks attēlotas, jo tās ir par lielu
+ 0 - 0
dist/static/css/app.d5f2d3f8.css


Failā izmaiņas netiks attēlotas, jo tās ir par lielu
+ 0 - 0
dist/static/js/app.29e8da5e.js


BIN
dist/static/js/app.29e8da5e.js.gz


Failā izmaiņas netiks attēlotas, jo tās ir par lielu
+ 0 - 0
dist/static/js/app.eb7cc405.js


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


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

@@ -89,7 +89,7 @@ export function subtraction(arg1, arg2) {
 }
 
 export function unit2TenThousand(value,isTenThound = true){
-  if(value === NaN || value === "NaN" || Number(value) === 0) return '0'
+  if(value === NaN || value === "NaN" || Number(value) === 0 || value === undefined) return '0'
   if(!isTenThound) return value;
   if(value < 1000 && value > 0 || value < 0 && value > -1000) return value
   return division(value, 10000).toFixed(2) + 'W'

+ 58 - 21
src/components/newResults/company-month.vue

@@ -1,21 +1,18 @@
 <template>
   <div v-loading="loading">
     <div class="search" style="align-items: center;">
-      <div style="float:left">
-        业绩毛利完成情况-月度
+      <div style="float:left;font-size:14px;line-height:30px">
+        年度完成情况
       </div>
 
       <div style="float:right">
-        <el-switch :disabled="isEmpty" style="margin-right: 10px;" v-model="isTenThound" active-text="万元"
-          inactive-text="元" />
-
-        <el-select size="small" style="margin-right:10px;width:145px" v-model="companyNo" @change="requestData"
+        <el-select size="small" style="margin-right:10px;width:105px" v-model="companyNo" @change="requestData"
           :disabled="isEmpty">
           <el-option v-for="depart in cp_companies" :key="depart.id" :value="depart.value" :label="depart.label" />
         </el-select>
 
-        <el-date-picker class="fr picker" v-model="daytime" style=";width:100px" value-format="yyyy" :editable="false"
-          :disabled="isEmpty" :clearable="false" :size="'small'" type="year" format="yyyy" align="right"
+        <el-date-picker class="fr picker no-padding" v-model="daytime" style=";width:65px" value-format="yyyy"
+          :editable="false" :disabled="isEmpty" :clearable="false" :size="'small'" type="year" format="yyyy" align="right"
           placeholder="选择日期" :picker-options="{ disabledDate(time) { return time.getTime() > Date.now(); } }"
           @change="requestData" />
       </div>
@@ -25,26 +22,26 @@
       <el-table border size="mini" :data="tableData" :header-cell-class-name="setHeaderClassName"
         :cell-class-name="setCellClassName">
         <el-table-column fixed="left" label="月度" prop="month" align="center" width="45px" />
-        <el-table-column label="当月营收目标" align="center" min-width="140px">
+        <el-table-column label="营收目标" align="center" min-width="115px">
           <template slot-scope="scope">
             {{ unit2TenThousand(scope.row.total_tips, isTenThound) }}
           </template>
         </el-table-column>
-        <el-table-column label="当月营业收入(净)" align="center" min-width="140px">
+        <el-table-column label="营业收入(净)" align="center" min-width="115px">
           <template slot-scope="scope">
             <div :style="getCurrentValueStyle(scope.row.pure_sale, scope.row.total_tips, scope.row.month)">
               {{ unit2TenThousand(scope.row.pure_sale, isTenThound) }}
             </div>
           </template>
         </el-table-column>
-        <el-table-column label="当月营收完成%" align="center" min-width="140px">
+        <el-table-column label="营收完成%" align="center" min-width="95px">
           <template slot-scope="scope">
             <div :style="getCurrentRateStyle(scope.row.completion_rate, scope.row.month)">
               {{ Number(scope.row.completion_rate).toFixed(2) + "%" }}
             </div>
           </template>
         </el-table-column>
-        <el-table-column label="当月毛利完成%" align="center" min-width="140px">
+        <el-table-column label="毛利完成%" align="center" min-width="95px">
           <template slot-scope="scope">
             <div :style="getCurrentRateStyle(scope.row.cost_rate, scope.row.month)">
               {{ Number(scope.row.cost_rate).toFixed(2) + "%" }}
@@ -53,12 +50,12 @@
         </el-table-column>
 
         <template v-if="costField">
-          <el-table-column label="当月毛利目标" align="center" min-width="140px">
+          <el-table-column label="毛利目标" align="center" min-width="115px">
             <template slot-scope="scope">
               {{ unit2TenThousand(scope.row.cost_tips, isTenThound) }}
             </template>
           </el-table-column>
-          <el-table-column label="当月毛利完成" align="center" min-width="140px">
+          <el-table-column label="毛利完成" align="center" min-width="115px">
             <template slot-scope="scope">
               <div :style="getCurrentValueStyle(scope.row.pure_profit, scope.row.cost_tips, scope.row.month)">
                 {{ unit2TenThousand(scope.row.pure_profit, isTenThound) }}
@@ -83,11 +80,10 @@ import { mapCompany } from "./mapCompany";
 import dayjs from "dayjs"
 
 export default {
-  props: ['companies', 'costField'],
+  props: ['companies', 'costField', 'isTenThound'],
   data() {
     return {
       loading: false,
-      isTenThound: true,
       daytime: "",
       tableData: [],
       companyNo: "",
@@ -103,7 +99,7 @@ export default {
     if (jxIndex !== -1 || prIndex !== -1) this.hasCompose = true;
     this.cp_companies = this.companies.filter((item) => item.label !== "北京锦兴弘昌科技有限公司" && item.label !== "北京普润心堂商贸有限公司")
     if (this.hasCompose) this.cp_companies = [...this.cp_companies, { value: "GS2401181650538135", label: "普润&锦兴&知事" }]
-    if (this.cp_companies.length === 4) this.cp_companies = [{ value: "", label: "所有公司" }, ...this.cp_companies];
+    // if (this.cp_companies.length === 4) this.cp_companies = [{ value: "", label: "所有公司" }, ...this.cp_companies];
 
     this.isEmpty = this.cp_companies.length === 0;
     if (this.isEmpty) return;
@@ -119,6 +115,7 @@ export default {
       const days = dayjs().daysInMonth();
       const currentMonth = dayjs().month() + 1;
       if (Number(month) > Number(currentMonth)) return;
+      if(month === '合计') return;
       const oneDay = Number(division(100, days)).toFixed(2);
       const currentDay = dayjs().date();
       const currentTotalTip = Number(multiplication(currentDay, oneDay)).toFixed(2);
@@ -128,20 +125,29 @@ export default {
       const days = dayjs().daysInMonth();
       const currentMonth = dayjs().month() + 1;
       if (Number(month) > Number(currentMonth)) return;
+      if(month === '合计') return;
       const oneDay = Number(division(total, days)).toFixed(2);
+      // console.log(month,oneDay)
       const currentDay = dayjs().date();
       const currentTotalTip = Number(multiplication(currentDay, oneDay)).toFixed(2);
       return Number(currentTotalTip) > Number(current) ? 'color: red' : '';
     },
     setCellClassName({ column }) {
       const { label } = column;
-      if (label === "当月营收目标") return "bg__yellow"
-      if (label === "当月毛利目标") return "bg__red"
+      // if (label === "营业收入(净)" || label === '当月成本合计') return "pure__cell";
+      if (label === "营收目标") return "bg__success"
+      if (label.indexOf('营业') !== -1 || label.indexOf('营收') !== -1) return "bg__success_1"
+      if (label === "毛利目标") return "bg__primary"
+      if (label.indexOf('毛利') !== -1) return "bg__primary_1"
+      if (label.indexOf('成本') !== -1) return "bg__warning_1"
     },
     setHeaderClassName({ column }) {
       const { label } = column;
-      if (label === "当月营收目标") return "bg__yellow"
-      if (label === "当月毛利目标") return "bg__red"
+      if (label === "营收目标") return "bg__success"
+      if (label.indexOf('营业') !== -1 || label.indexOf('营收') !== -1) return "bg__success_1"
+      if (label === "毛利目标") return "bg__primary"
+      if (label.indexOf('毛利') !== -1) return "bg__primary_1"
+      if (label.indexOf('成本') !== -1) return "bg__warning_1"
     },
     transformTime() {
       let time = new Date();
@@ -217,6 +223,37 @@ export default {
             }
           })
 
+
+          const totalItem = this.tableData.reduce((prev, curr) => {
+            return {
+              pure_sale:addition(prev.pure_sale,curr.pure_sale),
+              pure_purch: addition(prev.pure_purch,curr.pure_purch),
+              pure_profit: addition(prev.pure_profit,curr.pure_profit),
+              completion_rate: addition(prev.completion_rate,curr.completion_rate),
+              pure_interest_rate: addition(prev.pure_interest_rate,curr.pure_interest_rate),
+              month: '合计',
+              cost_tips: addition(prev.cost_tips,curr.cost_tips),
+              total_tips: addition(prev.total_tips,curr.total_tips),
+              cost_rate: addition(prev.cost_rate,curr.cost_rate)
+            }
+          }, {
+            pure_sale:0,
+            pure_purch: 0,
+            pure_profit: 0,
+            completion_rate: 0,
+            pure_interest_rate: 0,
+            month: '合计',
+            cost_tips: 0,
+            total_tips: 0,
+            cost_rate: 0
+          })
+
+          totalItem.completion_rate =  multiplication(division(totalItem.pure_sale, totalItem.total_tips) || 0, 100)
+          totalItem.cost_rate =  Number(totalItem.cost_tips) === 0 ? 0 : multiplication(division(totalItem.pure_profit, totalItem.cost_tips) || 0, 100).toFixed(2)
+          this.tableData = [...this.tableData,totalItem];
+
+          console.log(this.tableData);
+
           // const totalItem = createTotalItem(tableData)
           // totalItem.month = "年度合计"
           // /* 年度指标达成率 = (年度销售净额 / 年度销售指标) **/

+ 113 - 88
src/components/newResults/company.vue

@@ -1,19 +1,17 @@
 <template>
   <div v-loading="loading">
     <div class="search clear" style="align-items: center;;">
-      <div style="float:left">
-        业绩毛利完成情况-年度
+      <div style="float:left;line-height:30px;font-size:14px">
+        月度完成情况
       </div>
 
       <div style="float:right">
-        <el-switch style="margin-right: 10px;" v-model="isTenThound" active-text="万元" inactive-text="元"
-          :disabled="isEmpty" />
-        <el-select size="small" style="margin-right:10px;width:125px" v-model="companyNo" @change="requestData"
+        <el-select size="small" style="margin-right:10px;width:100px" v-model="companyNo" @change="requestData"
           :disabled="isEmpty">
           <el-option v-for="company in cp_companies" :key="company.value" :value="company.value" :label="company.label" />
         </el-select>
 
-        <el-date-picker class="fr picker" v-model="daytime" style=";width:140px" value-format="yyyy-MM-dd"
+        <el-date-picker class="fr picker no-padding" v-model="daytime" style=";width:95px" value-format="yyyy-MM-dd"
           :editable="false" :disabled="isEmpty" :clearable="false" :size="'small'" format="yyyy-MM-dd" type="date"
           align="right" placeholder="选择日期"
           :picker-options="{ disabledDate(time) { return time.getTime() > Date.now(); } }" @change="requestData" />
@@ -23,10 +21,12 @@
     <el-row style="margin-top:10px;margin-top:10px" v-if="!isEmpty">
       <el-table border size="mini" :data="tableData" :header-cell-class-name="setHeaderClassName"
         :cell-class-name="setCellClassName">
-        <el-table-column fixed="left" label="业务公司" prop="companyName" align="center" width="70px">
+        <el-table-column fixed="left" label="公司" prop="companyName" align="center" width="45px">
           <template slot-scope="scope">
-            <div v-if="scope.row.companyName.indexOf('普润') === -1">{{ mapCompany[scope.row.companyName] ||
-              scope.row.companyName }}</div>
+            <div v-if="scope.row.companyName.indexOf('普润') === -1">
+              {{ mapCompany[scope.row.companyName] || scope.row.companyName }}
+            </div>
+
             <div v-else>
               <p style="margin:0px">普润</p>
               <p style="margin:0px">锦兴</p>
@@ -34,84 +34,102 @@
             </div>
           </template>
         </el-table-column>
-        <el-table-column label="当日营业收入" align="center" width="95px">
-          <template slot-scope="scope">
-            {{ unit2TenThousand(scope.row.sale_total, isTenThound) }}
-          </template>
-        </el-table-column>
-        <el-table-column label="当月营收目标" align="center" width="95px">
-          <template slot-scope="scope">
-            {{ unit2TenThousand(scope.row.total_tips, isTenThound) }}
-          </template>
-        </el-table-column>
-
-        <el-table-column label="当月营业收入(净)" align="center" min-width="420px">
-          <template slot-scope="scope">
-            <div style="display:flex;flex-direction: column;">
-              <p :style="`text-align: center;${getCurrentValueStyle(scope.row.msale_total, scope.row.total_tips)}`">
-                {{ unit2TenThousand(scope.row.msale_total, isTenThound) }}
-              </p>
-
-              <div class="table-size">
-                <p>直营/自营: {{ unit2TenThousand(scope.row.info[0][0].monthinfo.msale_total, isTenThound) }}</p>
-                <p>渠道: {{ unit2TenThousand(scope.row.info[0][1].monthinfo.msale_total, isTenThound) }}</p>
-                <p>供应商端: {{ unit2TenThousand(scope.row.info[0][2].monthinfo.msale_total, isTenThound) }}</p>
-              </div>
-            </div>
-          </template>
-        </el-table-column>
-
-        <el-table-column label="当月营收完成%" align="center" min-width="105px">
-          <template slot-scope="scope">
-            <div :style="`${getCurrentRateStyle(scope.row.completion_rate)}`">{{ scope.row.completion_rate + "%" }}</div>
-          </template>
-        </el-table-column>
-
-
-        <template v-if="costField">
-          <el-table-column label="当月毛利目标" align="center" width="95px">
+        <el-table-column label="当日" align="center" width="115px">
+          <el-table-column label="营业收入" align="center" width="115px">
             <template slot-scope="scope">
-              {{ unit2TenThousand(scope.row.cost_tips, isTenThound) }}
+              {{ unit2TenThousand(scope.row.sale_total, isTenThound) }}
             </template>
           </el-table-column>
+        </el-table-column>
 
-          <el-table-column label="当月毛利完成" align="center" width="95px">
+        <el-table-column label="当月" align="center">
+          <el-table-column label="营收目标" align="center" min-width="95px">
             <template slot-scope="scope">
-              <div :style="`${getCurrentValueStyle(scope.row.gross_completion, scope.row.cost_tips)}`">
-                {{ unit2TenThousand(scope.row.gross_completion, isTenThound) }}
-              </div>
+              {{ unit2TenThousand(scope.row.total_tips, isTenThound) }}
             </template>
           </el-table-column>
 
-          <el-table-column label="当月实际毛利率" align="center" width="105px">
+          <el-table-column label="营业收入(净)" align="center" min-width="115px">
             <template slot-scope="scope">
-              <!-- <div :style="`${getCurrentRateStyle(scope.row.gross_sale_completion_rate)}`"> -->
-              {{ unit2TenThousand(scope.row.gross_sale_completion_rate) + "%" }}
-              <!-- </div> -->
+              <div style="display:flex;flex-direction: column;">
+                <el-popover placement="top" :width="200" trigger="hover">
+                  <div class="table-size">
+                    <p>直营/自营: {{ unit2TenThousand(scope.row.info[0][0].monthinfo.msale_total, isTenThound) }}</p>
+                    <p>支付渠道: {{ unit2TenThousand(scope.row.info[0][1].monthinfo.msale_total, isTenThound) }}</p>
+                    <p>供应商端: {{ unit2TenThousand(scope.row.info[0][2].monthinfo.msale_total, isTenThound) }}</p>
+                  </div>
+
+                  <template #reference>
+                    <div :style="`${getCurrentValueStyle(scope.row.msale_total, scope.row.total_tips)}`">
+                      <i class="el-icon-warning-outline" style="font-size:16px;cursor:pointer"></i>
+                       {{ unit2TenThousand(scope.row.msale_total, isTenThound) }}
+                    </div>
+                  </template>
+                </el-popover>
+              </div>
             </template>
           </el-table-column>
 
-          <el-table-column label="当月毛利完成%" align="center" min-width="105px">
+          <el-table-column label="营收完成%" align="center" min-width="85px">
             <template slot-scope="scope">
-              <div :style="getCurrentRateStyle(scope.row.gross_completion_rate)">
-                {{ scope.row.gross_completion_rate + '%' }}
+              <div :style="`${getCurrentRateStyle(scope.row.completion_rate)}`">{{ scope.row.completion_rate + "%" }}
               </div>
             </template>
           </el-table-column>
 
-          <el-table-column label="当月成本合计" align="center" width="425px">
-            <template slot-scope="scope">
-              <div style="display:flex;flex-direction: column;">
-                <p style="text-align: center;"> {{ unit2TenThousand(scope.row.mcost_total, isTenThound) }}</p>
-                <div class="table-size">
-                  <p>直营/自营: {{ unit2TenThousand(scope.row.info[0][0].monthinfo.mcost_total, isTenThound) }}</p>
-                  <p>渠道: {{ unit2TenThousand(scope.row.info[0][1].monthinfo.mcost_total, isTenThound) }}</p>
-                  <p>供应商端: {{ unit2TenThousand(scope.row.info[0][2].monthinfo.mcost_total, isTenThound) }}</p>
+
+          <template v-if="costField">
+            <el-table-column label="毛利目标" align="center" min-width="90px">
+              <template slot-scope="scope">
+                {{ unit2TenThousand(scope.row.cost_tips, isTenThound) }}
+              </template>
+            </el-table-column>
+
+            <el-table-column label="毛利完成" align="center" min-width="90px">
+              <template slot-scope="scope">
+                <div :style="`${getCurrentValueStyle(scope.row.gross_completion, scope.row.cost_tips)}`">
+                  {{ unit2TenThousand(scope.row.gross_completion, isTenThound) }}
                 </div>
-              </div>
-            </template>
-          </el-table-column>
-        </template>
+              </template>
+            </el-table-column>
+
+
+            <el-table-column label="毛利完成%" align="center" min-width="85px">
+              <template slot-scope="scope">
+                <div :style="getCurrentRateStyle(scope.row.gross_completion_rate)">
+                  {{ scope.row.gross_completion_rate + '%' }}
+                </div>
+              </template>
+            </el-table-column>
+
+            <el-table-column label="成本合计" align="center" min-width="125px">
+              <template slot-scope="scope">
+                <div style="display:flex;flex-direction: column;">
+                  <el-popover placement="top" :width="200" trigger="hover">
+                    <div class="table-size">
+                      <p>直营/自营: {{ unit2TenThousand(scope.row.info[0][0].monthinfo.mcost_total, isTenThound) }}</p>
+                      <p>支付渠道: {{ unit2TenThousand(scope.row.info[0][1].monthinfo.mcost_total, isTenThound) }}</p>
+                      <p>供应商端: {{ unit2TenThousand(scope.row.info[0][2].monthinfo.mcost_total, isTenThound) }}</p>
+                    </div>
+
+                    <template #reference>
+                      <i class="el-icon-warning-outline" style="font-size:16px;cursor:pointer"></i>
+                      {{ unit2TenThousand(scope.row.mcost_total, isTenThound) }}
+                    </template>
+                  </el-popover>
+                </div>
+              </template>
+            </el-table-column>
+
+            <el-table-column label="实际毛利率" align="center" width="85px">
+              <template slot-scope="scope">
+                <!-- <div :style="`${getCurrentRateStyle(scope.row.gross_sale_completion_rate)}`"> -->
+                {{ unit2TenThousand(scope.row.gross_sale_completion_rate) + "%" }}
+                <!-- </div> -->
+              </template>
+            </el-table-column>
+          </template>
+        </el-table-column>
       </el-table>
     </el-row>
 
@@ -129,10 +147,9 @@ import { mapCompany } from "./mapCompany";
 import dayjs from "dayjs"
 
 export default {
-  props: ['companies', 'costField'],
+  props: ['companies', 'costField', 'isTenThound'],
   data() {
     return {
-      isTenThound: true,
       daytime: "",
       loading: false,
       tableData: [],
@@ -204,14 +221,20 @@ export default {
     },
     setCellClassName({ column }) {
       const { label } = column;
-      if (label === "当月营业收入(净)" || label === '当月成本合计') return "pure__cell";
-      if (label === "当月营收目标") return "bg__yellow"
-      if (label === "当月毛利目标") return "bg__red"
+      // if (label === "营业收入(净)" || label === '当月成本合计') return "pure__cell";
+      if (label === "营收目标") return "bg__success"
+      if (label.indexOf('营业') !== -1 || label.indexOf('营收') !== -1) return "bg__success_1"
+      if (label === "毛利目标") return "bg__primary"
+      if (label.indexOf('毛利') !== -1) return "bg__primary_1"
+      if (label.indexOf('成本') !== -1) return "bg__warning_1"
     },
     setHeaderClassName({ column }) {
       const { label } = column;
-      if (label === "当月营收目标") return "bg__yellow"
-      if (label === "当月毛利目标") return "bg__red"
+      if (label === "营收目标") return "bg__success"
+      if (label.indexOf('营业') !== -1 || label.indexOf('营收') !== -1) return "bg__success_1"
+      if (label === "毛利目标") return "bg__primary"
+      if (label.indexOf('毛利') !== -1) return "bg__primary_1"
+      if (label.indexOf('成本') !== -1) return "bg__warning_1"
     },
     transformTime() {
       let time = new Date();
@@ -343,22 +366,24 @@ export default {
     height: 36px;
     padding: 0px 10px;
     margin-top: 10px;
-    flex-wrap:wrap;
+    flex-wrap: wrap;
   }
+}
 
-  .table-size {
-    display: flex;
-    border-top: 1px solid #ebeef5;
+.table-size {
+  display: flex;
+  width: 200px;
+  border: 1px solid #ebeef5;
+  flex-direction: column;
 
-    p {
-      flex: 1;
-      border-right: 1px solid #ebeef5;
-      padding: 5px 10px;
-      margin: 0px;
+  p {
+    flex: 1;
+    border-bottom: 1px solid #ebeef5;
+    padding: 5px 10px;
+    margin: 0px;
 
-      &:last-child {
-        border: none;
-      }
+    &:last-child {
+      border: none;
     }
   }
 }

+ 112 - 115
src/components/newResults/department.vue

@@ -1,39 +1,23 @@
 <template>
   <div v-loading="loading">
     <div class="search clear">
-      <div style="float:left">部门业绩毛利完成情况</div>
+      <div style="float:left;line-height:30px">部门完成情况</div>
 
       <div style="float:right">
-        <el-switch 
-            :disabled="isEmpty" 
-            :inline-prompt="true" 
-            style="margin-right: 10px;" 
-            v-model="isTenThound" 
-            active-text="万元"
-            inactive-text="元" 
-          />
-
-        <el-select size="small" style="margin-right:10px;width:80px" v-model="companyNo" @change="requestData"
-           :disabled="isEmpty">
-           <el-option v-for="depart in companies" :key="depart.value" :label="depart.label" :value="depart.value" />
+        <el-select size="small" style="margin-right:10px;width:135px" v-model="companyNo" @change="requestData"
+          :disabled="isEmpty">
+          <el-option v-for="depart in cp_companies" :key="depart.value" :label="depart.label" :value="depart.value" />
         </el-select>
 
-        <el-date-picker 
-          :disabled="isEmpty" 
-          class="fr picker" 
-          v-model="daytime"
-          :picker-options="{ disbaledData(time) { return time.getTime() > Date.now(); } }" 
-          style=";width:140px" value-format="yyyy-MM-dd" format="yyyy-MM-dd" :editable="false" :clearable="false"
-          placeholder="选择日期"
-          :size="'small'" 
-          align="right" 
-          type="date"
-         />
+        <el-date-picker :disabled="isEmpty" class="fr picker no-padding" v-model="daytime"
+          :picker-options="{ disbaledData(time) { return time.getTime() > Date.now(); } }" style=";width:100px"
+          value-format="yyyy-MM-dd" format="yyyy-MM-dd" :editable="false" :clearable="false" placeholder="选择日期"
+          :size="'small'" align="right" type="date" />
       </div>
     </div>
 
     <el-row style="margin-top: 10px; display: flex;width:100%;margin-top:10px" v-if="!isEmpty">
-      <el-table border size="mini" :data="list" :header-cell-class-name="setHeaderClassName"
+      <el-table border size="mini" :data="list" :header-cell-class-name="setHeaderClassName" height="315px"
         :cell-class-name="setCellClassName">
         <!-- <el-table-column fixed="left" label="公司" prop="company" align="center" width="45px" /> -->
         <el-table-column fixed="left" label="部门" prop="depart" align="center" width="60px">
@@ -43,70 +27,80 @@
             </p>
           </template>
         </el-table-column>
-        <el-table-column label="当日营业收入" align="center" width="120px">
-          <template slot-scope="scope">{{ unit2TenThousand(scope.row.dayinfo.sale_total, isTenThound) }}</template>
-        </el-table-column>
-
-        <el-table-column label="当月营收目标" align="center" width="120px">
-          <template slot-scope="scope">{{ unit2TenThousand(scope.row.total_tips, isTenThound) }}</template>
+        <el-table-column label="当日" align="center" min-width="120px">
+          <el-table-column label="营业收入" align="center">
+            <template slot-scope="scope">{{ unit2TenThousand(scope.row.dayinfo.sale_total, isTenThound) }}</template>
+          </el-table-column>
         </el-table-column>
 
-        <el-table-column label="当月营业收入(净)" align="center" min-width="400px">
-          <template slot-scope="scope">
-            <div style="display:flex;flex-direction: column;">
-              <p
-                :style="`text-align: center;${getCurrentValueStyle(scope.row.monthinfo.monthNetSales, scope.row.total_tips)}`">
-                {{ unit2TenThousand(scope.row.monthinfo.monthNetSales, isTenThound) }}
-              </p>
+        <el-table-column label="当月" align="center">
+          <el-table-column label="当月营收目标" align="center" min-width="115px">
+            <template slot-scope="scope">{{ unit2TenThousand(scope.row.total_tips, isTenThound) }}</template>
+          </el-table-column>
 
-              <div class="table-size">
-                <p>直营/自营: {{ unit2TenThousand(scope.row.currentMonthPure[0].zy, isTenThound) }}</p>
-                <p>渠道: {{ unit2TenThousand(scope.row.currentMonthPure[0].qd, isTenThound) }}</p>
+          <el-table-column label="营业收入(净)" align="center" min-width="120px">
+            <template slot-scope="scope">
+              <div style="display:flex;flex-direction: column;">
+                <div style="display:flex;flex-direction: column;">
+                  <el-popover placement="top" :width="200" trigger="hover">
+                    <div class="table-size">
+                      <p>直营/自营: {{ unit2TenThousand(scope.row.currentMonthPure[0].zy, isTenThound) }}</p>
+                      <p>支付渠道: {{ unit2TenThousand(scope.row.currentMonthPure[0].qd, isTenThound) }}</p>
+                    </div>
+                    <template #reference>
+
+                      <p
+                        :style="`text-align: center;${getCurrentValueStyle(scope.row.monthinfo.monthNetSales, scope.row.total_tips)}`">
+                        <i class="el-icon-warning-outline" style="font-size:16px;cursor:pointer"></i>
+                        {{ unit2TenThousand(scope.row.monthinfo.monthNetSales, isTenThound) }}
+                      </p>
+                    </template>
+                  </el-popover>
+                </div>
               </div>
-            </div>
-          </template>
-        </el-table-column>
-
-        <el-table-column label="成本" align="center" min-width="400px" v-if="costField">
-
-          <!-- <el-table-column align="center" label="直营/自营">
-            <template slot-scope="scope">{{unit2TenThousand(scope.row.zy_cost,isTenThound)}}</template>
+            </template>
           </el-table-column>
 
-          <el-table-column align="center" label="渠道">
-            <template slot-scope="scope">{{unit2TenThousand(scope.row.qd_cost,isTenThound)}}</template>
-          </el-table-column> -->
-
-          <template slot-scope="scope">
-            <div style="display:flex;flex-direction: column;">
-              <p style="text-align: center;">{{
-                unit2TenThousand(Number(addition(scope.row.zy_cost, scope.row.qd_cost)).toFixed(2), isTenThound) }}</p>
-              <div class="table-size">
-                <p>直营/自营: {{ unit2TenThousand(scope.row.zy_cost, isTenThound) }}</p>
-                <p>渠道: {{ unit2TenThousand(scope.row.qd_cost, isTenThound) }}</p>
+          <el-table-column label="成本" align="center" min-width="120px" v-if="costField">
+            <template slot-scope="scope">
+              <div style="display:flex;flex-direction: column;">
+                <el-popover placement="top" :width="200" trigger="hover">
+                  <div class="table-size">
+                    <p>直营/自营: {{ unit2TenThousand(scope.row.zy_cost, isTenThound) }}</p>
+                    <p>渠道: {{ unit2TenThousand(scope.row.qd_cost, isTenThound) }}</p>
+                  </div>
+                  <template #reference>
+                    <p style="text-align: center;">
+                      <i class="el-icon-warning-outline" style="font-size:16px;cursor:pointer"></i>
+                      {{
+                unit2TenThousand(Number(addition(scope.row.zy_cost, scope.row.qd_cost)).toFixed(2), isTenThound) }}
+                    </p>
+                  </template>
+                </el-popover>
               </div>
-            </div>
-          </template>
-        </el-table-column>
-
-        <el-table-column align="center" label="毛利" min-width="400px">
-          <!-- <el-table-column align="center" label="直营/自营">
-            <template slot-scope="scope">{{unit2TenThousand(scope.row.zy_gross,isTenThound)}}</template>
+            </template>
           </el-table-column>
 
-          <el-table-column align="center" label="渠道">
-            <template slot-scope="scope">{{unit2TenThousand(scope.row.qd_gross,isTenThound)}}</template>
-          </el-table-column> -->
-          <template slot-scope="scope">
-            <div style="display:flex;flex-direction: column;">
-              <p style="text-align: center;">{{
-                unit2TenThousand(Number(addition(scope.row.zy_gross, scope.row.qd_gross)).toFixed(2), isTenThound) }}</p>
-              <div class="table-size">
-                <p>直营/自营: {{ unit2TenThousand(scope.row.zy_gross, isTenThound) }}</p>
-                <p>渠道: {{ unit2TenThousand(scope.row.qd_gross, isTenThound) }}</p>
+          <el-table-column align="center" label="毛利" min-width="120px">
+            <template slot-scope="scope">
+              <div style="display:flex;flex-direction: column;">
+                <el-popover placement="top" :width="200" trigger="hover">
+                  <div class="table-size">
+                    <p>直营/自营: {{ unit2TenThousand(scope.row.zy_gross, isTenThound) }}</p>
+                    <p>支付渠道: {{ unit2TenThousand(scope.row.qd_gross, isTenThound) }}</p>
+                  </div>
+                  <template #reference>
+                    <p style="text-align: center;">
+                      <i class="el-icon-warning-outline" style="font-size:16px;cursor:pointer"></i>
+                      {{
+                        unit2TenThousand(Number(addition(scope.row.zy_gross, scope.row.qd_gross)).toFixed(2), isTenThound)
+                      }}
+                    </p>
+                  </template>
+                </el-popover>
               </div>
-            </div>
-          </template>
+            </template>
+          </el-table-column>
         </el-table-column>
       </el-table>
     </el-row>
@@ -134,15 +128,15 @@ import {
 
 export default {
   mixins: [setHeight],
-  props: ['companies', 'costField'],
+  props: ['companies', 'costField', 'isTenThound'],
   data() {
     return {
       list: [],
       daytime: "",
       companyNo: "",
       loading: false,
-      isTenThound: true,
-      isEmpty: false
+      isEmpty: false,
+      cp_companies:[]
     }
   },
   computed: {
@@ -154,10 +148,10 @@ export default {
     this.isEmpty = this.companies.length === 0;
     if (this.isEmpty) return;
     this.companyNo = this.companies[0].value;
-    this.companies = this.companies.map(item => ({
-       ...item, 
-       label: mapCompany[item.label] || item.label
-      }))
+    this.cp_companies = this.companies.map(item => ({
+      ...item,
+      label: mapCompany[item.label] === '万宇' ? `平台公司: 万宇` : `业务公司: ${mapCompany[item.label]}`
+    }))
     this.daytime = this.transformTime();
     this.requestData();
   },
@@ -167,14 +161,20 @@ export default {
     unit2TenThousand,
     setCellClassName({ column }) {
       const { label } = column;
-      if (label === "当月营业收入(净)" || label === '当月成本合计') return "pure__cell";
-      if (label === "当月营收目标") return "bg__yellow"
-      if (label === "当月毛利目标") return "bg__red"
+      // if (label === "营业收入(净)" || label === '当月成本合计') return "pure__cell";
+      if (label === "营收目标") return "bg__success"
+      if (label.indexOf('营业') !== -1 || label.indexOf('营收') !== -1) return "bg__success_1"
+      if (label === "毛利目标") return "bg__primary"
+      if (label.indexOf('毛利') !== -1) return "bg__primary_1"
+      if (label.indexOf('成本') !== -1) return "bg__warning_1"
     },
     setHeaderClassName({ column }) {
       const { label } = column;
-      if (label === "当月营收目标") return "bg__yellow"
-      if (label === "当月毛利目标") return "bg__red"
+      if (label === "营收目标") return "bg__success"
+      if (label.indexOf('营业') !== -1 || label.indexOf('营收') !== -1) return "bg__success_1"
+      if (label === "毛利目标") return "bg__primary"
+      if (label.indexOf('毛利') !== -1) return "bg__primary_1"
+      if (label.indexOf('成本') !== -1) return "bg__warning_1"
     },
     getCurrentRateStyle(current) {
       const days = dayjs().daysInMonth();
@@ -232,21 +232,17 @@ export default {
       this.list = [];
       const res = await asyncRequest.departmentEveryDay({ daytime: this.daytime, companyNo: this.companyNo });
 
-
-
       if (res.code === 0 && res.data && res.data.length > 0) {
         // 非万宇 营业目标重取
-        if(this.companyNo !== "GS2203161855277894") {
+        if (this.companyNo !== "GS2203161855277894") {
           const r = await asyncRequest.companyEveryMonth({ daytime: this.daytime, companyNo: this.companyNo });
           const { total_tips, companyName } = r.data[0] || {};
           res.data.forEach(item => {
             const index = companyName.indexOf(item.depart);
-            item.total_tips = (index === -1 && !(item.depart === "普润" && this.companyNo === "GS2304031312553746"))  ? '0.00' : total_tips;
+            item.total_tips = (index === -1 && !(item.depart === "普润" && this.companyNo === "GS2304031312553746")) ? '0.00' : total_tips;
           })
         }
 
-
-
         let list = (res.data || [])
           .map(({ depart, msale_total, mth_total, sale_total, th_total, total_tips, mzy_sale_total, mchannel_sale_total, channel_cost_total, zy_cost_total, mzy_cost_total, mchannel_cost_total }) => {
             return {
@@ -255,17 +251,17 @@ export default {
             }
           });
 
-          list = list.filter(item => Number(item.monthinfo.msale_total) !== 0)
+        list = list.filter(item => Number(item.monthinfo.msale_total) !== 0)
 
-          this.total = list.reduce((prev, current) => {
+        this.total = list.reduce((prev, current) => {
           const { total_tips = 0, day = 0, month = 0 } = current;
           return { total_tips: addition(total_tips, prev.total_tips), month: addition(month, prev.month), day: addition(day, prev.day) }
         },
           { total_tips: 0, month: 0, day: 0 }
         )
 
-        let mapDepart = list.map(({depart}) => depart);
-        
+        let mapDepart = list.map(({ depart }) => depart);
+
         list = mapDepart.map(d => list.find(({ depart }) => depart === d))
 
         const mapToDepartment = { 百辰: "客服部@百辰", 泓源: "网络部@泓源", 普润: "	项目部@普润", 平台: "	平台部@万宇" }
@@ -308,25 +304,26 @@ export default {
     height: 36px;
     padding: 0px 10px;
     margin-top: 10px;
-    width:100%;
+    width: 100%;
     box-sizing: border-box;
-    justify-content:space-between;
+    justify-content: space-between;
   }
+}
 
+.table-size {
+  display: flex;
+  width: 200px;
+  border: 1px solid #ebeef5;
+  flex-direction: column;
 
-  .table-size {
-    display: flex;
-    border-top: 1px solid #ebeef5;
-
-    p {
-      flex: 1;
-      border-right: 1px solid #ebeef5;
-      padding: 5px 10px;
-      margin: 0px;
+  p {
+    flex: 1;
+    border-bottom: 1px solid #ebeef5;
+    padding: 5px 10px;
+    margin: 0px;
 
-      &:last-child {
-        border: none;
-      }
+    &:last-child {
+      border: none;
     }
   }
 }

+ 77 - 48
src/pages/newResults.vue

@@ -1,12 +1,34 @@
 <template>
   <div class="new-results" v-loading="state.loading" style="min-height:300px">
     <div v-if="!state.error && isShow">
-      <div style="color:red;font-weight: 700;padding-left:10px">
-        <i class="el-icon-warning-outline"></i> 以下报表一小时更新一次
+      <div
+        style="
+        color:red;
+        display:flex;
+        align-items:center;
+        justify-content:space-between;
+        width:100%;
+        padding:5px 10px;
+        box-sizing:border-box;
+        "
+        >
+
+        <el-popover placement="top-start":width="200" trigger="hover"
+          content=" 以下报表一小时更新一次">
+          <template #reference>
+            <i class="el-icon-warning-outline" style="font-size:22px;cursor:pointer"></i>
+          </template>
+        </el-popover>
+
+        <el-switch v-model="isTenThound" active-text="万元" inactive-text="元" />
+      </div>
+
+
+      <div class="container">
+        <result-company :companies="companies" :isTenThound="isTenThound" :costField="costField" />
+        <result-company-month :companies="companies" :isTenThound="isTenThound" :costField="costField" />
+        <result-department :companies="companies" :isTenThound="isTenThound" :costField="costField" />
       </div>
-      <result-company :companies="companies" :costField="costField" />
-      <result-company-month :companies="companies" :costField="costField" />
-      <result-department :companies="companies" :costField="costField" />
     </div>
 
     <template v-else-if="!state.loading">
@@ -35,18 +57,19 @@ export default {
   },
   data() {
     return {
-      companies:[],
+      companies: [],
       costField: false,
       zxTotal: 0,
       daytime: "",
       isDisplay: false,
-      state:{ message: '', error: false, loading: false }
+      isTenThound: true,
+      state: { message: '', error: false, loading: false }
     };
   },
-  mounted() {    
-    if(!getParameterByName('code')){ 
-      this.login() 
-    }else{
+  mounted() {
+    if (!getParameterByName('code')) {
+      this.login()
+    } else {
       this.requestUserinfo()
     }
   },
@@ -63,35 +86,35 @@ export default {
         return;
       }
 
-      if(this.start && this.end){
+      if (this.start && this.end) {
         this.date = [this.start + " 00:00:00", this.end + " 23:59:59"]
-      }else{
+      } else {
         this.date = [this.start, this.end]
       }
     },
-    async requestUserinfo(){
-       this.state.loading = true
-       const openid = getOpenid()
-       const code = getParameterByName('code')
-       const result = await userRequest.userinfo({  ...( openid ? { openid } :  { code }) })
+    async requestUserinfo() {
+      this.state.loading = true
+      const openid = getOpenid()
+      const code = getParameterByName('code')
+      const result = await userRequest.userinfo({ ...(openid ? { openid } : { code }) })
 
       //   const result = {
       //    "code": 0,
       //    "message": "获取成功",
       //    "data": {
-		  //      "openid": "oOpc26KiZFBKIm7SB8knFGvov1qg",
-		  //      "subscribe_time": "2022-12-21 15:52:14",
-		  //      "updatetime": "2023-05-09 16:22:33",
+      //      "openid": "oOpc26KiZFBKIm7SB8knFGvov1qg",
+      //      "subscribe_time": "2022-12-21 15:52:14",
+      //      "updatetime": "2023-05-09 16:22:33",
       //      "addtime": "2023-04-10 18:11:17",
-		  //      "is_show": ["1", "2", "4", "6", "cost_field"],
+      //      "is_show": ["1", "2", "4", "6", "cost_field"],
       //      "nickname": "雪寒",
-		  //      "addr": "\/\/",
-		  //      "gender": "0",
+      //      "addr": "\/\/",
+      //      "gender": "0",
       //      "mobile": "",
-		  //      "avatar": "",
-		  //      "status": "1",
-		  //      "id": "1",
-		  //      "companyArr": [
+      //      "avatar": "",
+      //      "status": "1",
+      //      "id": "1",
+      //      "companyArr": [
       //        {"companyNo": "GS2302231125079621", "companyName": "北京百辰荣达国际科贸有限公司", "info": [1, 2, 6]}, 
       //        {"companyNo": "GS2302231323386950","companyName": "北京泓源广诚国际商贸有限公司", "info": [1, 2, 6]}, 
       //        {"companyNo": "GS2203161855277894","companyName": "北京万宇恒通国际科贸有限公司", "info": [1, 2, 6]},
@@ -101,28 +124,28 @@ export default {
       //  	}
       //  }
 
-      this.companies = result.data.companyArr.reduce((prev,current) => {
-        return current.info.includes(6) || current.info.includes('6') ? [...prev,{
-          value:current.companyNo,
-          label:current.companyName
+      this.companies = result.data.companyArr.reduce((prev, current) => {
+        return current.info.includes(6) || current.info.includes('6') ? [...prev, {
+          value: current.companyNo,
+          label: current.companyName
         }] : prev
-      },[])
+      }, [])
 
-        this.state.loading = false
-        switch(Number(result.code)){
-          case 0:
-           this.isShow =  (result.data.is_show || []).includes(6) || (result.data.is_show || []).includes('6')
-           this.costField = (result.data.is_show || []).includes('cost_field')
-           setOpenid(result.data.openid)
-           break
-          default:
-           this.state.error = true;
-           this.state.message = result.message;
-           openid && removeOpenid();
-           break;
-        }
-      },
-    login(){
+      this.state.loading = false
+      switch (Number(result.code)) {
+        case 0:
+          this.isShow = (result.data.is_show || []).includes(6) || (result.data.is_show || []).includes('6')
+          this.costField = (result.data.is_show || []).includes('cost_field')
+          setOpenid(result.data.openid)
+          break
+        default:
+          this.state.error = true;
+          this.state.message = result.message;
+          openid && removeOpenid();
+          break;
+      }
+    },
+    login() {
       const redirect_url = encodeURIComponent('http://stat.caixiao365.com/accountsReceivable')
       var state = 'wx_' + Math.random().toString(36).substr(2, 15)
       const scope = 'snsapi_userinfo'
@@ -141,5 +164,11 @@ export default {
   height: 100vh;
   position: fixed;
   overflow: auto;
+
+  .container {
+    height:calc(100vh - 40px);
+    overflow:auto;
+    background:white;
+  }
 }
 </style>

+ 8 - 2
src/pages/results.vue

@@ -1,9 +1,14 @@
 <template>
   <div id="app" v-cloak v-loading="state.loading" style="min-height: 300px;">
     <template v-if="!state.error && isShow">
-      <div style="color:red;position:absolute;top:30px;left:10px;font-weight: 700;">
-        <i class="el-icon-warning-outline"></i> 以下报表一小时更新一次
+      <div style="color:red;position:absolute;top:30px;left:10px;font-weight: 700;display:flex">
+        <div>
+          <i class="el-icon-warning-outline"></i> 以下报表一小时更新一次
+        </div>
+
       </div>
+
+      
       <control-display :companyArr="companyArr" :hasPlatformDimension="hasPlatformDimension"  />
     </template>
     <template v-else-if="!state.loading">
@@ -42,6 +47,7 @@ export default {
       const openid = getOpenid()
       const code = getParameterByName('code')
       const result = await asyncRequest.userinfo({ ...( openid ? { openid } :  { code }) })
+      
       // const result ={
       // "code": 0,
       // "message": "获取成功",

+ 25 - 3
src/styles/index.scss

@@ -17,12 +17,34 @@
   }
 }
 
+.bg__success {
+  background-color: #e1f3d8 !important;
+}
+
+.bg__success_1 {
+  background-color: #f0f9eb !important;
+}
+
+.bg__primary {
+  background-color: #d9ecff !important;
+}
 
-.bg__red {
-  background-color: #fef0f0 !important;
+.bg__primary_1 {
+  background-color: #ecf5ff !important;
 }
 
+.bg__warning {
+  background-color: #faecd8 !important;
+}
 
-.bg__yellow {
+.bg__warning_1 {
   background-color: #fdf6ec !important;
 }
+
+
+.no-padding{
+  .el-input__inner {
+    padding-right: 0px !important;
+    padding-left: 25px !important;
+  }
+}

Daži faili netika attēloti, jo izmaiņu fails ir pārāk liels