更新记录
2.1.0(2024-05-21)
下载此版本
修复时间不足2位补0
1.0.0(2024-05-16)
下载此版本
1.0.0
平台兼容性
App |
快应用 |
微信小程序 |
支付宝小程序 |
百度小程序 |
字节小程序 |
QQ小程序 |
HBuilderX 4.0,Android:5.0,iOS:不支持,HarmonyNext:不确定 |
× |
× |
× |
× |
× |
× |
钉钉小程序 |
快手小程序 |
飞书小程序 |
京东小程序 |
× |
× |
× |
× |
H5-Safari |
Android Browser |
微信浏览器(Android) |
QQ浏览器(Android) |
Chrome |
IE |
Edge |
Firefox |
PC-Safari |
× |
× |
× |
× |
× |
× |
× |
× |
× |
wb-picker
开发文档
UTS 语法
UTS API插件
UTS 组件插件
Hello UTS
使用方式 需要打包为自定义基座
时间范围选择器:MyCalendarPicker(options)
import { CalendarPickerOptions, MyCalendarPicker } from '@/uni_modules/wb-picker';
getPickerTime() {
let req = {
complete: (res) => {
console.log('res', res);
}
} as CalendarPickerOptions
MyCalendarPicker(req)
},
时间选择器(年月日时分秒):MyCalendarPicker(options)
import { MyDateimePicker } from '@/uni_modules/wb-picker';
getPickerTime() {
MyDateimePicker((res:string)=>{
console.log(res);
})
},
时间选择器(年月日):MyCalendarPicker(options)
import { MyDatePicker } from '@/uni_modules/wb-picker';;
getPickerTime() {
MyDatePicker((res:string)=>{
console.log(res);
})
},