zhengyiming
2 天以前 5499750aabe2251491a979a927e6126dd434d1df
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>