|
@@ -118,6 +118,9 @@ const {
|
|
// console.log(ContentModel.value, ContentModel.value?._ob?.topType, ContentModel.value?._ob?.subType, ContentModel.value.isCaigouyixiang)
|
|
// console.log(ContentModel.value, ContentModel.value?._ob?.topType, ContentModel.value?._ob?.subType, ContentModel.value.isCaigouyixiang)
|
|
const buyerName = ref('')
|
|
const buyerName = ref('')
|
|
buyerName.value = ContentModel.value?._summary?._s?.buyer || ''
|
|
buyerName.value = ContentModel.value?._summary?._s?.buyer || ''
|
|
|
|
+const infoType = computed(() => {
|
|
|
|
+ return ContentModel.value?._ob?.topType || ContentModel.value?._ob?.subType
|
|
|
|
+})
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<template>
|
|
<template>
|
|
@@ -275,7 +278,7 @@ buyerName.value = ContentModel.value?._summary?._s?.buyer || ''
|
|
<div class="report-text">
|
|
<div class="report-text">
|
|
通过信用背书、风险预警、政策适配,赋能投标突围
|
|
通过信用背书、风险预警、政策适配,赋能投标突围
|
|
</div>
|
|
</div>
|
|
- <button class="report-btn" @click="doOpenCreditReportPage(buyerName)">
|
|
|
|
|
|
+ <button class="report-btn" :data-info-type="infoType" @click="doOpenCreditReportPage($event,buyerName)">
|
|
投标企业信用报告
|
|
投标企业信用报告
|
|
</button>
|
|
</button>
|
|
</div>
|
|
</div>
|