保誠-保戶業務員媒合平台
PAMapp/pages/index.vue
@@ -1,7 +1,5 @@
<template>
    <div>
        <el-button @click="login">登入</el-button>
        <el-button @click="remove">登出</el-button>
        <Ui-Carousel></Ui-Carousel>
        <div class="page-container">
            <h5 class="mdTxt mb-30">預約保險顧問</h5>
@@ -22,12 +20,14 @@
                    <span class="mdTxt">我的顧問清單</span>
                    <span class="smTxt_bold amount">共 {{consultantList.length}} 筆</span>
                </el-col>
                <el-col :span="8" class="mdTxt readMore"
                <el-col
                    :span="8"
                    class="mdTxt readMore"
                    v-if="consultantList.length > 3"
                    @click.native="routerPush('/myConsultantList/consultantList')">查看更多</el-col>
            </el-row>
            <ConsultantList
                :agents="consultantList.slice(0, 3)"
                @removeAgent="removeAgent"
            ></ConsultantList>
            <div class='pam-recommend pb-30 pt-30'>
                <h5 class="mdTxt">推薦保險顧問</h5>
@@ -39,10 +39,8 @@
</template>
<script lang="ts">
import { Vue, Component, State, Action } from 'nuxt-property-decorator';
import { Vue, Component, State, Action, Watch } from 'nuxt-property-decorator';
import { Consultants } from '~/assets/ts/api/consultant';
import { login, recommend, getFavoriteConsultant } from '~/assets/ts/api/consultant';
import { isLogin } from '~/assets/ts/auth';
@Component({
    layout: 'home'
@@ -53,45 +51,26 @@
    @State('recommendList') recommendList!: Consultants[];
    @Action storeRecommendList!: any;
    mounted() {
    @State('myConsultantList') myConsultantList!: Consultants[];
    @Action storeConsultantList!: any;
        if (!this.recommendList) {
    @Watch('myConsultantList')
    onMyConsultantListChange() {
        this.consultantList = (this.myConsultantList || [])
                .filter(item => item.contactStatus !== 'contacted')
                .sort((a, b) => a.updateTime > b.updateTime ? -1 : 1)
    }
    mounted() {
        if (!this.recommendList?.length) {
            this.storeRecommendList();
        }
        if (isLogin()) {
            getFavoriteConsultant().then((response) => this.consultantList = response.data);
        }
        this.storeConsultantList();
    }
    routerPush(path: string) {
        this.$router.push(path);
    }
    removeAgent(agentNo: number) {
        const findIndex = this.consultantList.findIndex((item, i) => {
            return item.agentNo === agentNo;
        })
        this.consultantList.splice(findIndex, 1)
    }
    // TODO: 僅OTP認證開發前 暫時使用
    login() {
        const user = {
            username: "user",
            password: "user"
        }
        login(user).then((res) => {
            localStorage.setItem('id_token', res.data.id_token);
            this.$router.go(0);
        })
    }
    // TODO: 僅OTP認證開發前 暫時使用
    remove() {
        localStorage.clear();
        this.$router.go(0)
    }
}
@@ -141,7 +120,7 @@
        background-image: url('~/assets/images/recommendConsultant/banner_mob.svg');
    }
    @media (min-width: 576px) and (max-width: 1023px) {
    @media (min-width: 576px) and (max-width: 768px) {
        .quickFilter.el-button--default {
            background-image: url('~/assets/images/quickFilter/banner_web.svg');
        }