|
@@ -18,7 +18,7 @@
|
|
|
|
|
|
<scroll-view class="scrollBox" :scroll-y="true" @scrolltolower="loadingMore" style="position:relative;">
|
|
|
<TalentItem v-if="items?.length" :items="items" :showLastWorkExp="false" />
|
|
|
- <uni-load-more v-if="items.length" :status="more" />
|
|
|
+ <uni-load-more v-if="more" :status="more" />
|
|
|
<view v-else class="noJobId">请选择条件搜索人才</view>
|
|
|
</scroll-view>
|
|
|
</view>
|
|
@@ -46,7 +46,7 @@ const params = ref({
|
|
|
eduType: ''
|
|
|
})
|
|
|
const items = ref([])
|
|
|
-const more = ref('more')
|
|
|
+const more = ref('') // 没有筛选条件默认为空,展示提示语。
|
|
|
const total = ref(0)
|
|
|
const filterList = ref([
|
|
|
{ label: '职位', dictType: 'positionTreeData',key: 'positionId', map: { text: 'nameCn', value: 'id' } },
|
|
@@ -108,7 +108,7 @@ const handleSearch = (key, value) => {
|
|
|
icon: 'none',
|
|
|
duration: 2000
|
|
|
})
|
|
|
- more.value = 'noMore'
|
|
|
+ more.value = ''
|
|
|
items.value = []
|
|
|
total.value = 0
|
|
|
return
|