保誠-保戶業務員媒合平台
wayne
2022-02-17 a3716f72066d25d745f4d5103ff23a553c3e102b
PAMapp/pages/myConsultantList/consultantList.vue
@@ -2,6 +2,7 @@
    <div>
        <ConsultantList
            :agents="pageList"
            :title="'consultantList'"
        ></ConsultantList>
        <UiPagination
@@ -13,17 +14,21 @@
<script lang="ts">
import { Vue, Component, Prop } from 'nuxt-property-decorator';
import { Consultant } from '~/assets/ts/models/consultant.model';
import { Consultant } from '~/shared/models/consultant.model';
@Component
export default class ConsultantPage extends Vue {
    @Prop() consultantList!: Consultant[];
    @Prop()
    consultantList!: Consultant[];
    pageList: Consultant[] = [];
    //////////////////////////////////////////////////////////////////////
    changePage(pageList: Consultant[]) {
        this.pageList = pageList;
    }
}
</script>
</script>