更新记录
1.0.0(2024-05-31)
下载此版本
初始化
平台兼容性
App |
快应用 |
微信小程序 |
支付宝小程序 |
百度小程序 |
字节小程序 |
QQ小程序 |
app-vue |
× |
√ |
× |
× |
× |
× |
钉钉小程序 |
快手小程序 |
飞书小程序 |
京东小程序 |
× |
× |
× |
× |
H5-Safari |
Android Browser |
微信浏览器(Android) |
QQ浏览器(Android) |
Chrome |
IE |
Edge |
Firefox |
PC-Safari |
√ |
√ |
√ |
√ |
√ |
× |
√ |
√ |
√ |
注意事项
注意事项
本组件使用了uni-icons
, 请在使用前先引用uni-icons
组件。本组件使用了iconfont
图标, 如若更换图标,请自行上传iconfont.css进行更换。
安装方式
本组件符合easycom规范,HBuilderX 2.5.5
起,只需将本组件导入项目,在页面template
中即可直接使用,无需在页面中import
和注册components
。
基本用法
在 template
中使用组件
<spring-calendar @change="handleChange"></spring-calendar>
更换主题颜色
<spring-calendar color="#981820" @change="handleChange"></spring-calendar>
单独设置模块颜色
<spring-calendar backTodayColor="#981820" dayColor="#981820" weekendColor="#981820"
@change="handleChange"></spring-calendar>
英文
<spring-calendar :isEnlish="true" @change="handleChange"></spring-calendar>
export default {
data() {
return {
}
},
onLoad() {
uni.setNavigationBarTitle({
title: '基本使用'
})
},
methods: {
handleChange(e) {
console.log(e);
}
}
}
API
Props
属性名 |
类型 |
默认值 |
说明 |
color |
String |
- |
主题颜色 |
radius |
String |
16rpx |
组件圆角 |
bgColor |
String |
#ffffff |
组件背景色 |
iconBgColor |
String |
#F5F7FB |
月份切换背景色 |
iconColor |
String |
- |
月份切换图标颜色 |
yearMonthColor |
String |
- |
年月文字颜色,如未设置,跟随主题color颜色 |
backTodayColor |
String |
- |
回到今天文字颜色, 如未设置,跟随主题color颜色 |
weekendColor |
String |
- |
周,文字颜色, 如未设置,跟随主题color颜色 |
dayColor |
String |
- |
天,文字颜色, 如未设置,跟随主题color颜色 |
isEnlish |
Boolean |
false |
是否英文 |
Events
事件名 |
说明 |
返回值 |
change |
点击事件 |
选择某天,返回值示例:{date: 11, day: 6, fullDate: '2024-05-31', 'month': 5, selected: true, year: 2024}。 其中date为天,day为周几 |