wupengfei
2 天以前 e753238ec6a816ebc6984d1b16ec0a6908ddbec7
apps/bStandardMiniApp/src/subpackages/appointmentManage/appointmentManageDetail/InnerPage.vue
@@ -6,7 +6,7 @@
      :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>