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

29 lines
387 B

7 months ago
  1. <template>
  2. <view>
  3. <navbar title="招聘列表" leftClick @leftClick="$utils.navigateBack" />
  4. <workList ref="workList"/>
  5. </view>
  6. </template>
  7. <script>
  8. import workList from '../components/list/workList/index.vue'
  9. export default {
  10. components : {
  11. workList,
  12. },
  13. data() {
  14. return {
  15. }
  16. },
  17. methods: {
  18. }
  19. }
  20. </script>
  21. <style scoped lang="scss">
  22. </style>