From 73a09dcb91e4162aa1820bc2a613d32febb61a8d Mon Sep 17 00:00:00 2001 From: Tomas <tomasysh@gmail.com> Date: 星期一, 22 十一月 2021 14:48:30 +0800 Subject: [PATCH] fixed: [註冊畫面] 對整版對於閱讀條約的判定方式,以解決桌機版判定失敗的錯誤 --- PAMapp/components/Client/ClientList.vue | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/PAMapp/components/Client/ClientList.vue b/PAMapp/components/Client/ClientList.vue index 8669ca7..11a77d1 100644 --- a/PAMapp/components/Client/ClientList.vue +++ b/PAMapp/components/Client/ClientList.vue @@ -17,11 +17,11 @@ <script lang='ts'> import { Vue, Component, Prop } from 'nuxt-property-decorator'; -import { Clients } from '~/pages/clientReservedList.vue'; +import { ClientInfo } from '~/assets/ts/api/appointment'; @Component export default class ClientList extends Vue { - @Prop() clients!: Clients[]; + @Prop() clients!: ClientInfo[]; @Prop() title!: string; } </script> -- Gitblit v1.8.0