更新记录
1.0.1(2022-12-29)
下载此版本
添加滚动居中功能
1.0.0(2022-12-26)
下载此版本
1.0.0
平台兼容性
App |
快应用 |
微信小程序 |
支付宝小程序 |
百度小程序 |
字节小程序 |
QQ小程序 |
app-vue |
× |
× |
× |
× |
× |
× |
钉钉小程序 |
快手小程序 |
飞书小程序 |
京东小程序 |
× |
× |
× |
× |
H5-Safari |
Android Browser |
微信浏览器(Android) |
QQ浏览器(Android) |
Chrome |
IE |
Edge |
Firefox |
PC-Safari |
× |
√ |
√ |
√ |
√ |
√ |
√ |
√ |
× |
zySegmented 分段器
zySegmented 分段器属性
序号 |
参数 |
说明 |
类型 |
可选值 |
默认值 |
是否必须 |
1 |
values |
选项数组 |
Array |
--- |
--- |
√ |
2 |
current |
当前选中的tab索引值,从0计数 |
Number |
--- |
0 |
√ |
3 |
activeColor |
选中的标签背景色与边框颜色 |
String |
--- |
#409efe |
√ |
4 |
styleType |
样式类型 |
String |
text/button/inlineButton |
text |
√ |
zySegmented 分段器事件
序号 |
参数 |
说明 |
类型 |
传值 |
1 |
onClickItem |
用于点击分段器,切换选中状态 |
Function |
(current)=>{} |
zyTable 使用方式
<template>
<view class="container">
<!-- 基础模式 -->
<view class="text">基础模式</view>
<zy-segmented :values="items"></zy-segmented>
<!-- 按钮模式 -->
<view class="text">按钮模式</view>
<zy-segmented :values="items" styleType='button'></zy-segmented>
<!-- 内嵌按钮模式 -->
<view class="text">内嵌按钮模式</view>
<zy-segmented :values="items" styleType='inlineButton'></zy-segmented>
<!-- 更换主题 -->
<view class="text">更换主题</view>
<zy-segmented :values="items" activeColor='#ff0000'></zy-segmented>
<!-- 自定义初始位置 -->
<view class="text">自定义初始位置</view>
<zy-segmented :values="items" :current="current" @onClickItem="onClickItem"></zy-segmented>
</view>
</template>
<script>
import zySegmented from "@/uni_modules/zy-segmented-control/components/zy-segmented-control/zy-segmented-control.vue"
export default {
components: {
zySegmented
},
data() {
return {
items: ['分段器1', '分段器2', '分段器3'], //分段器名称
current: 1, //分段器默认初始值
}
},
methods: {
// 分段器选项发生改变时触发
onClickItem(e) {
this.current = e
},
}
}
</script>
<style lang="scss" scoped>
/* 白色 */
$zy-classic-white: #ffffff;
/* 灰色 */
$zy-classic-grey: #999999;
.container {
width: 100%;
background-color: $zy-classic-white;
}
.text {
padding: 20rpx;
font-size: 26rpx;
color: $zy-classic-grey;
}
</style>
如使用过程中有任何问题,或者您有一些好的建议,欢迎联系QQ:2360273432