From 35459a550185254b8030cbf10ea07dcc4631c062 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期三, 31 十二月 2025 09:53:17 +0800
Subject: [PATCH] fix: bug

---
 apps/bStandardMiniApp/src/subpackages/appointmentManage/appointmentManageDetail/InnerPage.vue |   25 +++++++++++++++----------
 1 files changed, 15 insertions(+), 10 deletions(-)

diff --git a/apps/bStandardMiniApp/src/subpackages/appointmentManage/appointmentManageDetail/InnerPage.vue b/apps/bStandardMiniApp/src/subpackages/appointmentManage/appointmentManageDetail/InnerPage.vue
index 13e0f2c..2f4f15a 100644
--- a/apps/bStandardMiniApp/src/subpackages/appointmentManage/appointmentManageDetail/InnerPage.vue
+++ b/apps/bStandardMiniApp/src/subpackages/appointmentManage/appointmentManageDetail/InnerPage.vue
@@ -2,11 +2,11 @@
   <!-- <LoadingLayout :loading="isLoading" :error="isError" :loadError="refetch"> -->
   <ContentScrollView hasPaddingTop>
     <MineServiceDetailView
-      :contactName="detail?.name"
+      :contactName="detail?.serverNames"
       :contactPhoneNumber="detail?.contactPhoneNumber"
       :addressDetail="detail?.addressDetail"
       :serviceName="detail?.serviceName"
-      :price="detail?.payAmount"
+      :price="detail?.specPrice"
       :specName="detail?.specName"
       :specNumber="detail?.specNumber"
       :imgUrl="detail?.serviceFile"
@@ -21,16 +21,21 @@
       </template>
     </MineServiceDetailView>
   </ContentScrollView>
-  <PageFooter
-    v-if="
-      detail?.appointmentStatus === EnumStandardOrderAppointmentStatus.WaitSure &&
-      detail?.payStatus !== EnumStandardOrderPayStatus.Completed
-    "
-  >
-    <PageFooterBtn class="business-card-btn" @click="cancelStandardOrderAppointment"
+  <PageFooter>
+    <PageFooterBtn
+      v-if="detail?.appointmentStatus === EnumStandardOrderAppointmentStatus.WaitSure"
+      class="business-card-btn"
+      @click="cancelStandardOrderAppointment"
       >鍙栨秷棰勭害</PageFooterBtn
     >
-    <PageFooterBtn type="primary" class="business-card-btn" @click="handleSubmit"
+    <PageFooterBtn
+      v-if="
+        detail?.appointmentStatus === EnumStandardOrderAppointmentStatus.WaitSure &&
+        detail?.payStatus === EnumStandardOrderPayStatus.Completed
+      "
+      type="primary"
+      class="business-card-btn"
+      @click="handleSubmit"
       >纭棰勭害</PageFooterBtn
     >
   </PageFooter>

--
Gitblit v1.10.0