组件库文档 tmui.design
时间周 Weekbar
显示一行以周为周期的日期选择工具栏,可用于表单录入、日期筛选等场景。
🌶️ 时间周 Weekbar 示例
查看模拟效果+
示例模板
vue
<template>
<tm-app>
<tm-sheet>
<tm-text :font-size="24" _class="text-weight-b" label="基础示例,更多见文档"></tm-text>
</tm-sheet>
<tm-weekbar></tm-weekbar>
<tm-weekbar :followTheme="false" itemSelectedBgColor="#ffce61" activeColor="black" color="red"></tm-weekbar>
<tm-weekbar :followTheme="false" itemSelectedBgColor="black" activeColor="white" color="yellow" linear="bottom"></tm-weekbar>
<tm-weekbar itemSelectedBgColor="rgb(1, 99, 255)" activeColor="white" model="custom" :dayNumber="7"></tm-weekbar>
</tm-app>
</template>
<script lang="ts" setup>
import { ref, computed } from 'vue'
import { onShow, onLoad } from '@dcloudio/uni-app'
import tmApp from '@/tmui/components/tm-app/tm-app.vue'
import tmSheet from '@/tmui/components/tm-sheet/tm-sheet.vue'
import tmText from '@/tmui/components/tm-text/tm-text.vue'
import tmWeekbar from '@/tmui/components/tm-weekbar/tm-weekbar.vue'
import tmDivider from '@/tmui/components/tm-divider/tm-divider.vue'
const dateStr = ref('')
const showdate = ref(false)
</script>
🌶️ 兼容性
APP-VUE | APP-NVUE | 小程序 | WEB/H5 | VUE3/TS |
---|---|---|---|---|
✔️ | ✔️ | ✔️ | ✔️ | ✔️ |
🌱 参数
本组件含有公共属性 公共属性
参数名 | 类型 | 默认值 | 描述 |
---|---|---|---|
followTheme | Boolean | true | 是否跟随主题 |
transprent | Boolean | false | 是否透明效果 |
round | Number | 0 | 圆角 ,0-25 |
shadow | Number | 3 | 阴影 ,0-25 |
defaultValue | String,Date,Number | '' | 默认日期值,留空为当前日期 |
modelValue | String,Date,Number | '' | 选中日期值 |
color | String | white | 主题颜色 |
activeColor | String | primary | 选中颜色 |
itemSelectedBgColor | String | '' | 选中时背景色(只能是颜色值) |
🌹 事件
事件名 | 参数 | 返回数据 | 描述 |
---|---|---|---|
change | date | YYYY-MM-DD | 选中日期 |
update:modelValue | date | YYYY-MM-DD | 选中日期(更新v-model值) |
🥗 ref方法
无
💏 文档贡献
此页文档由Kyour贡献,如果对该框架感兴趣的可以参与我们一同进步!