保誠-保戶業務員媒合平台
PAMapp/pages/myConsultantList/consultantList.vue
@@ -2,7 +2,6 @@
    <div>
        <ConsultantList
            :agents="pageList"
            @removeAgent="removeAgent"
        ></ConsultantList>
        <UiPagination
@@ -13,7 +12,7 @@
</template>
<script lang="ts">
import { Vue, Component, Prop, Emit, Getter } from 'nuxt-property-decorator';
import { Vue, Component, Prop, Getter } from 'nuxt-property-decorator';
import { Consultants } from '~/assets/ts/api/consultant';
@Component
@@ -21,10 +20,6 @@
    @Prop() consultantList!: Consultants[];
    @Getter isLogin!: boolean;
    pageList: Consultants[] = [];
    @Emit('remove') removeAgent(agentNo: number) {
        return agentNo;
    }
    changePage(pageList: Consultants[]) {
        this.pageList = pageList;