|
@@ -298,34 +298,29 @@ export default {
|
|
|
|
|
|
const res = await asyncRequest.companyEveryMonth({ daytime: this.daytime, companyNo: this.companyNo });
|
|
|
|
|
|
- const jxIndex = res.data.findIndex((item) => item.companyName === "北京锦兴弘昌科技有限公司");
|
|
|
- let prIndex = res.data.findIndex((item) => item.companyName === "北京普润心堂商贸有限公司");
|
|
|
- let zsIndex = res.data.findIndex((item) => item.companyName === "北京知事文化产业发展有限公司")
|
|
|
-
|
|
|
- if (jxIndex >= 0 && prIndex >= 0) {
|
|
|
- const jxItem = res.data[jxIndex];
|
|
|
- res.data[prIndex] = this.addDataToCompany(jxItem, res.data[prIndex]);
|
|
|
- res.data.splice(jxIndex, 1);
|
|
|
- }
|
|
|
-
|
|
|
- prIndex = res.data.findIndex((item) => item.companyName === "北京普润心堂商贸有限公司");
|
|
|
- zsIndex = res.data.findIndex((item) => item.companyName === "北京知事文化产业发展有限公司")
|
|
|
-
|
|
|
- if (zsIndex >= 0 && prIndex >= 0) {
|
|
|
- const zsItem = res.data[zsIndex];
|
|
|
- res.data[prIndex] = this.addDataToCompany(zsItem, res.data[prIndex]);
|
|
|
- res.data.splice(zsIndex, 1);
|
|
|
- }
|
|
|
-
|
|
|
- if (this.companyNo === "GS2302231124114965") {
|
|
|
- const jxResult = await asyncRequest.companyEveryMonth({ daytime: this.daytime, companyNo: "GS2304031312553746" });
|
|
|
- const zsResult = await asyncRequest.companyEveryMonth({ daytime: this.daytime, companyNo: "GS2401181650538135" });
|
|
|
- res.data[prIndex] = this.addDataToCompany(jxResult.data[0], res.data[prIndex]);
|
|
|
- if(zsResult.data.length !== 0) {
|
|
|
- res.data[prIndex] = this.addDataToCompany(zsResult.data[0], res.data[prIndex]);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
+ // const jxIndex = res.data.findIndex((item) => item.companyName === "北京锦兴弘昌科技有限公司");
|
|
|
+ // let prIndex = res.data.findIndex((item) => item.companyName === "北京普润心堂商贸有限公司");
|
|
|
+ // let zsIndex = res.data.findIndex((item) => item.companyName === "北京知事文化产业发展有限公司")
|
|
|
+ // if (jxIndex >= 0 && prIndex >= 0) {
|
|
|
+ // const jxItem = res.data[jxIndex];
|
|
|
+ // res.data[prIndex] = this.addDataToCompany(jxItem, res.data[prIndex]);
|
|
|
+ // res.data.splice(jxIndex, 1);
|
|
|
+ // }
|
|
|
+ // prIndex = res.data.findIndex((item) => item.companyName === "北京普润心堂商贸有限公司");
|
|
|
+ // zsIndex = res.data.findIndex((item) => item.companyName === "北京知事文化产业发展有限公司")
|
|
|
+ // if (zsIndex >= 0 && prIndex >= 0) {
|
|
|
+ // const zsItem = res.data[zsIndex];
|
|
|
+ // res.data[prIndex] = this.addDataToCompany(zsItem, res.data[prIndex]);
|
|
|
+ // res.data.splice(zsIndex, 1);
|
|
|
+ // }
|
|
|
+ // if (this.companyNo === "GS2302231124114965") {
|
|
|
+ // const jxResult = await asyncRequest.companyEveryMonth({ daytime: this.daytime, companyNo: "GS2304031312553746" });
|
|
|
+ // const zsResult = await asyncRequest.companyEveryMonth({ daytime: this.daytime, companyNo: "GS2401181650538135" });
|
|
|
+ // res.data[prIndex] = this.addDataToCompany(jxResult.data[0], res.data[prIndex]);
|
|
|
+ // if(zsResult.data.length !== 0) {
|
|
|
+ // res.data[prIndex] = this.addDataToCompany(zsResult.data[0], res.data[prIndex]);
|
|
|
+ // }
|
|
|
+ // }
|
|
|
// const isBeforeDate = this.getDiffDay() < 0 && this.companyNo === "GS2302231323386950"
|
|
|
|
|
|
if (res.code === 0 && res.data && res.data.length > 0) {
|
|
@@ -421,7 +416,7 @@ export default {
|
|
|
|
|
|
})
|
|
|
|
|
|
- let i = ["北京万宇恒通国际科贸有限公司","北京百辰荣达国际科贸有限公司","北京泓源广诚国际商贸有限公司",'普润'];
|
|
|
+ let i = ["北京万宇恒通国际科贸有限公司","北京百辰荣达国际科贸有限公司","北京泓源广诚国际商贸有限公司",'北京普润心堂商贸有限公司'];
|
|
|
const l = this.tableData.map(item => item.companyName);
|
|
|
i = i.filter(item => l.includes(item));
|
|
|
this.tableData = i.map(item => this.tableData.find(l => l.companyName === item));
|