lifanagju_citu 1 месяц назад
Родитель
Сommit
226f353826
1 измененных файлов с 12 добавлено и 3 удалено
  1. 12 3
      pages/index/components/recommend.vue

+ 12 - 3
pages/index/components/recommend.vue

@@ -13,7 +13,10 @@
 		<scroll-view class="scrollBox" :scroll-y="true" @scrolltolower="loadingMore" style="position:relative;">
 			<TalentItem v-if="query.jobId && (items?.length || more !== 'loading')" :items="items" />
 			<uni-load-more v-if="query.jobId" :status="more" />
-			<view v-else class="noJobId">请先选择职位</view>
+			<view v-else class="noJobId">
+				<view>请先选择上方正在招聘的职位</view>
+				<view>我们将根据您选择的职位为您推荐合适的人才</view>
+			</view>
 		</scroll-view>
 	</view>
 </template>
@@ -80,9 +83,15 @@ const loadingMore = () => {
 
 <style scoped lang="scss">
 .noJobId {
-	text-align: center;
-	line-height: 60vh;
+	display: flex;
+	flex-direction: column;
+	margin-top: 26vh;
 	color: #666;
+	padding: 0 30rpx;
+	view {
+		text-align: center;
+		margin-top: 4px;
+	}
 }
 .box {
   height: 100vh;