This commit is contained in:
SelfRidicule 2024-03-18 11:49:40 +08:00
parent 7a30063d57
commit 2e968bf99e

View File

@ -29,7 +29,7 @@ Page({
dataList: [],
filterTime(type, options) {
if (type === 'minute') {
return options.filter((option) => option == '00');
return options.filter((option) => option == '00' || option == '30');
}
return options;
},