当前位置:网站首页>VUX Datetime 组件compute-days-function动态设置日期列表
VUX Datetime 组件compute-days-function动态设置日期列表
2022-07-30 04:16:00 【黎&&轩】
先看要实现的效果:
选择特定的时间,这就要用到Datetime组件的compute-days-function属性
名字 | 类型 | 默认值 | 说明 | 版本要求 |
compute-days-function | function | 动态设置日期列表,参数为 ({year, month, min, max}, generateRange) | v2.6.1 |
直接上代码
export default {
data() {
return {
computeDaysValue:'',
startDate:'2022-07-27',
endDate:'2022-08-10',
DayList:['29','01','02','05','08'],
}
},
}
<datetime format="YYYY-MM-DD" v-model="computeDaysValue" :start-date="startDate" :end-date="endDate" :compute-days-function="computeDaysFunction" title="日期" placeholder="请选择"></datetime>
computeDaysFunction(options, generateRange) {
console.log('options',options);
console.log('generateRange',generateRange);
let dayl = [],minD = options.min;
for(let i=minD;i<=options.max;i++){
if(this.DayList.findIndex(sub=>sub==i)>=0){
dayl.push(i);
}
}
return dayl;
},
边栏推荐
- 网页元素解析a标签
- SQL Server data type conversion function cast () and convert () explanation
- [Switch] Protocol-Oriented Programming in Swift: Introduction
- GCC Rust获批将被纳入主线代码库,或将于GCC 13中与大家见面
- LeetCode 114. Expand Binary Tree into Linked List (One Question Three Eats)
- MYSQL 唯一约束
- Pytorch框架学习记录6——torch.nn.Module和torch.nn.functional.conv2d的使用
- The difference between BGP room and ordinary room in Beijing
- CMake installation and testing
- phpoffice edit excel document
猜你喜欢
基于OpenCV实现的图像拼接(配准)案例
The leap second that may cause the next "Millennium Bug" is boycotted by tech giants
Detailed transport layer
WEB penetration of information collection
How does the Snapdragon 7 series chip perform?Reno8 Pro proves a new generation of God U
Unity3D Application模拟进入前后台及暂停
vscode debugging and remote
How to extract year, month and day data in date type in SQL Server
Database Design of Commodity Management System--SQL Server
Reverse Theory Knowledge 3 [UI Modification]
随机推荐
【C语言】程序环境和预处理
Android Studio 实现登录注册-源代码 (连接MySql数据库)
vscode debugging and remote
JQ source code analysis (environment)
Install MySQL Database on Kylin V10 Operating System
数据目录是什么?为何需要它?
弘玑再度入围Gartner 2022 RPA魔力象限并实现位置大幅跃升
Based on all volunteers - H and D1 XR806 rare plant monitoring device
[The Mystery of Cloud Native] Cloud Native Background && Definition && Detailed explanation of related technologies?
Thymeleaf简介
QT(39)-vs开发qt程序提示无法打开源文件
使用EFR32作为Zigbee/Thread的sniffer的用法
The first day of Flink learning - what is batch and streaming computing?
图像视角矫正之透视变换矩阵(单应矩阵)/findHomography 与 getPerspectiveTransformd的区别
2022.7.29-----leetcode.593
Is the end of the universe a bank?Talk about those things about doing software testing in the bank
Boss Rush (二分答案 + 状压DP)
handler+message【消息机制】
sqlmap use tutorial Daquan command Daquan (graphics)
cv2.polylines