保誠-保戶業務員媒合平台
HelenHuang
2021-12-06 1076fdc06d40646d1d6f125a3ce4d43cf4eac673
PAMapp/pages/myConsultantList/contactedList.vue
@@ -13,14 +13,15 @@
<script lang="ts">
import { Vue, Component, Prop } from 'nuxt-property-decorator' ;
import { Agents } from '~/plugins/api/home';
import { Consultant } from '~/assets/ts/models/consultant.model';
@Component
export default class ContactedList extends Vue {
    @Prop() contactedList!: Agents[];
    pageList: Agents[] = [];
    @Prop() contactedList!: Consultant[];
    pageList: Consultant[] = [];
    changePage(pageList: Agents[]) {
    changePage(pageList: Consultant[]) {
        this.pageList = pageList;
    }
}