更新记录
1.0.1(2024-08-11)
下载此版本
平台兼容性
App |
快应用 |
微信小程序 |
支付宝小程序 |
百度小程序 |
字节小程序 |
QQ小程序 |
HBuilderX 3.1.0 app-vue |
× |
√ |
√ |
√ |
√ |
√ |
钉钉小程序 |
快手小程序 |
飞书小程序 |
京东小程序 |
× |
× |
× |
× |
H5-Safari |
Android Browser |
微信浏览器(Android) |
QQ浏览器(Android) |
Chrome |
IE |
Edge |
Firefox |
PC-Safari |
√ |
√ |
√ |
√ |
√ |
√ |
√ |
√ |
√ |
hj-select
下拉框,单选,多选,搜索,重置
<view style="padding: 30px;">
<view class="title">
单选
</view>
<hj-select :list="options1" value-key="id" v-model="checkList1" @search="searchEvent" @change="selectChange"
@confirm="confirmSearch" @reset="resetSearch1">
</hj-select>
<view class="title">
多选
</view>
<hj-select multiple :list="options" value-key="id" v-model="checkList" @search="searchEvent"
@change="selectChange" @confirm="confirmSearch" @reset="resetSearch">
</hj-select>
<view class="title">
插槽
</view>
<hj-select showCheckIcon showArrowRight :list="options2" value-key="id" v-model="checkList2"
@search="searchEvent" @change="selectChange" @confirm="confirmSearch" @reset="resetSearch2">
<template v-slot:arrowRight>
<view style="font-size: 14px;margin: 0 10px;">
点击
</view>
</template>
<template v-slot:checkIcon>
<view style="width: 10px;height: 10px;border-radius: 50%;background-color: blue;"></view>
</template>
</hj-select>
</view>
export default {
data() {
return {
options: [{
id: 1,
label: "测试1",
}, {
id: 2,
label: "测试2",
}, {
id: 3,
label: "测试3",
}, {
id: 6,
label: "测试6",
}, {
id: 7,
label: "测试7",
}, {
id: 8,
label: "测试8",
}],
options1: [{
id: 1,
label: "测试1",
}, {
id: 2,
label: "测试2",
}, {
id: 3,
label: "测试3",
}],
options2: [{
id: 6,
label: "测试6",
}, {
id: 7,
label: "测试7",
}, {
id: 8,
label: "测试8",
}],
checkList1: 1,
checkList: [],
checkList2: 6,
}
},
onLoad() {
},
methods: {
selectChange(evt) {
// console.log("selectChange",evt);
},
confirmSearch(evt) {
// console.log("confirmSearch",evt);
},
resetSearch() {
this.checkList = []
},
resetSearch1() {
this.checkList1 = []
},
resetSearch2() {
this.checkList2 = []
},
searchEvent(evt) {
// console.log("searchEvent",evt);
},
}
}
Props
属性名 |
类型 |
默认值 |
说明 |
是否必填 |
value |
Number, String, Array |
|
初始绑定值 |
是 |
list |
Array |
[] |
数组列表 |
是 |
valueKey |
String |
'value' |
指定list中下拉框绑定值 |
否 |
labelKey |
String |
'label' |
指定list中下拉框显示内容 |
否 |
placeholder |
String |
[] |
输入框为空时占位符 |
否 |
multiple |
Boolean |
false |
是否多选 |
否 |
disabled |
Boolean |
false |
组件是否禁用 |
否 |
disabledStyle |
Object |
{} |
组件禁用样式 |
否 |
showArrowRight |
Boolean |
false |
右箭头占位是否显示,插槽名:arrowRight |
否 |
title |
String |
'选择商品' |
弹窗标题内容 |
否 |
titleStyle |
Object |
{} |
弹窗标题样式 |
否 |
activeStyle |
Object |
{} |
弹窗列表选项激活样式 |
否 |
showSearchBtn |
Boolean |
false |
弹框确认按钮是否显示 |
否 |
searchText |
String |
'搜索' |
弹框确认按钮文字内容 |
否 |
showCheckIcon |
Boolean |
false |
弹框选中占位符,插槽名:checkIcon |
否 |
resetText |
String |
'重置' |
弹框重置按钮文字内容 |
否 |
confirmText |
String |
'确定' |
弹框确定按钮文字内容 |
否 |
list 数组对象属性
属性名 |
类型 |
默认值 |
说明 |
value |
String,Number |
|
绑定值,修改默认属性名:valueKey |
label |
String,Number |
|
绑定内容,修改默认属性名:labelKey |
点击事件
事件名称 |
返回参数 |
说明 |
@search |
返回输入内容 |
弹窗搜索按钮事件 |
@change |
返回数组对象 |
弹窗列表选项点击按钮事件 |
@confirm |
返回绑定内容 |
弹窗确认按钮事件 |
@reset |
无 |
弹窗重置按钮事件 |