|
@@ -2,15 +2,19 @@
|
|
|
<div class="leave-common-footer">
|
|
|
<div class="leave-common-footer-content">
|
|
|
<div class="leave-common-title">
|
|
|
- 联系专属客服,还可领取以下福利
|
|
|
+ {{ list.title }}
|
|
|
</div>
|
|
|
<div class="leave-common-footer-list">
|
|
|
- <div v-for="item in list" :key="item.title" class="leave-common-footer-item">
|
|
|
+ <div
|
|
|
+ v-for="item in list.list"
|
|
|
+ :key="item.title"
|
|
|
+ class="leave-common-footer-item"
|
|
|
+ >
|
|
|
<div class="leave-common-footer-item-icon">
|
|
|
- <img :src="item.icon" alt="">
|
|
|
+ <span class="j-icon" :class="item.icon" />
|
|
|
</div>
|
|
|
<div class="leave-common-footer-item-title">
|
|
|
- {{ item.title }}
|
|
|
+ {{ item.title }}-{{ item.subtitle }}
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -19,45 +23,22 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+import dataList from '@/components/common/index.js'
|
|
|
+
|
|
|
export default {
|
|
|
name: 'LeaveCommonFooter',
|
|
|
data() {
|
|
|
return {
|
|
|
- list: [
|
|
|
- {
|
|
|
- icon: '',
|
|
|
- title: '帮您订阅设置'
|
|
|
- },
|
|
|
- {
|
|
|
- icon: '',
|
|
|
- title: '商机线索推荐'
|
|
|
- },
|
|
|
- {
|
|
|
- icon: '',
|
|
|
- title: '招标行业报告'
|
|
|
- },
|
|
|
- {
|
|
|
- icon: '',
|
|
|
- title: '拟建项目资料'
|
|
|
- },
|
|
|
- {
|
|
|
- icon: '',
|
|
|
- title: '投标技巧分享'
|
|
|
- },
|
|
|
- {
|
|
|
- icon: '',
|
|
|
- title: '标书技巧分享'
|
|
|
- }
|
|
|
- ]
|
|
|
+ list: dataList
|
|
|
}
|
|
|
- },
|
|
|
- mounted() {
|
|
|
- },
|
|
|
+ }
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
.leave-common-footer {
|
|
|
+ background: url(@/assets/images/BG.png) no-repeat;
|
|
|
+ background-size: cover;
|
|
|
.leave-common-title {
|
|
|
text-align: center;
|
|
|
}
|