|
@@ -12,13 +12,13 @@
|
|
|
<!-- 搜索条 -->
|
|
|
<view style="position: relative;">
|
|
|
<uni-search-bar
|
|
|
- v-model="query.content"
|
|
|
+ v-model="query.keyword"
|
|
|
placeholder="输入关键字"
|
|
|
cancelButton="none"
|
|
|
:focus="false"
|
|
|
bgColor="#fff"
|
|
|
@confirm="onSearch($event.value)"
|
|
|
- @clear="query.content = ''; onSearch()"
|
|
|
+ @clear="query.keyword = ''; onSearch()"
|
|
|
>
|
|
|
</uni-search-bar>
|
|
|
<button class="search-btn" @tap.stop="onSearch">搜索</button>
|
|
@@ -32,13 +32,13 @@
|
|
|
<view class="stick ss-p-t-30" :style="`background-color: ${backgroundColor}`">
|
|
|
<view style="position: relative;">
|
|
|
<uni-search-bar
|
|
|
- v-model="query.content"
|
|
|
+ v-model="query.keyword"
|
|
|
placeholder="输入关键字"
|
|
|
cancelButton="none"
|
|
|
:focus="false"
|
|
|
bgColor="#fff"
|
|
|
@confirm="onSearch($event.value)"
|
|
|
- @clear="query.content = ''; onSearch()"
|
|
|
+ @clear="query.keyword = ''; onSearch()"
|
|
|
>
|
|
|
</uni-search-bar>
|
|
|
<button class="search-btn" @tap.stop="onSearch">搜索</button>
|
|
@@ -98,7 +98,7 @@ const listData = ref([])
|
|
|
const query = reactive({
|
|
|
pageSize: 20,
|
|
|
pageNo: 1,
|
|
|
- content: '',
|
|
|
+ keyword: '',
|
|
|
jobFairId: undefined,
|
|
|
})
|
|
|
|
|
@@ -150,7 +150,7 @@ const getJobFairDetail = async () => {
|
|
|
// 类型 -1为不传tag参数
|
|
|
tabList.value = data?.tag || []
|
|
|
handClickTab(tabList.value?.length ? 0 : -1)
|
|
|
-
|
|
|
+
|
|
|
// 轮播图
|
|
|
if (data?.headImg?.length) {
|
|
|
swiperAdList.value = data.headImg
|