fix
Showing
3 changed files
with
8 additions
and
6 deletions
| ... | @@ -133,6 +133,13 @@ export const getEvaDetail = (params) => request({ | ... | @@ -133,6 +133,13 @@ export const getEvaDetail = (params) => request({ |
| 133 | params | 133 | params |
| 134 | }) | 134 | }) |
| 135 | 135 | ||
| 136 | // 获取价值评价详情 | ||
| 137 | export const getCostDetail = (params) => request({ | ||
| 138 | url: `${import.meta.env.VITE_API_NEW_PORTAL}/cost-assessment/detail`, | ||
| 139 | method: 'get', | ||
| 140 | params | ||
| 141 | }) | ||
| 142 | |||
| 136 | /** 资产价值评估相关接口 */ | 143 | /** 资产价值评估相关接口 */ |
| 137 | 144 | ||
| 138 | /** 获取资产价值评估分页列表。 */ | 145 | /** 获取资产价值评估分页列表。 */ | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -369,11 +369,6 @@ const tableBtnClick = (scope, btn) => { | ... | @@ -369,11 +369,6 @@ const tableBtnClick = (scope, btn) => { |
| 369 | }); | 369 | }); |
| 370 | }); | 370 | }); |
| 371 | } else if (type === 'detail') { // 详情 | 371 | } else if (type === 'detail') { // 详情 |
| 372 | router.push({ | ||
| 373 | name: 'registerValueDetail', | ||
| 374 | query: { guid: row.registerGuid, costAssessGuid: row.guid, type: 'costAssess', daTenantGuid: row.tenantGuid } | ||
| 375 | }); | ||
| 376 | } else if (type === 'detail') { // 详情 | ||
| 377 | if (row.registerApproveState == 'Y') { | 372 | if (row.registerApproveState == 'Y') { |
| 378 | router.push({ | 373 | router.push({ |
| 379 | name: 'registerDetail', | 374 | name: 'registerDetail', |
| ... | @@ -382,7 +377,7 @@ const tableBtnClick = (scope, btn) => { | ... | @@ -382,7 +377,7 @@ const tableBtnClick = (scope, btn) => { |
| 382 | } else { | 377 | } else { |
| 383 | router.push({ | 378 | router.push({ |
| 384 | name: 'evaCatalogDetail', | 379 | name: 'evaCatalogDetail', |
| 385 | query: { guid: row.registerGuid, costAssessGuid: row.guid, type: 'costAssess' } | 380 | query: { guid: row.damGuid, costAssessGuid: row.guid, type: 'costAssess' } |
| 386 | }); | 381 | }); |
| 387 | } | 382 | } |
| 388 | } else if (type == 'productDetail') { | 383 | } else if (type == 'productDetail') { | ... | ... |
-
Please register or sign in to post a comment