1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <script lang='ts' setup>
- import { useCommonStore } from '@/stores/modules/common'
- import { downloadFile } from '@/utils/common/download'
- const commonStore = useCommonStore()
- const { downloadCatalog } = storeToRefs(commonStore)
- function startDownload() {
- if (downloadCatalog.value)
- downloadFile(downloadCatalog.value.pdfUrl, `${downloadCatalog.value.title}.pdf`)
- else
- console.error('No download catalog available')
- }
- startDownload()
- </script>
- <template>
- <div>
- <div class="custom-title-font text-24px fw-800 text-#333 mb-10px flex items-center">
- Download Successfully!👏
- </div>
- <div class="text-14px text-#1A1A1A lh-22px mb-20px">
- Please feel free to contact us to customize your exclusive product solution.
- </div>
- <div class="b-rd-200px bg-#fff text-#333 py-14px px-46px b-1px b-solid b-#D8D8D8 hover:b-#9B6CFF flex !bg-#fff items-center mb-24px">
- <div class="p-14px b-rd-50% bg-#F2E5F2 mr-26px">
- <img src="@/assets/images/email.png" alt="" class="w-24px h-24px ">
- </div>
- <div>
- <div class="text-18px fw-bold custom-title-font">
- Email
- </div>
- <div class="text-#9B6CFF lh-24px">
- spark@ejet.com
- </div>
- </div>
- </div>
- <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">
- <div class="p-14px b-rd-50% bg-#F2E5F2 mr-26px">
- <img src="@/assets/images/wechat.png" class="w-24px h-24px" alt="">
- </div>
- <div>
- <div class="text-18px fw-bold custom-title-font">
- WhatsApp
- </div>
- <div class="text-#9B6CFF lh-24px">
- +1 (234) 567-890
- </div>
- </div>
- </div>
- </div>
- </template>
- <style lang='less' scoped>
- ::v-deep(.login-input) {
- &.error-txt{
- .el-input__wrapper{
- border: 1px solid red!important;
- }
- }
- .el-input__wrapper{
- border-radius: 10px;
- }
- }
- </style>
|