index.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <script lang='ts' setup>
  2. import { ConstKeys } from '~/enums/const-enums'
  3. const router = useRouter()
  4. useHead({
  5. title: 'EJET Selection Retailer | Submit Wish Order',
  6. meta: [
  7. {
  8. name: 'description',
  9. content:
  10. `Review your selected wholesale products and proceed to submit your wish order. Manage your cart easily with EJET Selection and enjoy wholesale prices.`,
  11. },
  12. {
  13. property: 'og:title',
  14. content: 'EJET Selection Retailer | Submit Wish Order',
  15. },
  16. {
  17. property: 'og:description',
  18. content: `Review your selected wholesale products and proceed to submit your wish order. Manage your cart easily with EJET Selection and enjoy wholesale prices.`,
  19. },
  20. {
  21. property: 'og:type',
  22. content: 'website',
  23. },
  24. {
  25. property: 'twitter:title',
  26. content: 'EJET Selection Retailer | Submit Wish Order',
  27. },
  28. {
  29. property: 'twitter:description',
  30. content: `Review your selected wholesale products and proceed to submit your wish order. Manage your cart easily with EJET Selection and enjoy wholesale prices.`,
  31. },
  32. {
  33. property: 'twitter:card',
  34. content: 'summary_large_image',
  35. },
  36. ],
  37. link: [
  38. {
  39. rel: 'canonical',
  40. href: `${ConstKeys.DOMAINPRO}/submit-order`,
  41. },
  42. ],
  43. })
  44. </script>
  45. <template>
  46. <div class="">
  47. <div class="w-1400px mx-auto ">
  48. <div class="flex items-center register-page py-100px">
  49. <div class="left w-50%">
  50. <img
  51. src="~/assets/images/order_success_img.png"
  52. class="w-620px h-720px"
  53. >
  54. </div>
  55. <div class="right w-50% ">
  56. <h1 class="fw-bold lh-30px text-20px text-#333">
  57. Your Wish Order Has Been Created Successfully
  58. </h1>
  59. <div class="mt-10px mb-60px text-14px text-#333">
  60. Our staff will contact you soon to check the rest of order details with you.
  61. </div>
  62. <business-order-step />
  63. <div>
  64. <el-button class="!bg-#fff !b-#C58C64 b-solid b-1px !text-#C58C64 !w-245px !h-50px !text-18px !fw-500 !b-rd-6px">
  65. <nuxt-link to="/account/orders?tab=submitted">
  66. View my wish order
  67. </nuxt-link>
  68. </el-button>
  69. <el-button class="!bg-#C58C64 !text-#fff !w-245px !h-50px !text-18px !fw-500 !b-rd-10px !ml-10px" @click="router.push('/')">
  70. Continue Shopping
  71. </el-button>
  72. </div>
  73. </div>
  74. </div>
  75. </div>
  76. <common-footer-guide />
  77. </div>
  78. </template>
  79. <style lang='less' scoped>
  80. </style>