|
@@ -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 = [];
|
|
|
}
|