123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256 |
- <template>
- <layout-page @loginSucceeded="init">
- <view class="box defaultBgc">
- <uni-segmented-control :current="tab" :values="controlList" @clickItem="tabChange" styleType="text" activeColor="#00B760" style="background-color: #fff"></uni-segmented-control>
- <scroll-view class="scrollBox" :scroll-y="true" @scrolltolower="loadingMore" style="position:relative;">
- <view>
- <!-- -->
- <view class="white-bgc stick ss-p-t-20" style="border-radius: 5px;">
- <!-- <view class="defaultBgc d-flex ss-m-x-20">
- <view class="stickBtn" :style="`color: ${query.status==='99' ? '#00B760' :''}`" @tap=""><uni-icons v-if="query.status==='99'" class="ss-m-t-6 ss-m-r-4" color="#00B760" type="checkmarkempty" size="14"/>待发布(<text class="ss-m-x-2">{{ unpublishedCount }}</text>)</view>
- <view class="stickBtn newPositionBtn" @tap="">发布新职位</view>
- </view> -->
- <!-- 搜索条 -->
- <uni-search-bar
- v-model="query.name"
- radius="5"
- placeholder="输入关键字"
- cancelButton="none"
- :focus="false"
- @confirm="onSearch"
- ></uni-search-bar>
- </view>
- <view v-if="!positionListData?.length && more !== 'loading'" class="d-flex flex-column align-center justify-center ss-m-t-30">
- <view class="nodata-img-parent">
- <image src="https://minio.citupro.com/dev/static/nodata.png" mode="widthFix" style="width: 100vw;height: 100vh;"></image>
- </view>
- <view class="color-999">暂无职位</view>
- <view class="f-horizon-center">
- <button type="primary" size="default" class="ss-m-t-50" style="width: 60vw;" @click="handleClickAdd">发布新职位</button>
- </view>
- </view>
- <view v-else>
- <PositionList v-if="positionListData?.length" :tab="tab" :payable="true" :list="positionListData" :noMore="false" @refresh="refresh"></PositionList>
- <uni-load-more :status="more" />
- <view style="padding-bottom: 20vh;"></view>
- <view class="addBtn" @tap="handleClickAdd">
- <view class="addBox">
- <view class="icon">+</view>
- <view class="text">发布新职位</view>
- </view>
- </view>
- </view>
- </view>
- </scroll-view>
- </view>
- </layout-page>
- </template>
- <script setup>
- import { ref } from 'vue'
- import layoutPage from '@/layout'
- import PositionList from '@/components/PositionList'
- import { dealDictArrayData } from '@/utils/position'
- import { getJobAdvertisedList } from '@/api/new/position'
- import { onShow } from '@dcloudio/uni-app'
- import { getAccessToken } from '@/utils/request'
- import { showAuthModal } from '@/hooks/useModal'
- const tab = ref(2)
- const tabList = [
- { label: '待发布', value: 0, status: 99 },
- { label: '招聘中', value: 1, status: 0 },
- { label: '已关闭', value: 2, status: 1 },
- { label: '到期职位', value: 3 }
- ]
- const controlList = tabList.map(e => e.label)
- const tabChange = (e) => {
- tab.value = e.currentIndex
- query.value.pageNo = 1
- getData()
- }
- const total = ref(0)
- const positionListData = ref([])
- const query = ref({
- pageSize: 5,
- pageNo: 1,
- hire: false,
- name: '',
- })
- const more = ref('more')
- const getData = async () => {
- if (query.value.pageNo < 1) return
- if (query.value.pageNo === 1) positionListData.value = []
- try {
- more.value = 'loading'
- if (tab.value !== 3) {
- query.value.status = tabList[tab.value].status
- query.value.hasExpiredData = false
- } else {
- query.value.hasExpiredData = true
- delete query.value.status
- }
- const res = await getJobAdvertisedList(query.value)
- const list = res?.data?.list?.length ? res.data.list : []
- total.value = res.data.total-0
- if (!list?.length) {
- more.value = 'noMore'
- return
- }
- positionListData.value.push(...dealDictArrayData([], list))
- // console.log('positionListData:', positionListData.value)
- more.value = 'more'
- if (positionListData.value.length === total.value) {
- more.value = 'noMore'
- return
- }
- } catch (error) {
- query.value.pageNo--
- more.value = 'more'
- }
- }
- // 设置自定义tabbar选中值
- onShow(() => {
- console.log('onShow:', 789)
- const currentPage = getCurrentPages()[0] // 获取当前页面实例
- const currentTabBar = currentPage?.getTabBar?.()
- // 设置当前tab页的下标index
- currentTabBar?.setData({ selected: 1 })
- init()
- })
- const init = () => {
- console.log('123456:', 'init')
- query.value.pageNo = 1
- getData()
- }
- const onSearch = () => {
- query.value.pageNo = 1
- getData()
- }
- // 加载更多
- const loadingMore = () => {
- if (more.value === 'noMore') return
- more.value = 'loading'
- query.value.pageNo++
- getData()
- }
- const refresh = (reset = false) => {
- if (reset) query.value.pageNo = 1
- getData()
- }
- const handleClickAdd = () => {
- if (!getAccessToken()) {
- uni.showToast({
- title: '请先登录',
- icon: 'none'
- })
- showAuthModal()
- return
- }
- uni.navigateTo({ url: '/pagesB/positionAdd/index' })
- }
- </script>
- <style scoped lang="scss">
- .stick {
- z-index: 1;
- position: sticky;
- top: 0;
- }
- .stickFilter {
- z-index: 1;
- position: sticky;
- box-shadow: 0px 10rpx 12rpx 0px rgba(195, 195, 195, .25);
- top: 110rpx;
- }
- .px-0 { padding-left: 0 !important; padding-right: 0 !important; }
- .pb-10 {
- padding-bottom: 10px;
- }
- .pb-20 { padding-bottom: 20px; }
- .px-5 { padding-left: 5px; padding-right: 5px; }
- .px-10 { padding-left: 10px; padding-right: 10px; }
- .mx-10 { margin-left: 10px; margin-right: 10px }
- .mx-20 { margin-left: 20px; margin-right: 20px; }
- .mb-10 { margin-bottom: 10px; }
- .box {
- height: 100vh;
- overflow: hidden;
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- }
- .scrollBox{
- flex: 1;
- height: 0 !important;
- padding-bottom: 24rpx;
- box-sizing: border-box;
- }
- .stickBtn{
- text-align: center;
- width: calc(50% - 2px);
- height: 24px;
- line-height: 24px;
- margin: 8px 0;
- color: grey;
- font-size: 13px;
- }
- .newPositionBtn{
- color: #00B760;
- border-left: 1px solid #c3c3c3;
- }
- .actColor{
- color: #00B760;
- }
- .addBtn{
- position: fixed;
- margin-bottom: 20px;
- right: 35rpx;
- // left: 50%;
- // transform: translateX(-50%);
- bottom: calc(env(safe-area-inset-bottom) + 60px);
- width: 70px;
- .addBox {
- position: relative;
- .icon {
- font-size: 42px;
- color: #fff;
- background-color: #00B760;
- width: 50px;
- height: 50px;
- line-height: 46px;
- text-align: center;
- border-radius: 50%;
- margin: 0 auto;
- box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
- }
- .text {
- position: absolute;
- top: 42px;
- font-size: 12px;
- color: #00B760;
- background-color: #ffffffc9;
- text-align: center;
- padding: 2px 4px;
- margin: 0 auto;
- border-radius: 6px;
- box-shadow: 0 36px 6px rgba(0, 0, 0, 0.1);
- }
- }
- }
- </style>
|