StepFive.vue 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <template>
  2. <div class="container">
  3. <div class="ptc-inner">
  4. <div class="alert">
  5. <i class="alert-icon"></i>
  6. <p class="alert-message">Monday, October 10 9:00 -9:30</p>
  7. </div>
  8. <div class="action">
  9. <i class="icon-calendar"></i><strong>Add to calendar ></strong>
  10. </div>
  11. <div class="note">
  12. <p class="note-title">Preparations:</p>
  13. <ul class="note-list">
  14. <li class="note-item">· You need to back up the data in advance</li>
  15. <li class="note-item">· You need to back up the data in advance</li>
  16. </ul>
  17. </div>
  18. <div class="detail">
  19. <div class="cell">
  20. <span class="cell-label">Store:</span>
  21. <span class="cell-value">xxxxxxxxxx</span>
  22. </div>
  23. <div class="cell">
  24. <span class="cell-label">Phone Brand:</span>
  25. <span class="cell-value">xxxxxxxxxx</span>
  26. </div>
  27. <div class="cell">
  28. <strong class="primary">Navigation></strong>
  29. </div>
  30. <div class="cell">
  31. <span class="cell-label">Phone Model:</span>
  32. <span class="cell-value">xxxxxxxxxx</span>
  33. </div>
  34. <div class="cell">
  35. <span class="cell-label">Phone Number:</span>
  36. <span class="cell-value">xxxxxxxxxx</span>
  37. </div>
  38. <div class="cell">
  39. <span class="cell-label">IMEI:</span>
  40. <span class="cell-value">xxxxxxxxxx</span>
  41. </div>
  42. <div class="cell">
  43. <span class="cell-label">Service:</span>
  44. <span class="cell-value">xxxxxxxxxx</span>
  45. </div>
  46. <div class="cell">
  47. <span class="cell-label">Member Price:</span>
  48. <span class="cell-value">$35</span>
  49. </div>
  50. </div>
  51. </div>
  52. <div class="ptc-button-group mg0">
  53. <div class="ptc-inner">
  54. <button class="ptc-button" @click="state.step = 1">
  55. Reselect time
  56. </button>
  57. <button class="ptc-button ptc-button--stroke">
  58. Cancel appointment
  59. </button>
  60. </div>
  61. </div>
  62. </div>
  63. </template>
  64. <script setup lang="ts">
  65. import { state } from '../store'
  66. import { cancelRepair } from '@/service/repair'
  67. </script>