Merge branch 'dev' into release
Showing
4 changed files
with
5 additions
and
5 deletions
| ... | @@ -298,7 +298,7 @@ const tableBtnClick = (scope, btn) => { | ... | @@ -298,7 +298,7 @@ const tableBtnClick = (scope, btn) => { |
| 298 | if (row.registerApproveState == 'Y') { | 298 | if (row.registerApproveState == 'Y') { |
| 299 | router.push({ | 299 | router.push({ |
| 300 | name: 'registerDetail', | 300 | name: 'registerDetail', |
| 301 | query: { guid: row.registerGuid, evaGuid: row.guid, type: 'qualityEvaluate', tenantGuid: row.tenantGuid } | 301 | query: { guid: row.registerGuid, evaGuid: row.guid, type: 'qualityEvaluate', tenantGuid: row.tenantGuid, tenantName: row.tenantName } |
| 302 | }); | 302 | }); |
| 303 | } else { | 303 | } else { |
| 304 | router.push({ | 304 | router.push({ | ... | ... |
| ... | @@ -400,7 +400,7 @@ const tableBtnClick = (scope, btn) => { | ... | @@ -400,7 +400,7 @@ const tableBtnClick = (scope, btn) => { |
| 400 | if (row.registerApproveState == 'Y') { | 400 | if (row.registerApproveState == 'Y') { |
| 401 | router.push({ | 401 | router.push({ |
| 402 | name: 'registerValueDetail', | 402 | name: 'registerValueDetail', |
| 403 | query: { guid: row.registerGuid, costAssessGuid: row.guid, type: 'costAssess', tenantGuid: row.tenantGuid } | 403 | query: { guid: row.registerGuid, costAssessGuid: row.guid, type: 'costAssess', tenantGuid: row.tenantGuid, tenantName: row.tenantName } |
| 404 | }); | 404 | }); |
| 405 | } else { | 405 | } else { |
| 406 | router.push({ | 406 | router.push({ | ... | ... |
| ... | @@ -1509,7 +1509,7 @@ const timeRangeInfo = computed(() => { | ... | @@ -1509,7 +1509,7 @@ const timeRangeInfo = computed(() => { |
| 1509 | }); | 1509 | }); |
| 1510 | const prcieInfo = computed(() => { | 1510 | const prcieInfo = computed(() => { |
| 1511 | // 还需要把flowDetail.value.productPrice 拼接priceUnitList.value.find(item => item.value == flowDetail.value.priceUnit)?.label | 1511 | // 还需要把flowDetail.value.productPrice 拼接priceUnitList.value.find(item => item.value == flowDetail.value.priceUnit)?.label |
| 1512 | return flowDetail.value.productPrice ? `${flowDetail.value.productPrice} ${priceUnitList.value.find(item => item.value == flowDetail.value.priceUnit)?.label}` : '--'; | 1512 | return flowDetail.value.productPrice ? `${changeNum(parseInt(flowDetail.value.productPrice), 2)} ${priceUnitList.value.find(item => item.value == flowDetail.value.priceUnit)?.label}` : '--'; |
| 1513 | }) | 1513 | }) |
| 1514 | 1514 | ||
| 1515 | const toolBtns: any = computed(() => { | 1515 | const toolBtns: any = computed(() => { | ... | ... |
-
Please register or sign in to post a comment