| | |
| | | <template> |
| | | <div> |
| | | <div>嚴選顧問推薦</div> |
| | | </template> |
| | | <ul class="pam-rec-agent__list"> |
| | | <li class="pam-rec-agent-card" v-for="(info,index) in recAgentList" :key="index"> |
| | | <div class="pam-rec-agent-card__content"> |
| | | <div class="pam-rec-agent-card__avatar"> |
| | | <img :src="info.avatar" class="avatar"> |
| | | <div class="pam-rec-agent-card__main-info"> |
| | | <div class="fz-20 pt-10">{{ info.name }}</div> |
| | | <div class="rec-company">{{ info.company }}</div> |
| | | <span class="rec-detail pt-30">詳細資料</span> |
| | | </div> |
| | | </div> |
| | | <span class="rec-sub-title">專長領域</span> |
| | | <div> |
| | | {{info.expertise}} |
| | | </div> |
| | | </div> |
| | | </li> |
| | | </ul> |
| | | |
| | | </div> |
| | | </template> |
| | | <script> |
| | | import {Vue,Component} from 'vue-property-decorator'; |
| | | |
| | | @Component |
| | | export default class Reslut extends Vue{ |
| | | |
| | | recAgentList =[ |
| | | { |
| | | avatar:'https://cube.elemecdn.com/0/88/03b0d39583f48206768a7534e55bcpng.png', |
| | | name:'蔡美莓', |
| | | company:'伯樂保險經紀人', |
| | | expertise:'#財務規劃 #資產轉移 #節稅 #樂活退休', |
| | | seniority:'1年2個月', |
| | | avgScore:4.8 |
| | | }, |
| | | { |
| | | avatar:'https://cube.elemecdn.com/0/88/03b0d39583f48206768a7534e55bcpng.png', |
| | | name:'賈斯町', |
| | | company:'鮭魚保險經紀人', |
| | | expertise:'#財務規劃 #資產轉移 #節稅 #樂活退休', |
| | | seniority:'1年2個月', |
| | | avgScore:4.8 |
| | | }, |
| | | { |
| | | avatar:'https://cube.elemecdn.com/0/88/03b0d39583f48206768a7534e55bcpng.png', |
| | | name:'陳家婷', |
| | | company:'千里馬保險經紀人', |
| | | expertise:'#財務規劃 #資產轉移 #節稅 #樂活退休', |
| | | seniority:'1年2個月', |
| | | avgScore:4.8 |
| | | }, |
| | | { |
| | | avatar:'https://cube.elemecdn.com/0/88/03b0d39583f48206768a7534e55bcpng.png', |
| | | name:'張小美', |
| | | company:'鮭魚保險經紀人', |
| | | expertise:'#財務規劃 #資產轉移 #節稅 #樂活退休', |
| | | seniority:'1年2個月', |
| | | avgScore:4.8 |
| | | }, |
| | | { |
| | | avatar:'https://cube.elemecdn.com/0/88/03b0d39583f48206768a7534e55bcpng.png', |
| | | name:'林美女', |
| | | company:'千里馬保險經紀人', |
| | | expertise:'#財務規劃 #資產轉移 #節稅 #樂活退休', |
| | | seniority:'1年2個月', |
| | | avgScore:4.8 |
| | | }, |
| | | { |
| | | avatar:'https://cube.elemecdn.com/0/88/03b0d39583f48206768a7534e55bcpng.png', |
| | | name:'蔣帥哥', |
| | | company:'鮭魚保險經紀人', |
| | | expertise:'#財務規劃 #資產轉移 #節稅 #樂活退休', |
| | | seniority:'1年2個月', |
| | | avgScore:4.8 |
| | | } |
| | | ]; |
| | | |
| | | |
| | | } |
| | | </script> |
| | | |
| | | <style lang="scss" scoped> |
| | | .pam-rec-agent-card { |
| | | border-radius: 10px; |
| | | border: 1px solid $LIGHT_GREY; |
| | | padding: 20px 33px; |
| | | .pam-rec-agent-card__content { |
| | | width: 270px; |
| | | .pam-rec-agent-card__avatar { |
| | | display: flex; |
| | | flex-direction: row; |
| | | .avatar{ |
| | | width: 120px; |
| | | height: 120px; |
| | | border-radius: 50%; |
| | | } |
| | | } |
| | | .pam-rec-agent-card__main-info { |
| | | display: flex; |
| | | flex-direction: column; |
| | | margin-left:19px; |
| | | .rec-company{ |
| | | font-size: 16px; |
| | | color: $PRUDENTIAL_GREY; |
| | | font-weight:bold; |
| | | margin-top: 4px; |
| | | margin-bottom: 30px; |
| | | } |
| | | .rec-detail{ |
| | | font-size: 20px; |
| | | color:$PRIMARY_RED; |
| | | font-weight: bold; |
| | | } |
| | | } |
| | | .rec-sub-title{ |
| | | font-size: 16px; |
| | | color: $PRUDENTIAL_GREY; |
| | | font-weight:bold; |
| | | } |
| | | } |
| | | } |
| | | </style> |