| | |
| | | > |
| | | <ContentScrollView :paddingH="false"> |
| | | <div class="agentRecruitmentPoster-page-content"> |
| | | <img :src="OssAssets.mine.AgentRecruitmentPoster" class="agentRecruitmentPoster-page-bg" /> |
| | | <Image |
| | | :src="OssAssets.mine.AgentRecruitmentPoster" |
| | | class="agentRecruitmentPoster-page-bg" |
| | | mode="widthFix" |
| | | /> |
| | | </div> |
| | | </ContentScrollView> |
| | | </PageLayout> |
| | |
| | | <script setup lang="ts"> |
| | | import { PageLayout } from '@/components'; |
| | | import { RouterPath, OssAssets } from '@/constants'; |
| | | import { Image } from '@tarojs/components'; |
| | | |
| | | defineOptions({ |
| | | name: 'AgentRecruitmentPoster', |
| | |
| | | |
| | | .agentRecruitmentPoster-page-content { |
| | | width: 100%; |
| | | height: 100%; |
| | | |
| | | .agentRecruitmentPoster-page-bg { |
| | | width: 100%; |
| | | height: 100%; |
| | | object-fit: cover; |
| | | } |
| | | } |