8/13, 日报

This commit is contained in:
Zy
2026-08-13 16:13:15 +08:00
parent ffa0d1067a
commit 6ac733cdd2
15 changed files with 714 additions and 96 deletions

View File

@@ -102,19 +102,7 @@ const data = reactive({
startTime: '',
endTime: '',
chargeTypeId: '-1'
},
rule: [
{
validator: (_: any, value: string, callback: (arg0?: Error) => any) => {
if (value === '' || value === undefined || value === null) {
return callback();
}
if (!validator(value, 'fullFilterReg')) {
return callback(new Error('请输入正确的房号'));
}
}
}
]
}
});
const { queryParams } = toRefs(data);