保誠-保戶業務員媒合平台
Tomas
2021-12-22 abfd26bb700d93a92da6a04703b0187d4acaaeb5
PAMapp/pages/myConsultantList/contactedList.vue
@@ -2,6 +2,7 @@
    <div>
        <ConsultantList
            :agents="pageList"
            :title="'contactedList'"
        ></ConsultantList>
        <UiPagination
@@ -13,15 +14,16 @@
<script lang="ts">
import { Vue, Component, Prop } from 'nuxt-property-decorator' ;
import { Consultants } from '~/assets/ts/api/consultant';
import { Consultant } from '~/shared/models/consultant.model';
@Component
export default class ContactedList extends Vue {
    @Prop() contactedList!: Consultants[];
    pageList: Consultants[] = [];
    @Prop() contactedList!: Consultant[];
    pageList: Consultant[] = [];
    changePage(pageList: Consultants[]) {
    changePage(pageList: Consultant[]) {
        this.pageList = pageList;
    }
}
</script>
</script>