保誠-保戶業務員媒合平台
wayne
2022-02-17 a3716f72066d25d745f4d5103ff23a553c3e102b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<template>
    <footer class="pam-footer">
      <nav class="pam-footer-nav">
        <ul class="pam-footer-nav__list">
          <li
            v-for="(navItem, index) in footerNavList"
            :key="index"
            class="pam-footer-nav__item">
            <a :href="navItem.url" target="_blank">
              {{ navItem.label }}
            </a>
            <span class="pl-10 pam-footer-nav__item-pipe"
              v-if="index !== footerNavList.length - 1"> | </span>
          </li>
        </ul>
      </nav>
      <section class="pam-footer-contact">
        <ul class="pam-footer-contact__list">
          <li class="pam-footer-contact__item pb-10">客戶服務專線:<span class="phone">0809-0809-68</span></li>
          <li class="pam-footer-contact__item">(專員接聽時間:週一 ~ 週五 08:00~20:00 及週六、日及例假日09:00~17:30)</li>
        </ul>
      </section>
      <section class="pam-footer-copywriting">本網站由保誠人壽與保經代共同合作</section>
    </footer>
</template>
 
<script lang="ts">
import { Vue, Component } from 'vue-property-decorator';
 
@Component
export default class UiCarousel extends Vue {
 
  footerNavList: FooterNavItem[] = [
    { label: '網站綜合聲明', url: 'https://www.pcalife.com.tw/zh/disclaimer/'},
    { label: '金融友善服務專區', url: 'https://www.pcalife.com.tw/zh/financial-friendly/'},
    { label: '法令宣導', url: 'https://www.pcalife.com.tw/zh/law-advocacy/'},
    { label: '保險委外作業說明', url: 'https://www.pcalife.com.tw/zh/outsourcing-notice/'},
    { label: 'GDPR隱私權告知事項', url: 'https://www.pcalife.com.tw/zh/gdpr-privacy-notice/'},
  ];
 
}
 
interface FooterNavItem {
  label: string;
  url: string;
}
 
</script>
 
<style lang="scss" scoped>
.pam-footer {
  border-top      : 1px solid #CCCCCC;
  background-color: $PRIMARY_WHITE;
  .pam-footer-nav {
    padding: 10px 20px;
    .pam-footer-nav__list {
      display        : flex;
      list-style     : none;
      flex-wrap      : wrap;
      justify-content: center;
      .pam-footer-nav__item {
        padding: 10px 0 10px 10px;
        @extend .xsTxt;
        @extend .text--bold;
        @extend .text--dark-blue;
        @extend .cursor--pointer;
         a, a:hover, a:focus, a:active {
              text-decoration: none;
              color          : inherit;
        }
        &:nth-of-type(3) {
          .pam-footer-nav__item-pipe {
            display: none;
            @include desktop() {
              display: inline;
            }
          }
        }
      }
    }
  }
  .pam-footer-contact {
    padding       : 10px 20px;
    display       : flex;
    flex-direction: column;
    .pam-footer-contact__list {
      display        : flex;
      list-style     : none;
      flex-wrap      : wrap;
      justify-content: center;
      .pam-footer-contact__item {
        color      : $PRUDENTIAL_GREY;
        font-size  : 12px;
        text-align : center;
        line-height: 20px;
        @extend .text--bold;
        .phone {
          color    : $PRIMARY_BLACK;
          font-size: 14px;
          @extend .text--bold;
        }
      }
    }
  }
  .pam-footer-copywriting {
    background-color: $PRIMARY_RED;
    display         : flex;
    justify-content : center;
    color           : $PRIMARY_WHITE;
    padding         : 10px 0;
    font-size       : 12px;
    font-weight     : bold;
    line-height     : 20px;
  }
}
</style>