数据资产登记更新
Showing
1 changed file
with
1 additions
and
2 deletions
| ... | @@ -51,7 +51,6 @@ const detailType: any = ref(route.query.type); | ... | @@ -51,7 +51,6 @@ const detailType: any = ref(route.query.type); |
| 51 | const evaGuid: any = ref(route.query.evaGuid); | 51 | const evaGuid: any = ref(route.query.evaGuid); |
| 52 | const costAssessGuid: any = ref(route.query.costAssessGuid); | 52 | const costAssessGuid: any = ref(route.query.costAssessGuid); |
| 53 | const certificateGuid: any = ref(route.query.certificateGuid); | 53 | const certificateGuid: any = ref(route.query.certificateGuid); |
| 54 | const serviceTenantGuid: any = ref(route.query.serviceTenantGuid); | ||
| 55 | 54 | ||
| 56 | const contentRef = ref(); | 55 | const contentRef = ref(); |
| 57 | const tabsInfo = ref({ | 56 | const tabsInfo = ref({ |
| ... | @@ -357,7 +356,7 @@ const tentData = ref<any>({}); | ... | @@ -357,7 +356,7 @@ const tentData = ref<any>({}); |
| 357 | const getTenantInformation = () => { | 356 | const getTenantInformation = () => { |
| 358 | const ps: any = []; | 357 | const ps: any = []; |
| 359 | 358 | ||
| 360 | ps.push(getTenantDetailInfo(tenantGuid).then((res: any) => { | 359 | ps.push(getTenantDetailInfo(tenantGuid || userData.tenantGuid).then((res: any) => { |
| 361 | if (res.code === proxy.$passCode) { | 360 | if (res.code === proxy.$passCode) { |
| 362 | const data = res.data ?? {}; | 361 | const data = res.data ?? {}; |
| 363 | tentData.value = { ...tentData.value, ...data }; | 362 | tentData.value = { ...tentData.value, ...data }; | ... | ... |
-
Please register or sign in to post a comment