特易招,招聘小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

85 lines
1.6 KiB

<template>
<view class="page">
<navbar title="我的收藏"
bgColor="#3796F8"
leftClick
color="#fff"
@leftClick="$utils.navigateBack"/>
<userListSwipe
:options="options"
v-if="role"
@clickSwipeAction="clickSwipeAction"
:list="list"/>
<workListSwipe
:options="options"
v-else
keyName="employJob"
@clickSwipeAction="clickSwipeAction"
:list="list"/>
</view>
</template>
<script>
import workListSwipe from '@/components/list/workList/workListSwipe.vue'
import userListSwipe from '@/components/list/userList/userListSwipe.vue'
import mixinList from '@/mixins/list.js'
import { mapState } from 'vuex'
export default {
mixins : [mixinList],
components : {
workListSwipe,
userListSwipe,
},
data() {
return {
options: [
{
text: '删除',
style: {
backgroundColor: '#FA5A0A'
}
},
],
mixinsListApi : 'employeeQueryCollectionJobList',
list2 : [],
}
},
computed : {
...mapState([
'role',
]),
},
onLoad() {
this.mixinsListApi = (this.role ? 'boss' : 'employee') + 'QueryCollectionJobList'
},
methods: {
clickSwipeAction({e, item}){
console.log(e, item);
},
// getDataThen(list, total, result){
// let l = []
// result.forEach(res => {
// if(this.role){
// res.employResume.collection = res.employCollectionResume
// l.push(res.employResume)
// }else{
// res.employJob.collection = res.employCollectionJob
// l.push(res.employJob)
// }
// })
// this.list2 = l
// },
}
}
</script>
<style scoped lang="scss">
.page{
/deep/ .uv-swipe-action{
width: 100%;
}
}
</style>