|
@@ -0,0 +1,85 @@
|
|
|
+<template>
|
|
|
+ <div class="leave-common-footer">
|
|
|
+ <div class="leave-common-footer-content">
|
|
|
+ <div class="leave-common-title">
|
|
|
+ 联系专属客服,还可领取以下福利
|
|
|
+ </div>
|
|
|
+ <div class="leave-common-footer-list">
|
|
|
+ <div v-for="item in list" :key="item.title" class="leave-common-footer-item">
|
|
|
+ <div class="leave-common-footer-item-icon">
|
|
|
+ <img :src="item.icon" alt="">
|
|
|
+ </div>
|
|
|
+ <div class="leave-common-footer-item-title">
|
|
|
+ {{ item.title }}
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+export default {
|
|
|
+ name: 'LeaveCommonFooter',
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ list: [
|
|
|
+ {
|
|
|
+ icon: '',
|
|
|
+ title: '帮您订阅设置'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ icon: '',
|
|
|
+ title: '商机线索推荐'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ icon: '',
|
|
|
+ title: '招标行业报告'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ icon: '',
|
|
|
+ title: '拟建项目资料'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ icon: '',
|
|
|
+ title: '投标技巧分享'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ icon: '',
|
|
|
+ title: '标书技巧分享'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ mounted() {
|
|
|
+ },
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+.leave-common-footer {
|
|
|
+ .leave-common-title {
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+ .leave-common-footer-list {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ .leave-common-footer-item {
|
|
|
+ display: flex;
|
|
|
+ text-align: center;
|
|
|
+ .leave-common-footer-item-icon {
|
|
|
+ img {
|
|
|
+ width: 16px;
|
|
|
+ height: 16px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .leave-common-footer-item-title {
|
|
|
+ font-size: 16px;
|
|
|
+ color: #333;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|