123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- <template>
- <view>
- <Navbar title="招聘会" />
- <layout-page>
- <view class="defaultBgc" style="padding-bottom: 100px;" :style="{'height': `calc(100vh - ${(navbarHeight + 100)}px)`, 'padding-top': navbarHeight + 'px'}">
- <view v-if="items.length">
- <view class="commonBackground"></view>
- <view v-for="val in items" :key="val.id" @tap="handleToJobFairEnterprises(val)" class="list-item default-border">
- <image v-if="val?.previewImg" class="ss-m-t-10" :src="val.previewImg" mode="widthFix" style="width: 100%; height: auto; border-radius: 6px;"></image>
- <view class="ss-m-t-20">活动时间:{{ timesTampChange(val.startTime, 'Y-M-D') }}至{{ timesTampChange(val.endTime, 'Y-M-D') }}</view>
- <button class="ss-m-t-20 ss-m-b-10" style="background-color: #00B760; color: #fff;" type="primary">立即加入</button>
- </view>
- </view>
- <view v-else>
- <view class="commonBackground"></view>
- <view class="nodata-img-parent" :style="{'height': `calc(100vh - ${(navbarHeight + 100)}px)`}">
- <image src="https://minio.citupro.com/dev/static/nodata.png" mode="widthFix" style="width: 100vw;height: 100vh;"></image>
- </view>
- </view>
- </view>
- <payPopup ref="payRef" @paySuccess="paySuccess"></payPopup>
- </layout-page>
- </view>
- </template>
- <script setup>
- import { ref, watch } from 'vue'
- import layoutPage from '@/layout'
- import Navbar from '@/components/Navbar'
- import { onShow } from '@dcloudio/uni-app'
- import { getAccessToken } from '@/utils/request'
- import { showAuthModal } from '@/hooks/useModal'
- import { getJobFairList, checkJobFairPermission } from '@/api/jobFair'
- import { timesTampChange } from '@/utils/date'
- import { userStore } from '@/store/user'
- import payPopup from '@/components/payPopup'
- const useUserStore = userStore()
- const items = ref([])
- const navbarHeight = ref(uni.getStorageSync('navbarHeight'))
- // 获得招聘会列表
- const getList = async () => {
- try {
- uni.showLoading({ title: '加载中' })
- const res = await getJobFairList()
- items.value = res?.data || []
- } finally {
- uni.hideLoading()
- }
- }
- watch(() => useUserStore.refreshToken, () => {
- if (!useUserStore.refreshToken) return items.value = []
- getList()
- })
- onShow(() => {
- // 设置自定义tabbar选中值
- const currentPage = getCurrentPages()[0] // 获取当前页面实例
- const currentTabBar = currentPage?.getTabBar?.()
- // 设置当前tab页的下标index
- currentTabBar?.setData({ selected: 3 })
- if (!getAccessToken()) return showAuthModal()
- getList()
- })
- //跳转招聘会详情
- const payRef = ref()
- const itemData = ref({})
- const handleToJobFairEnterprises = async (val) => {
- itemData.value = val
- if (!val?.id) {
- uni.showToast({ title: '资源获取失败,请稍后重试', icon: 'none' })
- }
- uni.showLoading({ title: '加载中' })
- try {
- const { data } = await checkJobFairPermission(val.id)
- uni.hideLoading()
- if (data) {
- uni.navigateTo({
- url: '/pagesB/jobFair/details?id=' + val.id
- })
- }
- } catch (error) {
- uni.hideLoading()
- // 权限被禁用
- if (error?.code === 1100056008) {
- uni.showToast({ title: error.msg, icon: 'none', duration: 2000 })
- return
- }
- // 没有权限参加招聘会,购买门票
- if (error?.code === 1100056005) {
- // 没有设置门票金额则提示无权限参加
- if (!val?.admissionPrice || val?.admissionPrice <= 0) {
- uni.showToast({ title: error.msg, icon: 'none', duration: 2000 })
- return
- }
- // 设置门票金额则提示购买门票
- uni.showToast({ title: '您暂时无法参加该招聘会,请先购买门票', icon: 'none', duration: 2000 })
- payRef.value && payRef.value.handleOpen({ spuId: val?.id || '', spuName: val?.title || '', price: val.admissionPrice, type: 5 })
- }
- }
- }
- // 支付成功
- const paySuccess = () => {
- uni.showToast({ title: '支付成功', icon: 'success', duration: 2000 })
- handleToJobFairEnterprises(itemData.value)
- }
- </script>
- <style scoped lang="scss">
- .list-item {
- margin: 0 30rpx 30rpx 30rpx;
- border-radius: 20rpx;
- padding: 30rpx;
- position: relative;
- background-color: #fbfbfb;
- box-shadow: 1px 2px 12px rgba(0, 0, 0, 0.17);
- view {
- font-size: 28rpx;
- color: #666;
- }
- }
- </style>
|