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

57 lines
941 B

11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
  1. <template>
  2. <!-- 联系记录 -->
  3. <view class="page">
  4. <navbar title="联系记录"
  5. bgColor="#3796F8"
  6. leftClick
  7. color="#fff"
  8. @leftClick="$utils.navigateBack"/>
  9. <view class="">
  10. <uv-tabs :list="tabs"
  11. lineColor="#3796F8"
  12. lineHeight="8rpx"
  13. lineWidth="50rpx"
  14. :scrollable="false"
  15. @click="clickTabs"></uv-tabs>
  16. </view>
  17. <workList ref="workList" v-if="type == 0"/>
  18. <bossList ref="bossList" v-if="type == 1"/>
  19. </view>
  20. </template>
  21. <script>
  22. import workList from '@/components/list/workList/index.vue'
  23. import bossList from '@/components/list/bossList/index.vue'
  24. export default {
  25. components : {
  26. bossList,
  27. workList,
  28. },
  29. data() {
  30. return {
  31. tabs: [
  32. {
  33. name: '我看过谁'
  34. },
  35. {
  36. name: '谁看过我'
  37. },
  38. ],
  39. type : 0,
  40. }
  41. },
  42. methods: {
  43. clickTabs({index}) {
  44. this.type = index
  45. },
  46. }
  47. }
  48. </script>
  49. <style scoped lang="scss">
  50. </style>