fix
This commit is contained in:
@@ -1,8 +1,15 @@
|
|||||||
<template>
|
<template>
|
||||||
|
<AppLayout title="投递记录" :use-scroll-view="false" :show-bg-image="false">
|
||||||
|
<template #headerleft v-if="isMiniProgram">
|
||||||
|
<view class="btnback">
|
||||||
|
<image src="@/static/icon/back.png" @click="navBack"></image>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
<view class="collection-content">
|
<view class="collection-content">
|
||||||
<renderJobs :list="list" :longitude="longitudeVal" :latitude="latitudeVal"></renderJobs>
|
<renderJobs :list="list" :longitude="longitudeVal" :latitude="latitudeVal"></renderJobs>
|
||||||
<loadmore ref="loadmoreRef"></loadmore>
|
<loadmore ref="loadmoreRef"></loadmore>
|
||||||
</view>
|
</view>
|
||||||
|
</AppLayout>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
@@ -64,10 +71,17 @@ onReachBottom(() => {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="stylus" scoped>
|
<style lang="stylus" scoped>
|
||||||
|
.btnback{
|
||||||
|
width: 64rpx;
|
||||||
|
height: 64rpx;
|
||||||
|
}
|
||||||
|
image {
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
.collection-content{
|
.collection-content{
|
||||||
padding: 1rpx 28rpx 20rpx 28rpx;
|
padding: 1rpx 28rpx 20rpx 28rpx;
|
||||||
background: #F4F4F4;
|
background: #F4F4F4;
|
||||||
height: 100%
|
height: 100%;
|
||||||
min-height: calc(100vh - var(--window-top) - var(--status-bar-height) - var(--window-bottom));
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -224,7 +224,8 @@
|
|||||||
"path": "pages/moreJobs/moreJobs",
|
"path": "pages/moreJobs/moreJobs",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "更多岗位",
|
"navigationBarTitleText": "更多岗位",
|
||||||
"navigationBarBackgroundColor": "#FFFFFF"
|
"navigationBarBackgroundColor": "#FFFFFF",
|
||||||
|
"navigationStyle": "custom"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user