修改时间间隔

This commit is contained in:
471615499@qq.com 2025-05-30 20:50:52 +08:00
parent 18429b2799
commit 76b2dfeae6

View File

@ -46,7 +46,7 @@ Page({
rangeOp: [], rangeOp: [],
filterTime(type, options) { filterTime(type, options) {
if (type === 'minute') { if (type === 'minute') {
return options.filter((option) => option % 15 === 0); return options.filter((option) => option % 5 === 0);
} }
return options; return options;
}, },