From a3716f72066d25d745f4d5103ff23a553c3e102b Mon Sep 17 00:00:00 2001 From: wayne <wayne8692wayne8692@gmail.com> Date: 星期四, 17 二月 2022 11:41:19 +0800 Subject: [PATCH] Merge branch 'sit' into uat --- PAMapp/pages/myConsultantList/consultantList.vue | 13 +++++++++---- 1 files changed, 9 insertions(+), 4 deletions(-) diff --git a/PAMapp/pages/myConsultantList/consultantList.vue b/PAMapp/pages/myConsultantList/consultantList.vue index 356baeb..00dc3e7 100644 --- a/PAMapp/pages/myConsultantList/consultantList.vue +++ b/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> \ No newline at end of file +</script> -- Gitblit v1.8.0