|
|
@ -4,31 +4,47 @@ |
|
|
|
Tabs |
|
|
|
</niu-navbar> |
|
|
|
<niu-tabs :list="colorList" @change="change" v-model="active"></niu-tabs> |
|
|
|
<niu-tabs :list="colorList" @change="change" capsule v-model="active"></niu-tabs> |
|
|
|
<niu-tabs :list="fiveList" full @change="change" v-model="active"></niu-tabs> |
|
|
|
<niu-tabs :list="fiveList" :bar="false" full @change="change" v-model="active"> |
|
|
|
<template #default="{data, pData, index}"> |
|
|
|
2{{data.text}} |
|
|
|
<niu-tabs :list="colorList" @change="change" capsule v-model="active"></niu-tabs> |
|
|
|
<niu-tabs :list="colorList" :bar="false" @change="change" v-model="active"> |
|
|
|
<template #bar="{show, barLeft, barWidth, anim, props}"> |
|
|
|
<view v-if="show" :style="[ |
|
|
|
{ |
|
|
|
transition: anim?'left .3s ease':'', |
|
|
|
position: 'absolute', |
|
|
|
top: '50%', |
|
|
|
transform: 'translateY(-50%)', |
|
|
|
left: (barLeft+barWidth/4-9) + 'px', |
|
|
|
height: '55%', |
|
|
|
border: `1px solid ${props.activeColor}`, |
|
|
|
borderRadius: '100rpx', |
|
|
|
bottom: 0, |
|
|
|
width: (barWidth/2 + 18) + 'px', |
|
|
|
} |
|
|
|
]"></view> |
|
|
|
</template> |
|
|
|
<template #bar="{show, barLeft, barWidth}"> |
|
|
|
</niu-tabs> |
|
|
|
<niu-tabs :list="fiveList" full @change="change" v-model="active"></niu-tabs> |
|
|
|
<niu-tabs :list="colorList" :bar="false" @change="change" v-model="active"> |
|
|
|
<template #bar="{show, barLeft, barWidth, anim, props, item}"> |
|
|
|
<view v-if="show" :style="[ |
|
|
|
{ |
|
|
|
transition: 'left .3s ease', |
|
|
|
transition: anim?'left .3s ease':'', |
|
|
|
position: 'absolute', |
|
|
|
top: '50%', |
|
|
|
transform: 'translateY(-50%)', |
|
|
|
left: barLeft+barWidth/4 + 'px', |
|
|
|
left: (barLeft+barWidth/4-9) + 'px', |
|
|
|
height: '55%', |
|
|
|
border: '1px solid red', |
|
|
|
border: `1px solid ${item.color || props.activeColor}`, |
|
|
|
borderRadius: '100rpx', |
|
|
|
bottom: 0, |
|
|
|
width: barWidth/2 + 'px', |
|
|
|
width: (barWidth/2 + 18) + 'px', |
|
|
|
} |
|
|
|
]"></view> |
|
|
|
</template> |
|
|
|
</niu-tabs> |
|
|
|
<niu-tabs :list="fiveList" @change="change" v-model="active"></niu-tabs> |
|
|
|
<cell title="建筑面积(m²)" inputType="digit" oneline v-model="formData.buildingArea" placeholder="请输入"></cell> |
|
|
|
<button type="default" @click="cilck">点击</button> |
|
|
|
<!-- <cell title="建筑面积(m²)" inputType="digit" oneline v-model="formData.buildingArea" placeholder="请输入"></cell> --> |
|
|
|
</niu-page> |
|
|
|
</template> |
|
|
|
|
|
|
@ -43,7 +59,7 @@ |
|
|
|
formData:{ |
|
|
|
buildingArea: '' |
|
|
|
}, |
|
|
|
active: 0, |
|
|
|
active: 2, |
|
|
|
fiveList: [ |
|
|
|
{ text: "金吒" }, |
|
|
|
{ text: "木吒" }, |
|
|
@ -70,7 +86,21 @@ |
|
|
|
] |
|
|
|
}; |
|
|
|
},methods: { |
|
|
|
cilck(){ |
|
|
|
this.fiveList = [ |
|
|
|
{ text: "金吒" }, |
|
|
|
{ text: "木吒" }, |
|
|
|
{ text: "土吒" }, |
|
|
|
{ text: "土吒" }, |
|
|
|
{ text: "土吒" }, |
|
|
|
{ text: "土吒22222" }, |
|
|
|
{ text: "土吒" }, |
|
|
|
{ text: "土吒" }, |
|
|
|
{ text: "土吒" }, |
|
|
|
] |
|
|
|
}, |
|
|
|
change(index) { |
|
|
|
console.log(index); |
|
|
|
} |
|
|
|
}, |
|
|
|
} |
|
|
|