瑶都万能墙
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.
 
 
 

38 lines
560 B

<template>
<view>
<navbar title="找工作" leftClick @leftClick="$utils.navigateBack" />
<workList ref="workList"/>
</view>
</template>
<script>
import workList from '../components/list/workList/index.vue'
export default {
components : {
workList,
},
data() {
return {
}
},
onShow() {
this.$refs.workList.getData()
},
onPullDownRefresh() {
this.$refs.workList.getData()
},
onReachBottom() {
this.$refs.workList.loadMoreData()
},
methods: {
}
}
</script>
<style scoped lang="scss">
</style>