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