From ac235850a9287dae6977c964213176fa7c86b140 Mon Sep 17 00:00:00 2001 From: Tomas <tomasysh@gmail.com> Date: 星期四, 09 十二月 2021 14:42:20 +0800 Subject: [PATCH] Merge branch 'refactor/separate-vue' of ssh://192.168.0.10:29418/pcalife/PAM into refactor/separate-vue --- PAMapp/pages/record/index.vue | 49 +++++++++++++++++++++++++++++++++++++++++++++++-- 1 files changed, 47 insertions(+), 2 deletions(-) diff --git a/PAMapp/pages/record/index.vue b/PAMapp/pages/record/index.vue index 33da932..0dfac99 100644 --- a/PAMapp/pages/record/index.vue +++ b/PAMapp/pages/record/index.vue @@ -1,3 +1,48 @@ <template> - <div>record-�������</div> -</template> \ No newline at end of file + +<div class="user-reviews-page"> + <section class="mdTxt"> + ������� + </section> + + <section class="user-reviews-header"> + <div class="header-title mdTxt"> + 皛踵�漲蝝���� + </div> + </section> + + <section class="user-reviews-content"> + <div + class="user-reviews-card" + v-for="(appointmentLog, index) in myAppointmentReviewLogList" + :key="index"> + <div class="user-reviews-card-content" v-if="currentRole === 'user'"> + �撠�<span class="mdTxt">{{ ` ${appointmentLog.agentName} ` }}</span>���� <UiReviewScore :score="appointmentLog.score" /> 閰嚗� + </div> + <div class="user-reviews-card-content" v-else> + {{ `${appointmentLog.customerName} `}} 撠���� <UiReviewScore :score="appointmentLog.score" /> 閰嚗� + </div> + <div class="user-reviews-card-date"> + <div class="date"> + <UiDateFormat + :date="appointmentLog.lastModifiedDate" + onlyShowSection="DAY" /> + </div> + <div class="time"> + <UiDateFormat + :date="appointmentLog.lastModifiedDate" + onlyShowSection="TIME" /> + </div> + </div> + </div> + </section> + +</div> + +</template> + +<script src="./record.component.ts"></script> + +<style lang="scss"> + @import "./record.component.scss"; +</style> -- Gitblit v1.8.0