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

55 lines
747 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 class="steam">
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. export default {
  21. data() {
  22. return {
  23. tabs: [
  24. {
  25. name: '全部合同'
  26. },
  27. {
  28. name: '待我签署'
  29. },
  30. {
  31. name: '他人签署'
  32. },
  33. {
  34. name: '签约完成'
  35. },
  36. ],
  37. type : 0,
  38. }
  39. },
  40. methods: {
  41. clickTabs({index}) {
  42. this.type = index
  43. },
  44. }
  45. }
  46. </script>
  47. <style scoped lang="scss">
  48. </style>