submitRequest.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <script lang='ts' setup>
  2. import useLoginAndDownload from '../../useLoginAndDownload'
  3. const { onSubmitRequest } = useLoginAndDownload()
  4. </script>
  5. <template>
  6. <div>
  7. <div class="custom-title-font text-24px fw-800 text-#333 mb-10px">
  8. Submit Catalog Request
  9. </div>
  10. <div class="text-14px text-#1A1A1A lh-22px mb-22px">
  11. You are requesting the catalog with your EJET Spark account below.
  12. </div>
  13. <div class="flex flex-col gap-20px">
  14. <div class="flex py-15px px-35px b-rd-10px b-#D8D8D b-1px b-solid cursor-pointer hover:b-#9B6CFF">
  15. <!-- 获取首字母 -->
  16. <div class="w-50px h-50px bg-#F2E5F2 text-#9B6CFF text-24px flex justify-center b-rd-50% items-center mr-28px">
  17. E
  18. </div>
  19. <div>
  20. <div class="text-18px fw-bold text-#333 custom-title-font">
  21. EJET Spark
  22. </div>
  23. <div class="text-#9B6CFF mt-8px">
  24. spark@ejet.com
  25. </div>
  26. </div>
  27. </div>
  28. </div>
  29. <el-button
  30. class="!w-full !h-50px mt-24px !text-16px !fw-500 !b-rd-10px !bg-#9B6CFF !text-#fff"
  31. @click="onSubmitRequest"
  32. >
  33. Request Catalog
  34. </el-button>
  35. </div>
  36. </template>
  37. <style lang='less' scoped>
  38. ::v-deep(.login-input) {
  39. .el-input__wrapper{
  40. border-radius: 10px;
  41. }
  42. }
  43. </style>