123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- <template>
- <view v-if="Object.keys(preferred).length > 0">
- <view class="ss-p-x-20">
- <!-- 轮播图 -->
- <swiper
- circular
- :indicator-dots="preferred?.carousel?.length > 1 ? true : false"
- :autoplay="true"
- :interval="3000"
- :duration="500"
- indicator-active-color="#fff"
- style="height: 180px;"
- >
- <swiper-item v-for="(item, index) in preferred.carousel" :key="index">
- <image :src="item" style="width: 100%; height: 100%" :lazy-load="true" :fade-show="true"></image>
- </swiper-item>
- </swiper>
- <!-- 集团简介 -->
- <view class="ss-m-t-50">
- <!-- 标题 -->
- <uni-title class="ss-m-b-30" type="h1" :title="preferred?.introduce?.title" align="center"></uni-title>
- <!-- 简介 -->
- <rich-text class="ss-m-b-30 color-666" :nodes="preferred?.introduce?.describe"></rich-text>
- <!-- 小图 -->
- <swiper
- v-if="preferred?.introduce?.thumbnail?.length"
- circular
- :indicator-dots="true"
- :autoplay="true"
- :interval="3000"
- :duration="500"
- indicator-active-color="#fff"
- :style="{'height': preferred?.introduce?.thumbnail.length > 1 ? '230px' : '160px'}"
- class="ss-m-t-50"
- >
- <swiper-item v-for="(item, index) in preferred.introduce?.thumbnail" :key="index">
- <image :src="item" style="width: 100%; height: 100%" :lazy-load="true" :fade-show="true"></image>
- </swiper-item>
- </swiper>
- <!-- 大图 -->
- <image class="ss-m-y-30" :src="preferred.introduce?.bigPicture?.url" style="width: 100%;" :lazy-load="true" :fade-show="true" :style="{'height': preferred.introduce?.bigPicture?.height + 'px'}"></image>
- </view>
- <!-- 品牌介绍 -->
- <view v-if="preferred?.brandIntroduce?.length" class="ss-m-t-30">
- <uni-title class="ss-m-b-30 color-666" type="h1" title="品牌介绍" align="center"></uni-title>
- <uni-swiper-dot class="uni-swiper-dot-box" :info="preferred.brandIntroduce" :current="current" mode="nav" field="content">
- <swiper :autoplay="true" :interval="5000" class="swiper-box" @change="change" :current="swiperDotIndex" style="height: 172px;">
- <swiper-item v-for="(item, index) in preferred.brandIntroduce" :key="index">
- <image :src="item.url" style="width: 100%; height: 100%" :lazy-load="true" :fade-show="true"></image>
- <view class="swiper-item" :class="'swiper-item' + index">
- <text style="color: #fff; font-size: 20px;">{{ item.content }}</text>
- </view>
- </swiper-item>
- </swiper>
- </uni-swiper-dot>
- <view class="color-666 ss-m-t-20 font-size-14">{{ preferred.brandIntroduce[current].desc }}</view>
- </view>
- </view>
-
- <!-- 招聘职位 -->
- <view class="ss-m-t-50">
- <uni-title class="ss-m-b-30 color-666" type="h1" title="招聘职位" align="center"></uni-title>
- <scroll-view class="scrollBox" scroll-y="true" @scrolltolower="loadingMore">
- <view v-if="positionList.length > 0">
- <PositionList class="pb-10" :list="positionList" :noMore="false"></PositionList>
- <uni-load-more :status="status" />
- </view>
- <view v-else class="nodata-img-parents">
- <image src="https://minio.citupro.com/dev/static/nodata.png" mode="widthFix" class="nodata-img-child"></image>
- </view>
- </scroll-view>
- </view>
- </view>
- </template>
- <script setup>
- import { ref } from 'vue'
- import { onLoad, onShareAppMessage, onShareTimeline } from '@dcloudio/uni-app'
- import { getJobAdvertisedSearch } from '@/api/position'
- import { dealDictObjData } from '@/utils/position'
- import { getWebContent } from '@/api/common'
- import PositionList from '@/components/PositionList'
- const title = ref('')
- const enterpriseId = ref(null)
- const preferred = ref({}) // 当前企业信息
- const preferredGroup = ref({}) // 优选集团信息
- const getSystemWebContent = async () => {
- const { data } = await getWebContent()
- preferredGroup.value = data?.appPreferredGroup || {}
- if (!enterpriseId.value || !preferredGroup.value[enterpriseId.value]) return uni.navigateBack({ delta: 1 })
- preferred.value = preferredGroup.value[enterpriseId.value]
- title.value = preferred.value.title
- uni.hideLoading()
- }
- onLoad(async (options) => {
- uni.showLoading({ title: '加载中...', mask:true })
- enterpriseId.value = options.id
- await getSystemWebContent()
- await getPositionList()
- })
- onShareAppMessage(() => {
- if(!title.value) setTimeout(() => {},1000)
- return {
- title: title.value || '门墩儿 专注顶尖招聘',
- path: '/pagesB/preferredGroup/index?id=' + enterpriseId.value
- }
- })
- onShareTimeline(() =>{
- if (!title.value) setTimeout(() => {}, 1000)
- return {
- title: title.value || '门墩儿 专注顶尖招聘',
- path: '/pagesB/preferredGroup/index?id=' + enterpriseId.value
- }
- })
- const current = ref(0)
- const swiperDotIndex = ref(0)
- const change = (e) => {
- current.value = e.detail.current
- }
- // 招聘职位
- const status = ref('more')
- const queryParams = ref({
- pageNo: 1,
- pageSize: 10,
- enterpriseId: ''
- })
- const positionList = ref([])
- // 招聘职位列表
- const getPositionList = async () => {
- queryParams.value.enterpriseId = enterpriseId.value
- const { data } = await getJobAdvertisedSearch(queryParams.value)
- const list = data?.list || []
- if (list?.length) {
- list.forEach(e => {
- e.job = { ...e.job, ...dealDictObjData({}, e.job) }
- e.enterprise = { ...e.enterprise, ...dealDictObjData({}, e.enterprise)}
- })
- positionList.value = positionList.value.concat(list)
- }
- status.value = list?.length < queryParams.value.pageSize ? 'noMore' : 'more'
- }
- const loadingMore = () => {
- status.value = 'loading'
- queryParams.value.pageNo++
- getPositionList()
- }
- </script>
- <style scoped lang="scss">
- .scrollBox {
- height: 100vh;
- }
- </style>
|