|
@@ -81,23 +81,24 @@ const contentTabs = [
|
|
|
{
|
|
|
label: '公告正文'
|
|
|
},
|
|
|
- {
|
|
|
- label: '投标服务'
|
|
|
- },
|
|
|
{
|
|
|
label: '商机推荐'
|
|
|
},
|
|
|
{
|
|
|
label: '客户推荐'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '投标服务'
|
|
|
}
|
|
|
+
|
|
|
]
|
|
|
|
|
|
const tabContentState = ref({
|
|
|
公告摘要: true,
|
|
|
公告正文: true,
|
|
|
- 投标服务: true,
|
|
|
商机推荐: true,
|
|
|
- 客户推荐: true
|
|
|
+ 客户推荐: true,
|
|
|
+ 投标服务: true
|
|
|
})
|
|
|
|
|
|
const tabContentShow = computed(() => {
|
|
@@ -521,19 +522,6 @@ function doClickFreeView() {
|
|
|
</div>
|
|
|
<!-- nps评分 -->
|
|
|
<Nps></Nps>
|
|
|
- <!-- 投标服务 -->
|
|
|
- <div
|
|
|
- class="content-card watch-tab-content"
|
|
|
- name="投标服务"
|
|
|
- v-loading="ContentPageExpandsLoading"
|
|
|
- v-if="tabContentShow['投标服务']"
|
|
|
- >
|
|
|
- <div class="content-block-header">投标服务</div>
|
|
|
- <recommend-serves
|
|
|
- @open-collect="doOpenCollectDialog"
|
|
|
- @click-view-origin="doOpenOriginLink"
|
|
|
- />
|
|
|
- </div>
|
|
|
<!-- 商机推荐 -->
|
|
|
<div
|
|
|
class="content-card watch-tab-content"
|
|
@@ -565,6 +553,19 @@ function doClickFreeView() {
|
|
|
@doHide="doHideTabContent('客户推荐')"
|
|
|
/>
|
|
|
</div>
|
|
|
+ <!-- 投标服务 -->
|
|
|
+ <div
|
|
|
+ class="content-card watch-tab-content"
|
|
|
+ name="投标服务"
|
|
|
+ v-loading="ContentPageExpandsLoading"
|
|
|
+ v-if="tabContentShow['投标服务']"
|
|
|
+ >
|
|
|
+ <div class="content-block-header">投标服务</div>
|
|
|
+ <recommend-serves
|
|
|
+ @open-collect="doOpenCollectDialog"
|
|
|
+ @click-view-origin="doOpenOriginLink"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<!-- 内容底部广告 -->
|
|
|
<div class="article-content-footer-container">
|