69864e61 by lihua

修复产品详情

1 parent 2e51a425
...@@ -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(() => {
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!