|
|
- <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>
|