42578cd0 by lxs

数据资产登记更新

1 parent bf54009c
...@@ -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 };
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!