From f8ab133a7dc20562c25a092a402266f5e7b0b296 Mon Sep 17 00:00:00 2001 From: Jack <jack.su@pollex.com.tw> Date: 星期一, 24 一月 2022 10:29:38 +0800 Subject: [PATCH] Merge branch 'Phase3' of ssh://dev.pollex.com.tw:29418/pcalife/PAM into Phase3 --- PAMapp/pages/userReviewsRecord/index.vue | 13 +++---------- 1 files changed, 3 insertions(+), 10 deletions(-) diff --git a/PAMapp/pages/userReviewsRecord/index.vue b/PAMapp/pages/userReviewsRecord/index.vue index 9ef2fe3..a161107 100644 --- a/PAMapp/pages/userReviewsRecord/index.vue +++ b/PAMapp/pages/userReviewsRecord/index.vue @@ -1,7 +1,7 @@ <template> <div> <ReviewRecords - :myAppointmentReviewLogList="myAppointmentReviewLogList" + :reviewLogList="reviewLogList" ></ReviewRecords> </div> </template> @@ -11,16 +11,9 @@ @Component export default class UserReviewsRecord extends Vue{ - @State('myAppointmentReviewLogList') - myAppointmentReviewLogList!: AppointmentLog[]; - @Action - storeMyAppointmentReviewLog!: any; - - ////////////////////////////////////////////////////////////////////// - mounted() { - this.storeMyAppointmentReviewLog(); - } + @State('reviewLogList') + reviewLogList!: AppointmentLog[]; } </script> -- Gitblit v1.8.0