From 20b87b7eab9c600e2445548c4306ea1b8b37b275 Mon Sep 17 00:00:00 2001 From: HelenHuang <LinHuang@pollex.com.tw> Date: 星期一, 06 十二月 2021 12:29:50 +0800 Subject: [PATCH] update#131467: [滿意度評分功能]-客戶進行滿意度評分API串接 --- PAMapp/components/Ui/UiPagination.vue | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/PAMapp/components/Ui/UiPagination.vue b/PAMapp/components/Ui/UiPagination.vue index d157b14..5ab226b 100644 --- a/PAMapp/components/Ui/UiPagination.vue +++ b/PAMapp/components/Ui/UiPagination.vue @@ -12,12 +12,12 @@ <script lang="ts"> import { Vue, Component, Prop, Emit, Watch } from 'nuxt-property-decorator'; -import { Consultants } from '~/assets/ts/api/consultant'; +import { Consultants } from '~/assets/ts/models/consultant.model'; @Component export default class UiPagination extends Vue { @Prop() totalList!: Consultants[]; - pageSize = 5; + @Prop({default: 5}) pageSize!: number; currentPage = 1; pageList: Consultants[] = []; -- Gitblit v1.8.0