特易招,招聘小程序
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.
 
 
 

51 lines
812 B

<template>
<view class="page">
<navbar title="我的收藏"
bgColor="#3796F8"
leftClick
color="#fff"
@leftClick="$utils.navigateBack"/>
<workListSwipe
:options="options"
@clickSwipeAction="clickSwipeAction"
:list="10"/>
</view>
</template>
<script>
import workListSwipe from '@/components/list/workList/workListSwipe.vue'
import mixinList from '@/mixins/list.js'
export default {
mixins : [mixinList],
components : {
workListSwipe
},
data() {
return {
options: [
{
text: '删除',
style: {
backgroundColor: '#FA5A0A'
}
},
],
}
},
methods: {
clickSwipeAction({e, item}){
console.log(e, item);
},
}
}
</script>
<style scoped lang="scss">
.page{
/deep/ .uv-swipe-action{
width: 100%;
}
}
</style>