fix
This commit is contained in:
@@ -1,6 +1,12 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="reser-content">
|
<AppLayout title="新职位推荐" :use-scroll-view="false" :show-bg-image="false">
|
||||||
<scroll-view :scroll-x="true" :show-scrollbar="false" class="tab-scroll">
|
<template #headerleft v-if="isMiniProgram">
|
||||||
|
<view class="btnback">
|
||||||
|
<image src="@/static/icon/back.png" @click="navBack"></image>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
<view class="reser-content">
|
||||||
|
<scroll-view :scroll-x="true" :show-scrollbar="false" class="tab-scroll">
|
||||||
<view class="content-top">
|
<view class="content-top">
|
||||||
<view
|
<view
|
||||||
class="top-item button-click"
|
class="top-item button-click"
|
||||||
@@ -19,26 +25,27 @@
|
|||||||
{{ item }}
|
{{ item }}
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</scroll-view>
|
|
||||||
<view class="main">
|
|
||||||
<scroll-view class="scroll-view" scroll-y @scrolltolower="scrollBottom">
|
|
||||||
<view class="list">
|
|
||||||
<renderJobs
|
|
||||||
v-if="pageState.list.length"
|
|
||||||
:longitude="longitudeVal"
|
|
||||||
:latitude="latitudeVal"
|
|
||||||
></renderJobs>
|
|
||||||
<empty v-else></empty>
|
|
||||||
</view>
|
|
||||||
</scroll-view>
|
</scroll-view>
|
||||||
|
<view class="main">
|
||||||
|
<scroll-view class="scroll-view" scroll-y @scrolltolower="scrollBottom">
|
||||||
|
<view class="list">
|
||||||
|
<renderJobs
|
||||||
|
v-if="pageState.list.length"
|
||||||
|
:longitude="longitudeVal"
|
||||||
|
:latitude="latitudeVal"
|
||||||
|
></renderJobs>
|
||||||
|
<empty v-else></empty>
|
||||||
|
</view>
|
||||||
|
</scroll-view>
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</AppLayout>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { reactive, inject, watch, ref, onMounted, onBeforeUnmount } from 'vue';
|
import { reactive, inject, watch, ref, onMounted, onBeforeUnmount } from 'vue';
|
||||||
import { onLoad, onShow } from '@dcloudio/uni-app';
|
import { onLoad, onShow } from '@dcloudio/uni-app';
|
||||||
const { $api, navTo, debounce, customSystem } = inject('globalFunction');
|
const { $api, navTo, debounce, customSystem ,navBack} = inject('globalFunction');
|
||||||
import { storeToRefs } from 'pinia';
|
import { storeToRefs } from 'pinia';
|
||||||
import useLocationStore from '@/stores/useLocationStore';
|
import useLocationStore from '@/stores/useLocationStore';
|
||||||
import useUserStore from '@/stores/useUserStore';
|
import useUserStore from '@/stores/useUserStore';
|
||||||
@@ -116,9 +123,17 @@ function getList(type = 'add', loading = true) {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="stylus" scoped>
|
<style lang="stylus" scoped>
|
||||||
|
.btnback{
|
||||||
|
width: 64rpx;
|
||||||
|
height: 64rpx;
|
||||||
|
}
|
||||||
|
image {
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
.reser-content{
|
.reser-content{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: calc(100vh - var(--window-top) - var(--status-bar-height) - var(--window-bottom));
|
height: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
.content-top{
|
.content-top{
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<AppLayout title="投递记录" :use-scroll-view="false" :show-bg-image="false">
|
<AppLayout title="我的预约" :use-scroll-view="false" :show-bg-image="false">
|
||||||
<template #headerleft v-if="isMiniProgram">
|
<template #headerleft v-if="isMiniProgram">
|
||||||
<view class="btnback">
|
<view class="btnback">
|
||||||
<image src="@/static/icon/back.png" @click="navBack"></image>
|
<image src="@/static/icon/back.png" @click="navBack"></image>
|
||||||
|
|||||||
@@ -201,7 +201,8 @@
|
|||||||
"path": "pages/newJobPosition/newJobPosition",
|
"path": "pages/newJobPosition/newJobPosition",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "新职位推荐",
|
"navigationBarTitleText": "新职位推荐",
|
||||||
"navigationBarBackgroundColor": "#FFFFFF"
|
"navigationBarBackgroundColor": "#FFFFFF",
|
||||||
|
"navigationStyle": "custom"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user