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

<template>
<!-- 电子合同 -->
<view>
<navbar title="电子合同"
leftClick
@leftClick="$utils.navigateBack"/>
<view class="">
<uv-tabs :list="tabs"
lineColor="#3796F8"
lineHeight="8rpx"
lineWidth="50rpx"
:scrollable="false"
@click="clickTabs"></uv-tabs>
</view>
</view>
</template>
<script>
export default {
data() {
return {
tabs: [
{
name: '全部合同'
},
{
name: '待我签署'
},
{
name: '待我签署'
},
{
name: '待我签署'
},
],
type : 0,
}
},
methods: {
clickTabs({index}) {
this.type = index
},
}
}
</script>
<style scoped lang="scss">
</style>