StepFive.vue 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <template>
  2. <h3 class="ptc-title">Confirm appointment</h3>
  3. <div class="ptc-block">
  4. <p class="sub-title">
  5. Monday, October 10 9:00 -9:30 PTC Browns Plains Kiosk
  6. </p>
  7. <div class="mt48">
  8. <div class="cell">
  9. <span class="cell-label">Phone Brand:</span>
  10. <span class="cell-value">Apple</span>
  11. </div>
  12. <div class="cell">
  13. <span class="cell-label">Phone Model:</span>
  14. <span class="cell-value">iPhone 12</span>
  15. </div>
  16. <div class="cell">
  17. <span class="cell-label">Phone Number:</span>
  18. <span class="cell-value">6668888</span>
  19. </div>
  20. <div class="cell">
  21. <span class="cell-label">IMEI:</span>
  22. <span class="cell-value">iPhonaskfjoaxxx</span>
  23. </div>
  24. <div class="cell">
  25. <span class="cell-label">Service:</span>
  26. <span class="cell-value">Batery Replacement</span>
  27. </div>
  28. <div class="cell">
  29. <span class="cell-label">Member Price:</span>
  30. <span class="cell-value">$35</span>
  31. </div>
  32. <div class="cell mt48">
  33. <span class="cell-label">Postcript:</span>
  34. <span class="cell-value"
  35. >This is my remark,This is my remarkThis is my remark</span
  36. >
  37. </div>
  38. </div>
  39. </div>
  40. <div class="ptc-button-group">
  41. <button class="ptc-button mb36" @click="state.step++">
  42. Confirm appointment
  43. </button>
  44. <button class="ptc-button ptc-button--stroke" @click="state.step = 0">
  45. Reselect
  46. </button>
  47. </div>
  48. </template>
  49. <script setup lang="ts">
  50. import { state } from './store'
  51. </script>