|
@@ -1,37 +1,28 @@
|
|
<template>
|
|
<template>
|
|
<ContentModuleCard title="商机推荐" class="content-business-recommend">
|
|
<ContentModuleCard title="商机推荐" class="content-business-recommend">
|
|
<div class="business-list">
|
|
<div class="business-list">
|
|
- <RecommendProjectCard
|
|
|
|
- class="business-list-item"
|
|
|
|
- titleIcon="icon-flexible-selection"
|
|
|
|
- title="超前项目推荐"
|
|
|
|
- >
|
|
|
|
- <span slot="header-actions"></span>
|
|
|
|
- </RecommendProjectCard>
|
|
|
|
- <RecommendProjectCard
|
|
|
|
- class="business-list-item"
|
|
|
|
- title="采购单位名称XXX的其他招标动态"
|
|
|
|
- ></RecommendProjectCard>
|
|
|
|
- <RecommendProjectCard
|
|
|
|
- class="business-list-item"
|
|
|
|
- title="中标单位名称XXX的其他中标动态"
|
|
|
|
- ></RecommendProjectCard>
|
|
|
|
|
|
+ <ContentBusinessRecommendProject class="business-list-item" />
|
|
|
|
+ <ContentBusinessRecommendBuyer class="business-list-item" />
|
|
|
|
+ <ContentBusinessRecommendWinner class="business-list-item" />
|
|
</div>
|
|
</div>
|
|
</ContentModuleCard>
|
|
</ContentModuleCard>
|
|
</template>
|
|
</template>
|
|
<script>
|
|
<script>
|
|
import { Icon } from 'vant'
|
|
import { Icon } from 'vant'
|
|
import ContentModuleCard from '@/views/article/ui/ContentModuleCard.vue'
|
|
import ContentModuleCard from '@/views/article/ui/ContentModuleCard.vue'
|
|
-import RecommendProjectCard from '@/views/article/components/RecommendProjectCard.vue'
|
|
|
|
|
|
+import ContentBusinessRecommendProject from '@/views/article/components/ContentBusinessRecommendProject.vue'
|
|
|
|
+import ContentBusinessRecommendBuyer from '@/views/article/components/ContentBusinessRecommendBuyer.vue'
|
|
|
|
+import ContentBusinessRecommendWinner from '@/views/article/components/ContentBusinessRecommendWinner.vue'
|
|
|
|
|
|
export default {
|
|
export default {
|
|
name: 'ContentCustomerRecommend',
|
|
name: 'ContentCustomerRecommend',
|
|
components: {
|
|
components: {
|
|
[Icon.name]: Icon,
|
|
[Icon.name]: Icon,
|
|
ContentModuleCard,
|
|
ContentModuleCard,
|
|
- RecommendProjectCard
|
|
|
|
|
|
+ ContentBusinessRecommendProject,
|
|
|
|
+ ContentBusinessRecommendBuyer,
|
|
|
|
+ ContentBusinessRecommendWinner
|
|
},
|
|
},
|
|
- created() {},
|
|
|
|
methods: {}
|
|
methods: {}
|
|
}
|
|
}
|
|
</script>
|
|
</script>
|