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

53 lines
713 B

  1. <template>
  2. <!-- 电子合同 -->
  3. <view>
  4. <navbar title="电子合同"
  5. leftClick
  6. @leftClick="$utils.navigateBack"/>
  7. <view class="">
  8. <uv-tabs :list="tabs"
  9. lineColor="#3796F8"
  10. lineHeight="8rpx"
  11. lineWidth="50rpx"
  12. :scrollable="false"
  13. @click="clickTabs"></uv-tabs>
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. data() {
  20. return {
  21. tabs: [
  22. {
  23. name: '全部合同'
  24. },
  25. {
  26. name: '待我签署'
  27. },
  28. {
  29. name: '待我签署'
  30. },
  31. {
  32. name: '待我签署'
  33. },
  34. ],
  35. type : 0,
  36. }
  37. },
  38. methods: {
  39. clickTabs({index}) {
  40. this.type = index
  41. },
  42. }
  43. }
  44. </script>
  45. <style scoped lang="scss">
  46. </style>