更新记录
1.0.5(2024-06-04)
下载此版本
1.0.5
1.0.4(2024-05-25)
下载此版本
更新插件文档
1.0.3(2024-05-25)
下载此版本
1.0.3
查看更多
平台兼容性
App |
快应用 |
微信小程序 |
支付宝小程序 |
百度小程序 |
字节小程序 |
QQ小程序 |
app-vue |
× |
√ |
× |
× |
× |
× |
钉钉小程序 |
快手小程序 |
飞书小程序 |
京东小程序 |
× |
× |
× |
× |
H5-Safari |
Android Browser |
微信浏览器(Android) |
QQ浏览器(Android) |
Chrome |
IE |
Edge |
Firefox |
PC-Safari |
√ |
√ |
√ |
√ |
√ |
√ |
√ |
√ |
√ |
qying-picker
使用方式一, 单列选择器
import QyingPicker from "@/uni_modules/qying-picker/components/qying-picker/qying-picker.vue"
<QyingPicker :dataOptions="options" v-model="checkVal" ref="ProxyArea" />
components: {
QyingPicker
},
data(){
checkVal: "",
options: [
{id: 1001,label: "餐饮类"},
{id: 1002,label: "零售类"},
{id: 1003,label: "休闲娱乐类"},
{id: 1004,label: "手机数码类"},
{id: 1005,label: "服饰类"},
]
},
methods: {
openPicker(){
this.$refs.ProxyArea.open()
}
}
使用方式二, 级联选择器
<QyingPicker :dataOptions="options" v-model="checkVal" valueKey="value" ref="ProxyArea" />
components: {
QyingPicker
},
data(){
checkVal: "",
options: [
{
label: '江苏',
value: '江苏',
children: [
{
label: '苏州',
value: '苏州',
children: [
{
label: "姑苏",
value: "姑苏",
},
{
label: "相城",
value: "相城",
},
{
label: "吴中",
value: "吴中",
}
]
}
]
},
{
label: '广东',
value: '广东',
children: [{
label: '广州',
value: '广州',
children: [{
label: '天河',
value: '天河'
},
{
label: '番禺',
value: '番禺'
},
],
},
{
label: '深圳',
value: '深圳',
children: [{
label: '南山',
value: '南山'
},
{
label: '福田',
value: '福田'
},
],
},
],
},
{
label: '广西',
value: '广西',
children: [{
label: '南宁',
value: '南宁',
children: [{
label: '青秀',
value: '青秀'
},
{
label: '西乡塘',
value: '西乡塘'
},
],
}, ],
},
],
},
methods: {
openPicker(){
this.$refs.ProxyArea.open()
}
}
参数
参数 |
说明 |
类型 |
默认值 |
title |
选择器的标题 |
String |
请选择 |
labelKey |
picker-item显示的字段 |
String |
lable |
valueKey |
数据绑定的key |
String |
id |
childrenKey |
级联数据,下级数据的key |
String |
children |
delimiter |
级联选择时数据的分隔符 |
String |
- |
dataOptions |
picker数据 |
string |
- |
cancelStyle |
取消按钮样式 |
Object |
{} |
submitStyle |
确认按钮样式 |
Object |
{} |
事件
事件名 |
说明 |
返回值 |
confirm |
返回选择的原始数据 |
Array |