request.vue 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <script lang='ts' setup>
  2. import type { FormInstance, FormRules } from 'element-plus'
  3. import useLoginAndDownload from '../../useLoginAndDownload'
  4. const { loginForm, finishCode, errorCodeTxt, seconds, getMailCode, backStep } = useLoginAndDownload()
  5. const ruleFormRef = ref<FormInstance>()
  6. const rules = ref<FormRules>({
  7. code: [
  8. { required: true, message: 'Please enter a valid email.', trigger: 'blur' },
  9. ],
  10. })
  11. </script>
  12. <template>
  13. <div>
  14. <div class="custom-title-font text-24px fw-800 text-#333 mb-10px flex items-center">
  15. Request Successfully!👏
  16. </div>
  17. <div class="text-14px text-#1A1A1A lh-22px ">
  18. Our product expert will contact you soon to send you the catalog. Please check your mailbox later.
  19. </div>
  20. <el-divider class="!my-30px">
  21. or
  22. </el-divider>
  23. <div class="text-14px text-#1A1A1A lh-22px mb-30px">
  24. Directly contact us now to talk about your product needs and sourcing requirements.
  25. </div>
  26. <div class="b-rd-200px bg-#fff b-1px py-14px px-46px text-#333 b-solid b-#D8D8D8 hover:b-#9B6CFF flex items-center">
  27. <div class="p-14px b-rd-50% bg-#F2E5F2 mr-26px">
  28. <img src="@/assets/images/wechat.png" class="w-24px h-24px" alt="">
  29. </div>
  30. <div>
  31. <div class="text-18px fw-bold custom-title-font">
  32. WhatsApp
  33. </div>
  34. <div class="text-#9B6CFF lh-24px">
  35. +1 (234) 567-890
  36. </div>
  37. </div>
  38. </div>
  39. </div>
  40. </template>
  41. <style lang='less' scoped>
  42. ::v-deep(.login-input) {
  43. &.error-txt{
  44. .el-input__wrapper{
  45. border: 1px solid red!important;
  46. }
  47. }
  48. .el-input__wrapper{
  49. border-radius: 10px;
  50. }
  51. }
  52. </style>