snow 1 gadu atpakaļ
vecāks
revīzija
7bf390bddb

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.45970996.css


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


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


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


BIN
dist/static/js/app.53de7e08.js.gz


+ 12 - 10
src/components/newResults/company-month.vue

@@ -105,19 +105,15 @@ export default {
     this.isEmpty = this.cp_companies.length === 0;
     if (this.isEmpty) return;
 
-    let allIndex = -1;
-    let wanYuIndex = -1;
     this.cp_companies = this.cp_companies.map((item,index) => {
       let label = '';
       
       if (item.label === '所有公司') {
-        allIndex = index;
         label = '所有公司'
       }
 
 
       if (item.label === '北京万宇恒通国际科贸有限公司') {
-        wanYuIndex = index;
         label = '平台公司: 万宇'
       }
 
@@ -128,14 +124,20 @@ export default {
     })
 
 
-    if(allIndex !== -1) {
-      this.companyNo = this.cp_companies[allIndex].value;
-    } else if(wanYuIndex !== -1){
-      this.companyNo = this.cp_companies[wanYuIndex].value;
-    }else {
-      this.companyNo = this.cp_companies[0].value;
+    const wanyuIndex = this.cp_companies.findIndex((item) => item.label === '平台公司: 万宇');
+    if(wanyuIndex !== -1){
+      const item = this.cp_companies.splice(wanyuIndex,1);
+      this.cp_companies.unshift(...item);
     }
 
+    const allIndex = this.cp_companies.findIndex((item) => item.label === '所有公司');
+    if(allIndex !== -1){
+      const item = this.cp_companies.splice(allIndex,1);
+      this.cp_companies.unshift(...item);
+    }
+
+
+    this.companyNo = this.cp_companies[0].value;
     this.daytime = this.transformTime();
     this.requestData();
   },

+ 10 - 10
src/components/newResults/company.vue

@@ -171,19 +171,15 @@ export default {
     this.isEmpty = this.cp_companies.length === 0;
     if (this.isEmpty) return;
 
-    let allIndex = -1;
-    let wanYuIndex = -1;
     this.cp_companies = this.cp_companies.map((item, index) => {
       let label = '';
 
       if (item.label === '所有公司') {
-        allIndex = index;
         label = '所有公司'
       }
 
 
       if (item.label === '北京万宇恒通国际科贸有限公司') {
-        wanYuIndex = index;
         label = '平台公司: 万宇'
       }
 
@@ -193,15 +189,19 @@ export default {
       return ({ ...item, label })
     })
 
+    const wanyuIndex = this.cp_companies.findIndex((item) => item.label === '平台公司: 万宇');
+    if(wanyuIndex !== -1){
+      const item = this.cp_companies.splice(wanyuIndex,1);
+      this.cp_companies.unshift(...item);
+    }
 
-    if (allIndex !== -1) {
-      this.companyNo = this.cp_companies[allIndex].value;
-    } else if (wanYuIndex !== -1) {
-      this.companyNo = this.cp_companies[wanYuIndex].value;
-    } else {
-      this.companyNo = this.cp_companies[0].value;
+    const allIndex = this.cp_companies.findIndex((item) => item.label === '所有公司');
+    if(allIndex !== -1){
+      const item = this.cp_companies.splice(allIndex,1);
+      this.cp_companies.unshift(...item);
     }
 
+    this.companyNo = this.cp_companies[0].value;
     this.daytime = this.transformTime();
     this.requestData();
   },

+ 50 - 12
src/components/newResults/department.vue

@@ -156,13 +156,14 @@ export default {
     }))
 
 
-    const wuYuIndex = this.cp_companies.findIndex(item => item.label === '平台公司: 万宇')
-    if (wuYuIndex !== -1) {
-      this.companyNo = this.companies[wuYuIndex].value;
-    } else {
-      this.companyNo = this.companies[0].value;
+    const wanyuIndex = this.cp_companies.findIndex((item) => item.label === '平台公司: 万宇');
+
+    if(wanyuIndex !== -1){
+      const item = this.cp_companies.splice(wanyuIndex,1);
+      this.cp_companies.unshift(...item);
     }
 
+    this.companyNo = this.cp_companies[0].value;
     this.daytime = this.transformTime();
     this.requestData();
   },
@@ -170,14 +171,42 @@ export default {
   methods: {
     addition,
     unit2TenThousand,
-    setCellClassName({ column }) {
+    setCellClassName({ column ,row }) {
       const { label } = column;
-      // if (label === "营业收入(净)" || label === '当月成本合计') return "pure__cell";
-      if (label === "当月营收目标") return "bg__success"
-      if ((label.indexOf('营业') !== -1 || label.indexOf('营收') !== -1) && label !== '当日营业收入') 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"
+
+      let base = ''
+
+      if(row.depart.indexOf('万宇') !== -1) {
+        base += 'font-bold '
+      }
+
+
+      if (label === "当月营收目标")  {
+        base += "bg__success"
+        return base
+      }
+
+      if ((label.indexOf('营业') !== -1 || label.indexOf('营收') !== -1) && label !== '当日营业收入') {
+        base += "bg__success_1"
+        return base;
+      }
+
+
+      if (label === "毛利目标") {
+        base += "bg__primary"
+        return base
+      }
+
+      if (label.indexOf('毛利') !== -1) {
+        base += "bg__primary_1"
+        return base;
+      }
+      if (label.indexOf('成本') !== -1) {
+        base += "bg__warning_1"
+        return base;
+      }
+
+      return base
     },
     setHeaderClassName({ column }) {
       const { label } = column;
@@ -298,6 +327,15 @@ export default {
             monthinfo: { monthNetSales, monthProportion: monthProportion }
           }
         })
+
+
+        const wanyuIndex = this.list.findIndex(item => item.depart.indexOf('万宇') !== -1);
+
+        if(wanyuIndex !== -1){
+          const item = this.list.splice(wanyuIndex,1);
+          this.list.unshift(item[0]);
+        }
+
       } else {
         this.list = [];
       }

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