|
@@ -299,7 +299,8 @@ export default {
|
|
|
const res = await asyncRequest.companyEveryMonth({ daytime: this.daytime, companyNo: this.companyNo });
|
|
|
|
|
|
const jxIndex = res.data.findIndex((item) => item.companyName === "北京锦兴弘昌科技有限公司");
|
|
|
- const prIndex = 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];
|
|
@@ -307,9 +308,22 @@ export default {
|
|
|
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"
|