|
@@ -49,7 +49,7 @@
|
|
:display-multiple-items="5"
|
|
:display-multiple-items="5"
|
|
:autoplay="true"
|
|
:autoplay="true"
|
|
>
|
|
>
|
|
- <swiper-item v-for="(recommendItem, index) in recommendList" :key="recommendItem.id">
|
|
|
|
|
|
+ <swiper-item v-for="(recommendItem, index) in recommendList" :key="'recommendList' + index">
|
|
<view class="swiper-item" @tap="tapRecommendSwiperItem(recommendItem)" :data-id="recommendItem.id" :data-index="index">
|
|
<view class="swiper-item" @tap="tapRecommendSwiperItem(recommendItem)" :data-id="recommendItem.id" :data-index="index">
|
|
<image class="img" :src="recommendItem.logoUrl" mode="aspectFill"></image>
|
|
<image class="img" :src="recommendItem.logoUrl" mode="aspectFill"></image>
|
|
<view class="subject">{{recommendItem.companyName}}</view>
|
|
<view class="subject">{{recommendItem.companyName}}</view>
|
|
@@ -78,7 +78,7 @@
|
|
|
|
|
|
<!-- ###################################-- 招聘就业岗位 -- ################################### -->
|
|
<!-- ###################################-- 招聘就业岗位 -- ################################### -->
|
|
<view class="recruitment-dataarea">
|
|
<view class="recruitment-dataarea">
|
|
- <view class="recruitment-dataarea-card" v-for="(item,index) in recruitmentJobList" :key="index" @tap="tapDataAreaCard(item)">
|
|
|
|
|
|
+ <view class="recruitment-dataarea-card" v-for="(item,index) in recruitmentJobList" :key="'recruitmentJobList' + index" @tap="tapDataAreaCard(item)">
|
|
<view class="dataarea-card-left">
|
|
<view class="dataarea-card-left">
|
|
<image :src="item.companyLogoUrl" mode="aspectFill" class="image"></image>
|
|
<image :src="item.companyLogoUrl" mode="aspectFill" class="image"></image>
|
|
</view>
|
|
</view>
|
|
@@ -89,7 +89,7 @@
|
|
<view >{{item.companyName}}</view>
|
|
<view >{{item.companyName}}</view>
|
|
</view>
|
|
</view>
|
|
<view class="dataarea-content-right">
|
|
<view class="dataarea-content-right">
|
|
- <view>{{item.salary}}</view>
|
|
|
|
|
|
+ <view>{{item.lowestSalary}}k~{{item.highestSalary}}k</view>
|
|
<view> </view>
|
|
<view> </view>
|
|
<view>{{item.createTime}}</view>
|
|
<view>{{item.createTime}}</view>
|
|
</view>
|
|
</view>
|
|
@@ -244,7 +244,6 @@
|
|
name: "代码固定测试999999"
|
|
name: "代码固定测试999999"
|
|
}
|
|
}
|
|
);
|
|
);
|
|
- console.log('bannerList',JSON.parse(JSON.stringify(res)));
|
|
|
|
})
|
|
})
|
|
},
|
|
},
|
|
// 轮播图点击
|
|
// 轮播图点击
|
|
@@ -353,11 +352,10 @@
|
|
});
|
|
});
|
|
},
|
|
},
|
|
tapDataAreaCard(param){
|
|
tapDataAreaCard(param){
|
|
- console.log("tapDataAreaCard: ",param);
|
|
|
|
this.$u.route({
|
|
this.$u.route({
|
|
url: 'pages/jobDetails/jobDetails',
|
|
url: 'pages/jobDetails/jobDetails',
|
|
params: {
|
|
params: {
|
|
- item: JSON.stringify(param)
|
|
|
|
|
|
+ id: param?.id
|
|
}
|
|
}
|
|
});
|
|
});
|
|
}
|
|
}
|