StepFour.vue 1.8 KB

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