zhengyiming
昨天 2a53dc5bab4b5ba06f86031671fc3365050fa3d1
apps/bStandardMiniApp/src/subpackages/appointmentManage/appointmentManageDetail/InnerPage.vue
@@ -6,7 +6,7 @@
      :contactPhoneNumber="detail?.contactPhoneNumber"
      :addressDetail="detail?.addressDetail"
      :serviceName="detail?.serviceName"
      :price="detail?.serviceFee"
      :price="detail?.specPrice"
      :specName="detail?.specName"
      :specNumber="detail?.specNumber"
      :imgUrl="detail?.serviceFile"
@@ -21,11 +21,21 @@
      </template>
    </MineServiceDetailView>
  </ContentScrollView>
  <PageFooter v-if="detail?.appointmentStatus === EnumStandardOrderAppointmentStatus.WaitSure">
    <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>
@@ -36,6 +46,7 @@
import { MineServiceDetailView } from '@12333/components';
import Taro from '@tarojs/taro';
import {
  EnumStandardOrderPayStatus,
  EnumStandardOrderAppointmentStatus,
  EnumStandardOrderAppointmentStatusText,
} from '@12333/constants';