This commit is contained in:
xiaozhiyong
2023-02-24 17:12:47 +08:00
parent b66f88ac17
commit 51aa12621d
15 changed files with 848 additions and 107 deletions

View File

@@ -469,9 +469,9 @@ export default {
serve.get(row.id).then((res) => {
Promise.all([
//基础信息
serve.getInfo(res.data.companyId),
commonServe.getInfo(res.data.companyId),
// 账户信息
commonServe.getByCompanyId(res.data.companyId),
commonServe.getByCompanyIdAccount(res.data.companyId),
// 认证信息
commonServe.getByCompanyIdAuth(res.data.companyId),
// 财务信息
@@ -484,7 +484,7 @@ export default {
fourthRes.data,
];
if (firstRes.parentMark === 1) {
serve.getInfo(firstRes.parentId).then((res) => {
commonServe.getInfo(firstRes.parentId).then((res) => {
this.oilCompanyMatch[0] = res.data;
this.controlWindows.detail = true;
});